export declare const useCKEditorStyleExtractor: () => { extractStyles: (editorContent: any, options?: {}) => any[]; extractFormattingStyles: (editorContent: any) => {}; generateCSS: (extractedStyles: any) => string; getFlattenedStyles: (extractedStyles: any) => {}; getSingleStyles: (extractedStyles: any) => {}; stylesToHtml: (text: any, styles?: {}, options?: {}) => string; multipleStylesToHtml: (segments: any, options?: {}) => string; applyStylesToHtml: (htmlContent: any, styles?: {}, targetSelector?: string) => string; extractAndConvert: (editorContent: any, targetStyles?: {}) => {}; };