import { TsxAllowUnknowProperties } from "../";
import { EnterpriseGlossaryInstance } from "../../models";
export interface IEnterpriseGlossaryPicker {
    /** The preselected value */
    selected?: EnterpriseGlossaryInstance;
    onSelected: (item: EnterpriseGlossaryInstance) => void;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-enterpriseglossary-picker": TsxAllowUnknowProperties<IEnterpriseGlossaryPicker>;
        }
    }
}
