import type { Pipeline } from './pipeline.js';
/**
 * Representation of the 'Pipelines' schema.
 */
export type Pipelines = {
    resources: Pipeline[];
    count?: number;
} & Record<string, any>;
//# sourceMappingURL=pipelines.d.ts.map