import type { Realm } from '../realm';
import type { Role } from '../role';
export interface RoleAttribute {
    id: string;
    name: string;
    value: string | null;
    role_id: Role['id'];
    role: Role;
    realm_id: Realm['id'] | null;
    realm: Realm | null;
    created_at: string;
    updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map