///
import type { XandrClient } from '..';
import type { CreateReportParameters, GetReportStatusResponse } from './types';
export declare class XandrReportClient {
private readonly client;
private readonly endpoint;
private readonly endpointDownload;
private readonly defaultHeaders;
constructor(client: XandrClient);
create(params: CreateReportParameters): Promise;
getStatus(id: string): Promise;
download(id: string): Promise;
}