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