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