export declare function get(node: HTMLElement): any;
export declare function add(node: HTMLElement, clazz: string): void;
export declare function remove(node: HTMLElement, clazz: string): void;
export declare const ClassListFixed: {
get: typeof get;
add: typeof add;
remove: typeof remove;
};