import React from "react";
import { WidgetFunctionComponent } from "../widgets/types";
export interface WidgetProps {
    Component?: WidgetFunctionComponent;
    widget: string;
    _text_to_class_?: string;
}
/**组件渲染 */
declare const Widget: React.FC<WidgetProps>;
export default Widget;
