import { ClientFn } from "../types/core";
import { ExperimentRun } from "../types/experiments";
export type GetExperimentRunsParams = ClientFn & {
    /**
     * The experiment ID.
     */
    experimentId: string;
};
/**
 * A function that gets the runs (e.g. the results) of a experiment
 */
export declare function getExperimentRuns({ client: _client, experimentId, }: GetExperimentRunsParams): Promise<{
    runs: ExperimentRun[];
}>;
//# sourceMappingURL=getExperimentRuns.d.ts.map