import type { Optional } from '@ephox/katamari'; import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { CouplingState, CouplingConfig } from './CouplingTypes'; declare const getCoupled: (component: AlloyComponent, coupleConfig: CouplingConfig, coupleState: CouplingState, name: string) => AlloyComponent; declare const getExistingCoupled: (component: AlloyComponent, coupleConfig: CouplingConfig, coupleState: CouplingState, name: string) => Optional; export { getCoupled, getExistingCoupled }; //# sourceMappingURL=CouplingApis.d.ts.map