@regenbio/regenbio-components-react 2026.1.12 → 2026.1.14-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/build/components/DataDisplay/DataChart/hook.d.ts +2 -2
  2. package/build/components/DataDisplay/DataTable/hook.d.ts +13 -12
  3. package/build/components/DataDisplay/DataTable/index.d.ts +1 -1
  4. package/build/components/DataDisplay/DragTable/hook.d.ts +18 -19
  5. package/build/components/DataDisplay/DragTable/index.d.ts +1 -1
  6. package/build/components/DataDisplay/FileTag/hook.d.ts +2 -2
  7. package/build/components/DataDisplay/HtmlRender/hook.d.ts +1 -1
  8. package/build/components/DataDisplay/IconRender/index.d.ts +3 -1
  9. package/build/components/DataDisplay/UserCard/hook.d.ts +5 -5
  10. package/build/components/DataEntry/AttachmentText/hook.d.ts +2 -2
  11. package/build/components/DataEntry/MarkdownEditor/hook.d.ts +2 -2
  12. package/build/components/DataEntry/Uploader/DraggableUploader/hook.d.ts +3 -2
  13. package/build/components/DataEntry/Uploader/SingleImageUploader/hook.d.ts +6 -2
  14. package/build/components/DataEntry/Uploader/SingleImageUploader/type.d.ts +0 -1
  15. package/build/components/DataEntry/UserSelector/hook.d.ts +6 -6
  16. package/build/components/Other/ActionBar/hook.d.ts +7 -2
  17. package/build/components/Other/GlobalContext/index.d.ts +1 -1
  18. package/build/components/Other/LoginLoad/AuthFrame/hook.d.ts +3 -3
  19. package/build/components/Other/LoginLoad/BindFrame/hook.d.ts +7 -7
  20. package/build/components/Other/ThemeSetter/hook.d.ts +1 -1
  21. package/build/components/PageLayout/PageContainer/hook.d.ts +4 -4
  22. package/build/components/PageLayout/RouteWrapper/hook.d.ts +1 -1
  23. package/build/index.d.ts +20 -20
  24. package/build/index.js +3 -3
  25. package/build/services/hooks/feedback/useRbFeedback.d.ts +2 -2
  26. package/package.json +5 -4
@@ -4,7 +4,7 @@ import { RbDataChartProps } from "./type";
4
4
  * @param props 参数
5
5
  */
6
6
  declare const useDataChart: (props: RbDataChartProps) => {
7
- emptyStatus: any;
8
- loading: any;
7
+ emptyStatus: boolean;
8
+ loading: boolean;
9
9
  };
10
10
  export default useDataChart;
@@ -1,26 +1,27 @@
1
1
  import { RbDataTableProps } from "./type";
2
+ import { ActionType, ProColumns } from "@ant-design/pro-components";
2
3
  /**
3
4
  * 数据表格Hook
4
5
  * @param props 参数
5
6
  */
6
7
  declare const useDataTable: <DataSource, U, ValueType>(props: RbDataTableProps<DataSource, U, ValueType>) => {
7
8
  requestData: (_params: any, _sort: any, _filter: any) => Promise<any>;
8
- beforeSearchSubmit: any;
9
- executeRecordParams: any;
10
- setCollapsed: any;
11
- setParams: any;
12
- tableKey: any;
9
+ beforeSearchSubmit: (_params: U) => true;
10
+ executeRecordParams: (_params: any, _collapsed: boolean) => Promise<void>;
11
+ setCollapsed: import("react").Dispatch<import("react").SetStateAction<boolean>>;
12
+ setParams: import("react").Dispatch<import("react").SetStateAction<U>>;
13
+ tableKey: string;
13
14
  styles: {
14
15
  customTable: string;
15
16
  };
16
- params: any;
17
- actionRef: any;
18
- responsive: any;
17
+ params: U;
18
+ actionRef: import("react").RefObject<ActionType>;
19
+ responsive: boolean;
19
20
  form: import("antd").FormInstance<any>;
20
- collapsed: any;
21
- loading: any;
22
- columns: any;
23
- dataLength: any;
21
+ collapsed: boolean;
22
+ loading: boolean;
23
+ columns: ProColumns<DataSource, ValueType>[];
24
+ dataLength: number;
24
25
  intl: any;
25
26
  };
