import type { BasePipelineResponse } from './base-pipeline-response.js';
import type { ServiceNowConfigurationMinimal } from './service-now-configuration-minimal.js';
/**
 * Representation of the 'ServiceNowPipelineGetResponse' schema.
 */
export type ServiceNowPipelineGetResponse = BasePipelineResponse & {
    type?: 'ServiceNow';
    configuration: ServiceNowConfigurationMinimal;
} & Record<string, any>;
//# sourceMappingURL=service-now-pipeline-get-response.d.ts.map