import { ThumborSettingType } from '../types'; declare type WYSIWYGConverterType = { content: string; thumborSetting?: ThumborSettingType; isAllowedScript?: boolean; unescapeCharacters?: boolean; ID?: string; hash?: string; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; }; declare const WYSIWYGConverter: { ({ content, thumborSetting, isAllowedScript, ID, hash, widthImage, heightImage, }: WYSIWYGConverterType): string; displayName: string; __docgenInfo: { description: string; displayName: string; props: { content: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; thumborSetting: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; isAllowedScript: { defaultValue: { value: boolean; }; description: string; name: string; required: boolean; type: { name: string; }; }; unescapeCharacters: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; ID: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; hash: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; lazyLoadedImage: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; widthImage: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; heightImage: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default WYSIWYGConverter;