import type { SugarElement } from '../node/SugarElement'; import { Toggler } from './Toggler'; declare const add: (element: SugarElement, clazz: string) => void; declare const remove: (element: SugarElement, clazz: string) => void; declare const toggle: (element: SugarElement, clazz: string) => boolean; declare const toggler: (element: SugarElement, clazz: string) => Toggler; declare const has: (element: SugarElement, clazz: string) => boolean; export { add, remove, toggle, toggler, has }; //# sourceMappingURL=Class.d.ts.map