import { AxFilter } from '../filters/ax-filter'; /*** This interface is implemented by all the property components and * used by component factory to render properties dynamically. */ export interface IPropertyComponent { propertyData: any; filters?: Array; } export declare enum IPropertyType { elementProperty = 1, tabularProperty = 2, filterProperty = 3, filterCategoryProperty = 4 }