26
27
  export default useDataTable;
@@ -5,5 +5,5 @@ import { RbDataTableProps } from "./type";
5
5
  * @param props 参数配置
6
6
  * @constructor
7
7
  */
8
- declare const RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
8
+ declare const RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
9
9
  export default RbDataTable;
@@ -1,4 +1,3 @@
1
- import { useEffect } from 'react';
2
1
  import { RbDragTableProps } from "./type";
3
2
  import { ActionType } from "@ant-design/pro-components";
4
3
  import { RbActionType } from "../DataTable/type";
@@ -7,14 +6,14 @@ import { RbActionType } from "../DataTable/type";
7
6
  * @param props 属性
8
7
  */
9
8
  declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => {
10
- setTableLoading: any;
11
- responsive: any;
9
+ setTableLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
10
+ responsive: boolean;
12
11
  styles: {
13
12
  customTable: string;
14
13
  };
15
- tableLoading: any;
14
+ tableLoading: boolean;
16
15
  restProps: {
17
- actionRef?: useEffect<RbActionType | undefined>;
16
+ actionRef?: import("react").Ref<RbActionType> & import("react").Ref<ActionType>;
18
17
  responsive?: boolean;
19
18
  loadChange?: (loading: boolean) => void;
20
19
  toolbar?: import("@ant-design/pro-components").ListToolBarProps;
@@ -29,25 +28,25 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
29
28
  toolbar: JSX.Element | undefined;
30
29
  alert: JSX.Element | undefined;
31
30
  table: JSX.Element | undefined;
32
- }) => useEffect;
31
+ }) => React.ReactNode;
33
32
  tableViewRender?: (props: import("antd").TableProps<DataSource>, defaultDom: JSX.Element) => JSX.Element | undefined;
34
- tableExtraRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, dataSource: DataSource[]) => useEffect;
35
- searchFormRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, defaultDom: JSX.Element) => useEffect;
33
+ tableExtraRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, dataSource: DataSource[]) => React.ReactNode;
34
+ searchFormRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, defaultDom: JSX.Element) => React.ReactNode;
36
35
  postData?: any;
37
36
  defaultData?: DataSource[];
38
37
  formRef?: import("@ant-design/pro-table/es/components/Form/FormRender").TableFormItem<DataSource_1>["formRef"];
39
38
  toolBarRender?: false | ((action: ActionType | undefined, rows: {
40
39
  selectedRowKeys?: (string | number)[];
41
40
  selectedRows?: DataSource[];
42
- }) => useEffect[]);
43
- optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom: useEffect[]) => useEffect[];
41
+ }) => React.ReactNode[]);
42
+ optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom: React.ReactNode[]) => React.ReactNode[];
44
43
  onLoad?: (dataSource: DataSource[]) => void;
45
44
  onLoadingChange?: (loading: boolean | import("antd").SpinProps | undefined) => void;
46
45
  onRequestError?: (e: Error) => void;
47
46
  polling?: number | ((dataSource: DataSource[]) => number);
48
47
  tableClassName?: string;
49
- tableStyle?: useEffect;
50
- headerTitle?: useEffect;
48
+ tableStyle?: import("react").CSSProperties;
49
+ headerTitle?: React.ReactNode;
51
50
  tooltip?: string | import("antd/lib/form/FormItemLabel").LabelTooltipType;
52
51
  options?: import("@ant-design/pro-table/es/components/ToolBar").OptionConfig | false;
53
52
  search?: false | import("@ant-design/pro-table/es/components/Form/FormRender").SearchConfig;
@@ -59,7 +58,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
59
58
  rowSelection?: false | (import("antd/es/table/interface").TableRowSelection<DataSource> & {
60
59
  alwaysShowAlert?: boolean;
61
60
  });
