import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { AlloySpec } from '../../api/component/SpecTypes'; import type { TooltippingConfig, TooltippingState } from './TooltippingTypes'; declare const hideAllExclusive: (component: AlloyComponent, _tConfig: TooltippingConfig, _tState: TooltippingState) => void; declare const setComponents: (_component: AlloyComponent, _tConfig: TooltippingConfig, tState: TooltippingState, specs: AlloySpec[]) => void; declare const isEnabled: (_component: AlloyComponent, _tConfig: TooltippingConfig, tState: TooltippingState) => boolean; declare const setEnabled: (_component: AlloyComponent, _tConfig: TooltippingConfig, tState: TooltippingState, enabled: boolean) => void; declare const immediateOpenClose: (component: AlloyComponent, _tConfig: TooltippingConfig, _tState: TooltippingState, open: boolean) => void; export { hideAllExclusive, immediateOpenClose, isEnabled, setComponents, setEnabled }; //# sourceMappingURL=TooltippingApis.d.ts.map