import type { TransactionInvoice } from './TransactionInvoice';
/**
 *
 * @export
 * @interface InvoiceListResponse
 */
export interface InvoiceListResponse {
    /**
     * An array containing the actual response objects.
     * @type {Array<TransactionInvoice>}
     * @memberof InvoiceListResponse
     */
    readonly data?: Array<TransactionInvoice>;
    /**
     * Whether there are more objects available after this set. If false, there are no more objects to retrieve.
     * @type {boolean}
     * @memberof InvoiceListResponse
     */
    readonly hasMore?: boolean;
    /**
     * The applied limit on the number of objects returned.
     * @type {number}
     * @memberof InvoiceListResponse
     */
    readonly limit?: number;
}
/**
 * Check if a given object implements the InvoiceListResponse interface.
 */
export declare function instanceOfInvoiceListResponse(value: object): value is InvoiceListResponse;
export declare function InvoiceListResponseFromJSON(json: any): InvoiceListResponse;
export declare function InvoiceListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceListResponse;
export declare function InvoiceListResponseToJSON(json: any): InvoiceListResponse;
export declare function InvoiceListResponseToJSONTyped(value?: Omit<InvoiceListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;
