import type { BasePipelineResponse } from './base-pipeline-response.js';
import type { CommonConfiguration } from './common-configuration.js';
/**
 * Representation of the 'S3PipelineGetResponse' schema.
 */
export type S3PipelineGetResponse = BasePipelineResponse & {
    type?: 'S3';
    configuration: CommonConfiguration;
} & Record<string, any>;
//# sourceMappingURL=s-3-pipeline-get-response.d.ts.map