import { ReactNode, FocusEvent, CSSProperties, ComponentType, ElementType } from 'react'; export interface IFormikUiLabelProps { name: string; label?: ReactNode; hint?: ReactNode; placeholder?: string; type?: string; disabled?: boolean; required?: boolean; style?: CSSProperties; format?: string; onAnimationStart?: (e: AnimationEvent) => void; onFocus?: (event: FocusEvent) => void; onBlur?: (event: FocusEvent) => void; } export declare const WithLabel: (component?: string) => (WrappedComponent: ComponentType) => ElementType; export default WithLabel;