///
export type DateProps = Omit, 'size'> & {
label?: React.ReactNode;
error?: React.ReactNode;
type?: 'date' | 'datetime-local' | 'month' | 'time' | 'week';
size?: 'small' | 'regular' | 'medium';
variant?: 'primary' | 'secondary';
disabled?: boolean;
readOnly?: boolean;
width?: string;
};
export declare function Date(props: DateProps): import("react/jsx-runtime").JSX.Element;