import { type StateProp } from '@innet/dom'; import { Cache, State } from 'watch-state'; import { type ModalProps } from '../Modal'; export type DataPickerSelector = 'date' | 'month' | 'year'; export declare const dataPickerCellHeight: Cache; export interface DatePickerProps extends ModalProps { selector?: State; value?: StateProp; defaultValue?: StateProp; onChange?: (date: Date) => void; onApply?: (date: Date) => void; apply?: any; rotationTop?: State; min?: Date; max?: Date; } export declare function DatePicker({ apply, min, max, selector, defaultValue, value, onChange, rotationTop, onApply, ...props }?: DatePickerProps): any;