import { InputData, DeclarationData, TagProps } from './interface'; export declare const beautify: (char: string, level?: number, enable?: boolean) => string; export declare const createEntityHandler: (entityMap: InputData) => (str: string) => string; export declare const checkChildTags: (data: InputData, attrKey: string, contentKey: string) => boolean; export declare const createTag: { [x: string]: (tagProps: Partial) => string; }; export declare const setStringVal: (inputData: any, doubleQuotes: boolean, setEntities: ((str: string) => string) | undefined) => string; export declare const setAttributes: (attributes: InputData, setEntities: ((str: string) => string) | undefined) => string; export declare const setDeclaration: (decAttrs: DeclarationData | void, setEntities: ((str: string) => string) | undefined, enableBeautify?: boolean) => string;