import { default as React } from 'react'; declare const PickerInput: React.ForwardRefExoticComponent & { autoFocus?: boolean; size?: import('antd/lib/button').ButtonSize; format?: string; valueFormatOptions?: import('@synerise/ds-core').DateToFormatOptions; showTime?: boolean; allowClear?: boolean; value?: Date | string; onChange?: (dateValue: Date | undefined | null, stringifiedDate: string) => void; style?: React.CSSProperties; placeholder?: string; disabled?: boolean; readOnly?: boolean; onClick?: () => void; onClear?: () => void; clearTooltip?: React.ReactNode; highlight?: boolean; error?: boolean; errorText?: React.ReactNode; prefixel?: React.ReactNode; suffixel?: React.ReactNode; triggerHTMLAttributes?: React.HTMLAttributes & import('@synerise/ds-utils').DataAttributes; } & React.RefAttributes>; export default PickerInput;