import { UserIdentity } from "@omnia/fx-models";
export interface IAboutUser {
    [name: string]: any;
    user: UserIdentity;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-aboutuser": IAboutUser;
        }
    }
}
