import type { Policy } from '../policy';
import type { Realm } from '../realm';
export interface PolicyAttribute {
    id: string;
    name: string;
    value: string | null;
    realm_id: Policy['id'] | null;
    realm: Realm | null;
    policy_id: Policy['id'];
    policy: Policy;
    created_at: Date;
    updated_at: Date;
}
//# sourceMappingURL=entity.d.ts.map