import type { ClientFn } from "../types/core.js";
import type { ExperimentRun } from "../types/experiments.js";
export type GetExperimentRunsParams = ClientFn & {
    /**
     * The experiment ID.
     */
    experimentId: string;
    /**
     * The pagination size by which to pull runs
     * Exposed for controlling the rate at which runs are pulled
     * @default 100
     */
    pageSize?: number;
};
/**
 * A function that gets all the runs (e.g. the results) of a experiment
 */
export declare function getExperimentRuns({ client: _client, experimentId, pageSize, }: GetExperimentRunsParams): Promise<{
    runs: ExperimentRun[];
}>;
//# sourceMappingURL=getExperimentRuns.d.ts.map