declare type DateFieldProps = { name: string; value: Date | null; width?: string; onChange: (newDate: Date | null) => void; }; export declare const DateField: ({ name, value, width, onChange, }: DateFieldProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};