/// import { type Document } from "@prismicio/types-internal/lib/content"; import type { StaticCustomType, StaticSection } from "@prismicio/types-internal/lib/customtypes"; import type { SliceSelection } from "./SliceSelection"; interface Props { id: string; readOnly: boolean; selection?: SliceSelection; section: StaticSection; content: Document; onContentChange: (content: Document) => void; documentId?: string; documentContent: Document; documentCustomType: StaticCustomType; documentLocale: string; } export declare function SectionEditor(props: Props): JSX.Element; export {};