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