import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { TogglingConfig, TogglingState } from './TogglingTypes'; declare const set: (component: AlloyComponent, toggleConfig: TogglingConfig, toggleState: TogglingState, state: boolean) => void; declare const toggle: (component: AlloyComponent, toggleConfig: TogglingConfig, toggleState: TogglingState) => void; declare const on: (component: AlloyComponent, toggleConfig: TogglingConfig, toggleState: TogglingState) => void; declare const off: (component: AlloyComponent, toggleConfig: TogglingConfig, toggleState: TogglingState) => void; declare const isOn: (component: AlloyComponent, toggleConfig: TogglingConfig, toggleState: TogglingState) => boolean; declare const onLoad: (component: AlloyComponent, toggleConfig: TogglingConfig, toggleState: TogglingState) => void; export { onLoad, toggle, isOn, on, off, set }; //# sourceMappingURL=ToggleApis.d.ts.map