BatchesPage: {
    #private: any;
    [asyncIterator]: (() => AsyncGenerator<Batch, any, any>);
    body: unknown;
    data: Batch[];
    getNextPage: (() => Promise<BatchesPage>);
    getPaginatedItems: (() => Batch[]);
    hasNextPage: (() => boolean);
    has_more: boolean;
    iterPages: (() => AsyncGenerator<BatchesPage, any, any>);
    nextPageRequestOptions: (() => null | PageRequestOptions);
    options: FinalRequestOptions;
    response: Response;
}