import { IconSizes, ImageSources } from "@omnia/fx/models";
export interface IDocumentIconProperties {
    size?: IconSizes;
    source?: ImageSources;
    extension: string;
    color?: string;
}
/**Document Icon*/
export interface IDocumentIcon extends IDocumentIconProperties {
    [name: string]: any;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-document-icon": IDocumentIcon;
        }
    }
}
