import type { MSSharePointPipelineGetResponse } from './ms-share-point-pipeline-get-response.js';
import type { S3PipelineGetResponse } from './s-3-pipeline-get-response.js';
import type { SFTPPipelineGetResponse } from './sftp-pipeline-get-response.js';
/**
 * Representation of the 'GetPipeline' schema.
 */
export type GetPipeline = ({
    type: 'MSSharePoint';
} & MSSharePointPipelineGetResponse) | ({
    type: 'S3';
} & S3PipelineGetResponse) | ({
    type: 'SFTP';
} & SFTPPipelineGetResponse);
//# sourceMappingURL=get-pipeline.d.ts.map