/// <reference types="react" />
import { PickerOption } from '../../packages/picker/index';
export interface DatePickerCardProps {
    value?: Date | null;
    visible: boolean;
    title: string;
    type: 'date' | 'time' | 'year-month' | 'month-day' | 'datehour' | 'datetime' | 'hour-minutes';
    showChinese: boolean;
    startDate: string;
    endDate: string;
    onClose: () => void;
    onConfirm: (selectedOptions: PickerOption[], selectedValue: (string | number)[]) => void;
    onChange?: (selectedOptions: PickerOption[], selectedValue: (string | number)[], columnIndex: number) => void;
}
export declare const DatePickerCard: (props: DatePickerCardProps) => JSX.Element;
