;
}
export declare type CompositeComponent = React.ComponentClass
| React.StatelessComponent
;
export interface ComponentDecorator {
(component: CompositeComponent): React.ComponentType;
}
export interface InferableComponentDecorator {
>(component: T): T;
}
/**
* A public higher-order component to access the imperative API
*/
export declare function withFormik({ mapPropsToValues, ...config }: WithFormikConfig): ComponentDecorator>;