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