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