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