export declare const TAGS: { OPENING: string; CLOSING: string; SELF_CLOSING: string; }; export declare const DEFAULTS: { SPACE: string; NEW_LINE: string; ATTR_KEY: string; CONTENT_KEY: string; EMPTY_STR: string; DECLARATION: { version: string; }; ENTITY_MAP: { "<": string; ">": string; "&": string; "'": string; "\"": string; }; TYPE_HANDLER: (val: any) => [boolean, any]; LEVEL: { INIT: number; INCREMENT: number; }; DOUBLE_QUOTES: { ENABLE: boolean; DIASBLE: boolean; }; MAKE_TAG: boolean; BEAUTIFY: { ENABLE: boolean; DISABLE: boolean; }; SELF_CLOSING: { ENABLE: boolean; DISABLE: boolean; }; readonly EMPTY_OBJ: Object; readonly EMPTY_ARR: any[]; };