import { ClientFn } from "../types/core";
import { RanExperiment } from "../types/experiments";
export type GetExperimentResultParams = ClientFn & {
    /**
     * The experiment ID.
     */
    experimentId: string;
};
/**
 * A function that gets the result of a experiment.
 * Fetches the experiment data as well as the runs.
 */
export declare function getExperiment({ client: _client, experimentId, }: GetExperimentResultParams): Promise<RanExperiment>;
//# sourceMappingURL=getExperiment.d.ts.map