export type WidgetViewProps = { /** Fetch function to return the widget */ fetch: () => Promise; /** Type of the widget */ type: string; }; export declare function WidgetView({ fetch, type }: WidgetViewProps): JSX.Element; export default WidgetView; //# sourceMappingURL=WidgetView.d.ts.map