///
import type { InputProps } from "./Input";
export type { InputProps };
export declare type DatePickerProps = {
/** A date object */
value?: Date;
/** A date object */
defaultValue?: Date;
/** A function that receives a date object */
onChange?: (value: Date | null) => void;
/** A string that represents the date format */
format?: string;
} & Omit;
export declare function DatePicker({ format: formatString, value: valueProp, defaultValue, onChange, ...rest }: DatePickerProps): JSX.Element;