export declare type ArenaFormating = { name: string; tag: string; attributes: string[]; }; export declare type ArenaFormatings = { [key: string]: ArenaFormating; }; export declare type TagAndAttributes = { tag: string; attributes: string[]; excludeAttributes?: string[]; };