import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties"; import { ILikeListingtemplate } from "../extensibilities/ILikeListingTemplate"; import { ISocialReactionStyling, ISocialReaction } from "../../../models"; export interface ILikeListingTemplateComponent extends ILikeListingtemplate { likes?: Array; socialReactionStylings?: Array; currentSocialReaction?: ISocialReactionStyling; close: () => void; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-like-listing-template": TsxAllowUnknowProperties; } } }