import { AxiosInstance } from 'axios';
interface Batch {
    name: string;
    description: string;
}
export declare function createBatch(api: AxiosInstance, batch: Batch): Promise<any>;
export {};
