import type { IdentityProvider, IdentityProviderMappingRelation } from '../identity-provider';
import type { Role } from '../role';
import type { Realm } from '../realm';
export interface IdentityProviderRoleMapping extends IdentityProviderMappingRelation {
    id: string;
    name: string | null;
    value: string | null;
    value_is_regex: boolean;
    created_at: Date;
    updated_at: Date;
    role_id: string;
    role: Role;
    role_realm_id: Realm['id'] | null;
    role_realm: Realm | null;
    provider_id: IdentityProvider['id'];
    provider: IdentityProvider;
    provider_realm_id: Realm['id'] | null;
    provider_realm: Realm | null;
}
//# sourceMappingURL=entity.d.ts.map