export declare type DatePickerContentProps = { value?: string; onChange?: (params?: { value: string; }) => void; onOk?: (params?: { value: string; }) => void; onCancel?: () => void; className?: string; }; export declare const DatePickerContent: ({ onChange, ...props }: DatePickerContentProps) => JSX.Element;