/// import type { DateContent } from "@prismicio/types-internal/lib/content"; import type { Date as DateT } from "@prismicio/types-internal/lib/customtypes"; interface Props { id: string; readOnly: boolean; field: DateT; content?: DateContent; onContentChange: (content?: DateContent) => void; } export declare function DateField(props: Props): JSX.Element; export {};