import { UserIdentity } from "@omnia/fx-models"; export interface IInternalProfileCardDialog extends IProfileCardDialog { removeElementAfterClosing: boolean; } export interface IProfileCardDialog { user: UserIdentity; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-profilecard-dialog": IProfileCardDialog; } } }