declare class ClassUtil { static changeTextColor(textColor: string, element: HTMLElement): void; static changeColor(color: string, element: HTMLElement): void; static removeClassNameStartsWith(startsWith: string, element: HTMLElement): void; static containsClassNameStartWith(startWith: string, element: HTMLElement): boolean; } export { ClassUtil };