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