import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { FocusingConfig } from './FocusingTypes'; declare const focus: (component: AlloyComponent, focusConfig: FocusingConfig) => void; declare const blur: (component: AlloyComponent, focusConfig: FocusingConfig) => void; declare const isFocused: (component: AlloyComponent) => boolean; export { focus, blur, isFocused }; //# sourceMappingURL=FocusApis.d.ts.map