62
- style?: useEffect;
61
+ style?: React.CSSProperties;
63
62
  type?: import("@ant-design/pro-components").ProSchemaComponentTypes;
64
63
  onSubmit?: (params: U) => void;
65
64
  onReset?: () => void;
@@ -72,7 +71,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
72
71
  revalidateOnFocus?: boolean;
73
72
  defaultSize?: import("antd/lib/button").ButtonSize;
74
73
  name?: import("rc-field-form/lib/interface").NamePath;
75
- ErrorBoundary?: useEffect<any, any> | false;
74
+ ErrorBoundary?: React.ComponentClass<any, any> | false;
76
75
  scroll?: import("rc-table").TableProps<RecordType>["scroll"] & {
77
76
  scrollToFirstRowOnChange?: boolean;
78
77
  };
@@ -91,14 +90,14 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
91
90
  title?: import("rc-table/lib/interface").PanelRender<DataSource>;
92
91
  prefixCls?: string;
93
92
  className?: string;
94
- children?: useEffect;
93
+ children?: React.ReactNode;
95
94
  rowKey?: string | keyof DataSource | import("rc-table/lib/interface").GetRowKey<DataSource>;
96
95
  tableLayout?: import("rc-table/lib/interface").TableLayout;
97
96
  expandable?: import("rc-table/lib/interface").ExpandableConfig<DataSource>;
98
97
  rowClassName?: string | import("rc-table/lib/interface").RowClassName<DataSource>;
99
98
  footer?: import("rc-table/lib/interface").PanelRender<DataSource>;
100
- summary?: (data: readonly DataSource[]) => useEffect;
101
- caption?: useEffect;
99
+ summary?: (data: readonly DataSource[]) => React.ReactNode;
100
+ caption?: React.ReactNode;
102
101
  id?: string;
103
102
  showHeader?: boolean;
104
103
  components?: import("rc-table/lib/interface").TableComponents<DataSource>;
@@ -107,7 +106,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
107
106
  direction?: import("rc-table/lib/interface").Direction;
108
107
  sticky?: boolean | import("rc-table/lib/interface").TableSticky;
109
108
  rowHoverable?: boolean;
110
- onScroll?: useEffect<HTMLDivElement>;
109
+ onScroll?: React.UIEventHandler<HTMLDivElement>;
111
110
  tailor?: boolean;
112
111
  getContainerWidth?: (ele: HTMLElement, width: number) => number;
113
112
  dropdownPrefixCls?: string;
@@ -123,6 +122,6 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
123
122
  showSorterTooltip?: boolean | import("antd/es/table/interface").SorterTooltipProps;
124
123
  virtual?: boolean;
125
124
  };
126
- actionRef: any;
125
+ actionRef: import("react").RefObject<ActionType>;
127
126
  };
128
127
  export default useDragTable;
@@ -5,5 +5,5 @@ import { RbDragTableProps } from "./type";
5
5
  * @param props 配置参数
6
6
  * @constructor
7
7
  */
8
- declare const RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
8
+ declare const RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
9
9
  export default RbDragTable;
@@ -5,7 +5,7 @@ import { RbFileTagProps } from "./type";
5
5
  */
6
6
  declare const useFileTag: (props: RbFileTagProps) => {
7
7
  intl: any;
8
- getExtension: any;
9
- getIconByFilename: any;
8
+ getExtension: (filename: string) => string;
9
+ getIconByFilename: (filename: string) => import("react/jsx-runtime").JSX.Element;
10
10
  };
11
11
  export default useFileTag;
