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