export declare function applyTransformationForGetHtml(data?: string): string; export type SetHTMLTransformConfig = { addDefaultClasses?: boolean; }; export declare const applyTransformationForSetHtml: (htmlString?: string, { addDefaultClasses }?: SetHTMLTransformConfig) => string; export declare const getAllTagsFromHtml: (html: string) => string[]; export declare const isTagWrapper: (htmlTags: Array, tagToSearch: string) => boolean; export declare function replaceFirstTagWith(html: string, firstTag: string, replaceWith: string): string;