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