import type { IdentityProviderMappingRelation } from '../identity-provider';
export interface IdentityProviderAttributeMapping extends IdentityProviderMappingRelation {
    id: string;
    source_name: string | null;
    source_value: string | null;
    source_value_is_regex: boolean;
    target_name: string;
    target_value: string | null;
    created_at: Date;
    updated_at: Date;
}
//# sourceMappingURL=entity.d.ts.map