import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { Stateless } from '../common/BehaviourState'; import type { SwappingConfig } from './SwappingTypes'; declare const toAlpha: (component: AlloyComponent, swapConfig: SwappingConfig, _swapState: Stateless) => void; declare const toOmega: (component: AlloyComponent, swapConfig: SwappingConfig, _swapState: Stateless) => void; declare const clear: (component: AlloyComponent, swapConfig: SwappingConfig, _swapState: Stateless) => void; declare const isAlpha: (component: AlloyComponent, swapConfig: SwappingConfig, _swapState: Stateless) => boolean; declare const isOmega: (component: AlloyComponent, swapConfig: SwappingConfig, _swapState: Stateless) => boolean; export { toAlpha, toOmega, isAlpha, isOmega, clear }; //# sourceMappingURL=SwapApis.d.ts.map