import type { Client } from '../client';
import type { Realm } from '../realm';
import type { Scope } from '../scope';
export interface ClientScope {
    id: string;
    default: boolean;
    client_id: Client['id'];
    client: Client;
    client_realm_id: Realm['id'] | null;
    client_realm: Realm | null;
    scope_id: Scope['id'];
    scope: Scope;
    scope_realm_id: Realm['id'] | null;
    scope_realm: Realm | null;
}
//# sourceMappingURL=entity.d.ts.map