import { FilePickerProvider, FilePickerHandler, ILayoutFileContext } from "@omnia/fx-models"; import { TsxAllowUnknowProperties } from ".."; export interface IFileUploaderProviderProps { context: ILayoutFileContext; handler?: FilePickerHandler; providers: Array; } declare global { namespace JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-file-picker": TsxAllowUnknowProperties; } } }