export declare const parseStyleCssText: (value: string) => { [key: string]: string; }; export declare const encodeBreakingEntities: (str: string) => string; export declare const decodeBreakingEntities: (str: string) => string; export declare const styleToString: (style: { [key: string]: string; }) => string; export declare const isEmptyObject: (obj: any) => any; export declare const styleMapToAttribs: ({ elementStyleMap, node, }: { elementStyleMap: { [key: string]: string; }; node: any; }) => { [key: string]: any; }; export declare const intersection: (o1: { [key: string]: any; }, o2: { [key: string]: any; }) => string[];