import type { HttpOperation } from "@typespec/http"; import type { OperationHandlerPipeline } from "./types.jsx"; export interface OperationPipelineProps { httpOperation: HttpOperation; pipeline: OperationHandlerPipeline; internal?: boolean; } /** * Component that manages the operation handler pipeline. * It will try each handler in order until it finds one that can handle the operation. * If no handler is found, it will use the default ClientOperation component. */ export declare function OperationPipeline({ httpOperation, pipeline, internal }: OperationPipelineProps): import("@alloy-js/core").Children; //# sourceMappingURL=operation-pipeline.d.ts.map