import { OrgTreeUser } from "../../models";
export interface IPersona {
    [name: string]: any;
    largeImage?: boolean;
    linkToProfilecard?: boolean;
    highlight?: boolean;
    user: OrgTreeUser;
    onUserClick?: (user: OrgTreeUser) => void;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-persona": IPersona;
        }
    }
}
