import type { IdentityProvider } from '../identity-provider';
import type { Realm } from '../realm';
export interface IdentityProviderAttribute {
    id: string;
    name: string;
    value: string | null;
    provider_id: IdentityProvider['id'];
    provider: IdentityProvider;
    realm_id: Realm['id'] | null;
    realm: Realm | null;
    created_at: string;
    updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map