import { CreateEvaluationV2, EvaluationV2, EvaluationV3 } from "../models"; export type CreateEvaluationType = CreateEvaluationV2; export declare function bulkCreateEvaluations(evaluations: Array): Promise; export type EvaluationType = EvaluationV2; /** * Retrieves evaluations for a specific result from the Gentrace API. * @async * @param {Object} params - The parameters for the function. * @param {string} params.resultId - The ID of the result to get evaluations for. * @returns {Promise>} - A promise that resolves to an array of evaluations. * @throws {Error} - Throws an error if the Gentrace API key is not initialized. */ export declare const getEvaluations: ({ resultId, }: { resultId: string; }) => Promise;