import type { BasePipelineResponse } from './base-pipeline-response.js';
import type { GoogleDriveConfigurationMinimal } from './google-drive-configuration-minimal.js';
/**
 * Representation of the 'GoogleDrivePipelineGetResponse' schema.
 */
export type GoogleDrivePipelineGetResponse = BasePipelineResponse & {
    type?: 'GoogleDrive';
    configuration: GoogleDriveConfigurationMinimal;
} & Record<string, any>;
//# sourceMappingURL=google-drive-pipeline-get-response.d.ts.map