import type { ClientFn } from "../types/core.js";
import type { DatasetInfo } from "../types/datasets.js";
export type GetDatasetParams = ClientFn & {
    datasetName: string;
};
/**
 * Get the information of a dataset via the name
 */
export declare function getDatasetInfoByName({ client: _client, datasetName, }: GetDatasetParams): Promise<DatasetInfo>;
//# sourceMappingURL=getDatasetInfoByName.d.ts.map