import { TsxAllowUnknowProperties } from "../..";
import { GuidValue } from "../../../models";
export interface IQueryablePropertiesJourney {
    serviceId: GuidValue;
    additionalBuiltInProperties?: Array<GuidValue>;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-queryable-enterpriseproperties": TsxAllowUnknowProperties<IQueryablePropertiesJourney>;
        }
    }
}
