export declare enum RichTextOptionsEnum { p = "paragraph", pre = "preformatted", h1 = "heading1", h2 = "heading2", h3 = "heading3", h4 = "heading4", h5 = "heading5", h6 = "heading6", strong = "strong", em = "em", link = "hyperlink", image = "image", embed = "embed", list = "list-item", oList = "o-list-item", rtl = "rtl" } export declare const RichTextOptions: RichTextOptionsEnum[]; export interface RichTextProps { label?: string; placeholder?: string; multi?: Boolean; options?: String[]; } export interface RichTextPayload { type: string; config: { label: string; multi?: string[]; single?: string[]; placeholder: string; }; } declare const RichText: { ({ label, placeholder, multi, options }: RichTextProps): (fieldName: string) => RichTextPayload; Paragraph: (blocks?: number) => { config: { patternType: any; blocks: number; }; }; Heading: (blocks?: number) => { config: { patternType: any; blocks: number; }; }; Story: (blocks?: number) => { config: { patternType: any; blocks: number; }; }; }; export default RichText;