import type { AnyElysia } from 'elysia'; import { type Operation, type OperationLink, type OperationResultObservable } from './operation'; export type ChainOptions = { links: OperationLink[]; operation: Operation; }; export declare function createChain(options: ChainOptions): OperationResultObservable; //# sourceMappingURL=create-chain.d.ts.map