import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { AriaTogglingConfig } from './TogglingTypes'; declare const updatePressed: (component: AlloyComponent, ariaInfo: AriaTogglingConfig, status: boolean) => void; declare const updateSelected: (component: AlloyComponent, ariaInfo: AriaTogglingConfig, status: boolean) => void; declare const updateChecked: (component: AlloyComponent, ariaInfo: AriaTogglingConfig, status: boolean) => void; declare const updateExpanded: (component: AlloyComponent, ariaInfo: AriaTogglingConfig, status: boolean) => void; declare const updateAuto: (component: AlloyComponent, _ariaInfo: void, status: boolean) => void; export { updatePressed, updateSelected, updateChecked, updateExpanded, updateAuto }; //# sourceMappingURL=ToggleModes.d.ts.map