type PipelineParams = { label?: string; slug?: string; }; /** * Retrieves pipelines from the Gentrace API. * @async * @param {PipelineParams} [params] - Optional parameters to filter the pipelines. * @returns {Promise>} - A promise that resolves to an array of pipelines. * @throws {Error} - Throws an error if the Gentrace API key is not initialized. */ export declare const getPipelines: (params?: PipelineParams) => Promise; export {};