import React from 'react'; import { EditableProps } from 'slate-react/dist/components/editable'; import { SPEditor } from '../types/SPEditor'; import { UsePlateEffectsOptions } from '../types/UsePlateEffectsOptions'; import { UseSlatePropsOptions } from '../types/UseSlatePropsOptions'; export interface PlateProps extends UsePlateEffectsOptions, UseSlatePropsOptions { /** * The children rendered inside `Slate` before the `Editable` component. */ children?: React.ReactNode; /** * The props for the `Editable` component. */ editableProps?: EditableProps; /** * Custom `Editable` node. */ renderEditable?: (editable: React.ReactNode) => React.ReactNode; } export declare const Plate: ({ children, renderEditable, ...options }: PlateProps) => JSX.Element | null; //# sourceMappingURL=Plate.d.ts.map