import type { TestRunRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type EvaluationsHandlers = {
    getTestRuns: PublicAPIEndpoint<TestRunRequest.GetMany>;
    getTestRun: PublicAPIEndpoint<TestRunRequest.GetOne>;
    getTestCases: PublicAPIEndpoint<TestRunRequest.GetCases>;
    createTestRun: PublicAPIEndpoint<TestRunRequest.Create>;
    cancelTestRun: PublicAPIEndpoint<TestRunRequest.Cancel>;
};
declare const evaluationsHandlers: EvaluationsHandlers;
export = evaluationsHandlers;
