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