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; export default WYSIWYGConverter;