@@ -4,6 +4,6 @@ import { RbHtmlRenderProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useHtmlRender: (props: RbHtmlRenderProps) => {
7
- renderContent: any;
7
+ renderContent: () => string;
8
8
  };
9
9
  export default useHtmlRender;
@@ -1,2 +1,4 @@
1
- declare const _default: any;
1
+ import React from 'react';
2
+ import { RbIconRenderProps } from "./type";
3
+ declare const _default: React.NamedExoticComponent<RbIconRenderProps>;
2
4
  export default _default;
@@ -4,11 +4,11 @@ import { RbUserCardProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useUserCard: (props: RbUserCardProps) => {
7
- getAvatar: any;
8
- onShowTooltip: any;
9
- getNameLabel: any;
7
+ getAvatar: () => any;
8
+ onShowTooltip: (open: any) => Promise<void>;
9
+ getNameLabel: string;
10
10
  userDetail: any;
11
- loading: any;
11
+ loading: boolean;
12
12
  intl: any;
13
13
  rbValueEnum: {
14
14
  convertListToMap: (list: import("../../../services/types/commonType").ConstantListItem[]) => Map<any, import("@ant-design/pro-provider").ProSchemaValueEnumType>;
@@ -16,6 +16,6 @@ declare const useUserCard: (props: RbUserCardProps) => {
16
16
  rbAuthorize: {
17
17
  checkResource: (sign: string | undefined, gap?: boolean) => boolean;
18
18
  };
19
- isMe: any;
19
+ isMe: boolean;
20
20
  };
21
21
  export default useUserCard;
@@ -5,7 +5,7 @@ import { RbAttachmentTextProps } from "./type";
5
5
  */
6
6
  declare const useAttachmentText: (props: RbAttachmentTextProps) => {
7
7
  intl: any;
8
- globalFunctions: any;
9
- inputRef: any;
8
+ globalFunctions: import("../../..").RbGlobalFunctionType;
9
+ inputRef: import("react").RefObject<any>;
10
10
  };
11
11
  export default useAttachmentText;
@@ -5,7 +5,7 @@ import { RbMarkdownEditorProps } from "./type";
5
5
  */
6
6
  declare const useMarkdownEditor: (props: RbMarkdownEditorProps) => {
7
7
  intl: any;
8
- selectedTab: any;
9
- setSelectedTab: any;
8
+ selectedTab: "write" | "preview";
9
+ setSelectedTab: import("react").Dispatch<import("react").SetStateAction<"write" | "preview">>;
10
10
  };
11
11
  export default useMarkdownEditor;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import type { UploadFile } from "antd";
2
3
  import { DragEndEvent } from "@dnd-kit/core";
3
4
  import { RbDraggableUploaderExtraProps, RbDraggableUploaderProps, RbDraggableUploadListItemProps } from "./type";
@@ -5,9 +6,9 @@ import { RbDraggableUploaderExtraProps, RbDraggableUploaderProps, RbDraggableUpl
5
6
  * RB 拖动上传器Hook
6
7
  */
7
8
  export declare const useDraggableUploader: (props: RbDraggableUploaderProps & RbDraggableUploaderExtraProps) => {
8
- fileList: any;
9
+ fileList: UploadFile<any>[];
9
10
  sensor: import("@dnd-kit/core").SensorDescriptor<import("@dnd-kit/core").PointerSensorOptions>;
10
- globalFunctions: any;
11
+ globalFunctions: import("../../../..").RbGlobalFunctionType;
11
12
  onDragEnd: ({ active, over }: DragEndEvent) => void;
12
13
  onChange: (info: import("antd/es/upload").UploadChangeParam<UploadFile<any>>) => void;
13
14
  };
@@ -6,9 +6,13 @@ import type { UploadFile } from "antd";
6
6
  */
7
7
  declare const useSingleImageUploader: (props: RbSingleImageUploaderProps & RbSingleImageUploaderExtraProps) => {
8
8
  intl: any;
9
- globalFunctions: any;
10
- fileList: any;
9
+ globalFunctions: import("../../../..").RbGlobalFunctionType;
10
+ fileList: UploadFile<any>[];
11
+ previewOpen: boolean;
12
+ setPreviewOpen: import("react").Dispatch<import("react").SetStateAction<boolean>>;
13
+ previewImage: string;
11
14
  handleRemove: () => boolean;
12
15
  handleChange: (info: import("antd/es/upload").UploadChangeParam<UploadFile<any>>) => void;
16
+ handlePreview: (file: UploadFile) => Promise<void>;
13
17
  };
14
18
  export default useSingleImageUploader;
@@ -14,7 +14,6 @@ export type RbSingleImageUploaderExtraProps = {
14
14
  onChange: (value: any) => void;
15
15
  /**
16
16
  * 值
17
- * 注意:为了支持上传状态拦截,value 可能会包含临时状态对象
18
17
  */
19
18
  value: any;
20
19
  };
@@ -4,13 +4,13 @@ import { RbUserSelectorProps } from "../../../index";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useUserSelector: <T, OptionType>({ widthControl, children, params, proFieldProps, mode, valueEnum, request, userType, ...rest }: RbUserSelectorProps<T, OptionType>) => {
7
- setKeywords: any;
7
+ setKeywords: import("react").Dispatch<import("react").SetStateAction<string>>;
8
8
  onFuzzy: (param: any) => Promise<void>;
9
- start: any;
10
- loading: any;
11
- context: any;
12
- data: any;
9
+ start: boolean;
10
+ loading: boolean;
11
+ context: import("@ant-design/pro-form/es/FieldContext").FiledContextProps;
12
+ data: any[];
13
13
  intl: any;
14
- keywords: any;
14
+ keywords: string;
15
15
  };
16
16
  export default useUserSelector;
@@ -1,10 +1,15 @@
1
+ import React from 'react';
1
2
  import { RbActionBarProps } from "./type";
3
+ import { RbActionBarItem } from "./index";
2
4
  /**
3
5
  * 操作栏Hook
4
6
  * @param props 属性
5
7
  */
6
8
  declare const useActionBar: (props: RbActionBarProps) => {
7
- operationList: any;
8
- extendList: any;
9
+ operationList: React.ReactElement<React.FC<import("./type").RbActionBarItemProps>, string | React.JSXElementConstructor<any>>[];
10
+ extendList: {
11
+ key: number;
12
+ name: React.ReactElement<typeof RbActionBarItem>;
13
+ }[];
9
14
  };
10
15
  export default useActionBar;
@@ -7,4 +7,4 @@ export declare const RbGlobalContext: Context<RbGlobalStateType>;
7
7
  /**
8
8
  * 全局状态Hook
9
9
  */
10
- export declare const useGlobalState: () => any;
10
+ export declare const useGlobalState: () => RbGlobalStateType;
@@ -4,9 +4,9 @@ import { RbAuthFrameProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useAuthFrame: (props: RbAuthFrameProps) => {
7
- setExceptionMsg: any;
8
- exceptionMsg: any;
7
+ setExceptionMsg: import("react").Dispatch<import("react").SetStateAction<string>>;
8
+ exceptionMsg: string;
9
9
  intl: any;
10
- initialState: any;
10
+ initialState: import("../../../../services/types/commonType").RbInitialStateRespProps;
11
11
  };
12
12
  export default useAuthFrame;
@@ -4,13 +4,13 @@ import { RbBindFrameProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useBindFrame: (props: RbBindFrameProps) => {
7
- setCurrent: any;
8
- setLoading: any;
9
- steps: any;
10
- mailStep: any;
11
- externalStep: any;
12
- current: any;
13
- loading: any;
7
+ setCurrent: import("react").Dispatch<import("react").SetStateAction<number>>;
8
+ setLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
9
+ steps: any[];
10
+ mailStep: number;
11
+ externalStep: number;
12
+ current: number;
13
+ loading: boolean;
14
14
  externalBind: any;
15
15
  };
16
16
  export default useBindFrame;
@@ -4,6 +4,6 @@ import { RbThemeProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useThemeSetter: (props: RbThemeProps) => {
7
- mode: any;
7
+ mode: "light" | "realDark";
8
8
  };
9
9
  export default useThemeSetter;
@@ -4,10 +4,10 @@ import { RbPageContainerProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const usePageContainer: (props: RbPageContainerProps) => {
7
- mode: any;
8
- loading: any;
9
- initialState: any;
10
- headerHeight: any;
7
+ mode: "light" | "realDark";
8
+ loading: boolean;
9
+ initialState: import("../../..").RbInitialStateRespProps;
10
+ headerHeight: number;
11
11
  token: import("antd").GlobalToken;
12
12
  };
13
13
  export default usePageContainer;
@@ -4,6 +4,6 @@ import { RbRouteWrapperProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useRouteWrapper: (props: RbRouteWrapperProps) => {
7
- isChild: any;
7
+ isChild: boolean;
8
8
  };
9
9
  export default useRouteWrapper;
package/build/index.d.ts CHANGED
@@ -114,29 +114,29 @@ export { BaseDO, BaseRelativeDO, TokenDO };
114
114
  export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbFeedback, useRbDesensitization, useRbDownloader };
115
115
  export { zhCN, enUS };
116
116
  declare const _default: {
117
- RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
118
- RbActionBarItem: React.FC<RbActionBarItemProps>;
119
- RbActionBar: React.FC<RbActionBarProps>;
120
- RbThemeSetter: React.FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
121
- RbDataChart: React.FC<RbDataChartProps>;
122
- RbFileTag: React.FC<RbFileTagProps>;
123
- RbUserCard: React.FC<RbUserCardProps>;
124
- RbIconRender: any;
125
- RbHtmlRender: React.FC<RbHtmlRenderProps>;
126
- RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
117
+ RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
118
+ RbActionBarItem: import("react").FC<RbActionBarItemProps>;
119
+ RbActionBar: import("react").FC<RbActionBarProps>;
120
+ RbThemeSetter: import("react").FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
121
+ RbDataChart: import("react").FC<RbDataChartProps>;
122
+ RbFileTag: import("react").FC<RbFileTagProps>;
123
+ RbUserCard: import("react").FC<RbUserCardProps>;
124
+ RbIconRender: import("react").NamedExoticComponent<RbIconRenderProps>;
125
+ RbHtmlRender: import("react").FC<RbHtmlRenderProps>;
126
+ RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
127
127
  RbUserSelector: (<T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement) & {
128
128
  SearchSelect: <T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement;
129
129
  };
130
- RbAttachmentText: React.FC<RbAttachmentTextProps>;
131
- RbPageContainer: React.FC<RbPageContainerProps>;
132
- RbRouteWrapper: React.FC<RbRouteWrapperProps>;
130
+ RbAttachmentText: import("react").FC<RbAttachmentTextProps>;
131
+ RbPageContainer: import("react").FC<RbPageContainerProps>;
132
+ RbRouteWrapper: import("react").FC<RbRouteWrapperProps>;
133
133
  RbMarkdownConverter: import("showdown").Converter;
134
- RbMarkdownEditor: React.FC<RbMarkdownEditorProps>;
135
- RbSingleImageUploader: React.FC<RbSingleImageUploaderProps>;
136
- RbAuthFrame: React.FC<RbAuthFrameProps>;
137
- RbBindFrame: React.FC<RbBindFrameProps>;
138
- RbGlobalContext: Context<RbGlobalStateType>;
139
- RbDraggableUploader: React.FC<RbDraggableUploaderProps>;
140
- RbTableLineTitle: React.FC<RbTableLineTitleProps>;
134
+ RbMarkdownEditor: import("react").FC<RbMarkdownEditorProps>;
135
+ RbSingleImageUploader: import("react").FC<RbSingleImageUploaderProps>;
136
+ RbAuthFrame: import("react").FC<RbAuthFrameProps>;
137
+ RbBindFrame: import("react").FC<RbBindFrameProps>;
138
+ RbGlobalContext: import("react").Context<RbGlobalStateType>;
139
+ RbDraggableUploader: import("react").FC<RbDraggableUploaderProps>;
140
+ RbTableLineTitle: import("react").FC<RbTableLineTitleProps>;
141
141
  };
142
142
  export default _default;