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