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