import type { Role } from '../role';
import type { Client } from '../client';
import type { Realm } from '../realm';
export interface ClientRole {
    id: string;
    client_id: string;
    role_id: string;
    role: Role;
    role_realm_id: Realm['id'] | null;
    role_realm: Realm | null;
    client: Client;
    client_realm_id: Realm['id'] | null;
    client_realm: Realm | null;
    created_at: string;
    updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map