import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
export interface EnterprisePropertyColumnMapping {
    enterprisePropertyId: GuidValue;
    tableName: string;
    enterprisePropertyInternalName: string;
    createdAt: Date;
    status: EnterprisePropertyMappingStatus;
    log: string;
    enableAZFiltering?: boolean;
    azFilterInternalName?: string;
}
export declare enum EnterprisePropertyMappingStatus {
    isAdding = 1,
    isRemoving = 2,
    success = 3,
    exception = 4
}
