import { AbstractEntity } from '../../../abstractEntity'; export declare enum BillingExportAsyncRequestFields { COLUMN_REQUEST_REF = "requestRef" } export declare type BillingExportAsyncRequestType = { [BillingExportAsyncRequestFields.COLUMN_REQUEST_REF]: string; }; export declare class BillingExportAsyncRequest extends AbstractEntity { #private; constructor(billingExportAsyncRequestResponse: BillingExportAsyncRequestType); get requestRef(): string; toJSON(): BillingExportAsyncRequestType; }