import { VueComponentBase, VueComponentBaseProps } from "@omnia/fx/ux"; export interface IEnterprisePropertyRendererProps extends VueComponentBaseProps { propertyInternalName: string; propertyValue: any; cacheKey?: string; } export declare class EnterprisePropertyRenderer extends VueComponentBase { propertyInternalName: string; cacheKey?: string; propertyValue: any; private propertyStore; private propertiesDefinition; created(): void; render(): VueTsxSupport.JSX.Element; }