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