/// import { ContentState } from 'draft-js'; export interface DecoratorComponentProps { children: JSX.Element; contentState: ContentState; entityKey: string; blockKey: string; start: number; end: number; editable?: boolean; } export declare function FormDecorator({ children, entityKey, }: DecoratorComponentProps): JSX.Element; export declare function FormDecoratorsStrategy(contentBlock: any, callback: any, contentState: any): void;