/// import type { SharedSliceContent } from "@prismicio/types-internal/lib/content"; import type { SharedSlice } from "@prismicio/types-internal/lib/customtypes"; import { type EditorConfig } from "../EditorConfig"; interface Props { config: EditorConfig; content: SharedSliceContent; id?: string; /** * Used by wroom to visually select and scroll to a slice. */ sliceKey?: string; readOnly?: boolean; sharedSlice: SharedSlice; onContentChange: (content: SharedSliceContent) => void; } export declare function SharedSliceEditor(props: Props): JSX.Element | null; export {};