import * as React from 'react';
import { Option } from '../../redux/FormComponents/FormComponents.types';
export interface CustomPickerProps {
    cancelTextIOS?: string;
    confirmTextIOS?: string;
    isSelect: boolean;
    isVisible: boolean;
    maximumDate?: Date;
    minimumDate?: Date;
    minuteInterval?: 1 | 2 | 3 | 4 | 5 | 6 | 10 | 12 | 15 | 20 | 30;
    mode?: 'date' | 'time' | 'datetime';
    neverDisableConfirmIOS?: boolean;
    onCancel: () => void;
    onConfirm: (value: any) => void;
    options?: Array<Option>;
    title?: string;
    value: any;
}
export declare const CustomPicker: React.ComponentType<CustomPickerProps>;
