import { TsxAllowUnknowProperties } from "..";
export interface ISiteLogoIconProperties {
    /**Force to render as Letter Avatar */
    forceLetterAvatar?: boolean;
    /**SharePoint site url */
    siteUrl?: string;
    /**Icon size */
    size?: number;
}
/**Site Logo Icon */
export interface ISiteLogoIcon extends ISiteLogoIconProperties {
    [name: string]: any;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-site-logo-icon": TsxAllowUnknowProperties<ISiteLogoIcon>;
        }
    }
}
