@regenbio/regenbio-components-react 1.3.60 → 1.3.61

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 (28) 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/FileTag/index.d.ts +3 -1
  8. package/build/components/DataDisplay/HtmlRender/hook.d.ts +1 -1
  9. package/build/components/DataDisplay/IconRender/index.d.ts +3 -1
  10. package/build/components/DataDisplay/UserCard/hook.d.ts +5 -5
  11. package/build/components/DataDisplay/UserCard/index.d.ts +3 -1
  12. package/build/components/DataEntry/AttachmentText/hook.d.ts +2 -2
  13. package/build/components/DataEntry/MarkdownEditor/hook.d.ts +2 -2
  14. package/build/components/DataEntry/Uploader/SingleImageUploader/hook.d.ts +4 -2
  15. package/build/components/DataEntry/UserSelector/hook.d.ts +6 -6
  16. package/build/components/Other/ActionBar/hook.d.ts +8 -3
  17. package/build/components/Other/GlobalContext/index.d.ts +1 -1
  18. package/build/components/Other/LoginLoad/AuthFrame/hook.d.ts +2 -2
  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/HomePage/hook.d.ts +1 -1
  22. package/build/components/PageLayout/PageContainer/hook.d.ts +4 -3
  23. package/build/components/PageLayout/PageContainer/type.d.ts +4 -4
  24. package/build/index.d.ts +18 -18
  25. package/build/index.js +3 -3
  26. package/build/services/hooks/useRbResponsive.d.ts +2 -2
  27. package/build/services/types/commonType.d.ts +0 -4
  28. package/package.json +7 -3
@@ -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;
@@ -1,2 +1,4 @@
1
- declare const _default: any;
1
+ import React from 'react';
2
+ import { RbFileTagProps } from "./type";
3
+ declare const _default: React.NamedExoticComponent<RbFileTagProps>;
2
4
  export default _default;
@@ -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;
@@ -1,2 +1,4 @@
1
- declare const _default: any;
1
+ import React from 'react';
2
+ import { RbUserCardProps } from "./type";
3
+ declare const _default: React.NamedExoticComponent<RbUserCardProps>;
2
4
  export default _default;
@@ -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;
@@ -5,7 +5,9 @@ import { RbSingleImageUploaderExtraProps, RbSingleImageUploaderProps } from "./t
5
5
  */
6
6
  declare const useSingleImageUploader: (props: RbSingleImageUploaderProps & RbSingleImageUploaderExtraProps) => {
7
7
  intl: any;
8
- globalFunctions: any;
9
- onFileChange: any;
8
+ globalFunctions: import("../../../..").RbGlobalFunctionType;
9
+ onFileChange: ({ file }: {
10
+ file: any;
11
+ }) => void;
10
12
  };
11
13
  export default useSingleImageUploader;
@@ -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, ...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 { RbActionBarProps } from "./type";
1
+ import React from 'react';
2
+ import { RbActionBarItemProps, 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<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,8 +4,8 @@ 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
10
  };
11
11
  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,6 +4,6 @@ import { RbHomePageProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useHomePage: (props: RbHomePageProps) => {
7
- isChild: any;
7
+ isChild: boolean;
8
8
  };
9
9
  export default useHomePage;
@@ -4,8 +4,9 @@ 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;
7
+ mode: "light" | "realDark";
8
+ loading: boolean;
9
+ initialState: import("../../..").RbInitialStateRespProps;
10
+ headerHeight: number;
10
11
  };
11
12
  export default usePageContainer;
@@ -1,5 +1,6 @@
1
1
  import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
2
- import React from "react";
2
+ import { Ref } from "react";
3
+ import Scrollbars from "react-custom-scrollbars";
3
4
  /**
4
5
  * 页面容器属性
5
6
  */
@@ -17,8 +18,7 @@ export type RbPageContainerProps = {
17
18
  */
18
19
  loadDuringAnimate?: boolean;
19
20
  /**
20
- * 内容渲染
21
- * @param content 内容
21
+ * 滚动条Ref
22
22
  */
23
- contentRender: (content: React.ReactNode | React.ReactNode[]) => React.ReactNode | React.ReactNode[];
23
+ scrollbarsRef?: Ref<Scrollbars>;
24
24
  } & PageContainerProps;
package/build/index.d.ts CHANGED
@@ -104,27 +104,27 @@ export { BaseDO, BaseRelativeDO, TokenDO };
104
104
  export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbResponsive };
105
105
  export { zhCN, enUS };
106
106
  declare const _default: {
107
- RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
108
- RbActionBarItem: React.FC<RbActionBarItemProps>;
109
- RbActionBar: React.FC<RbActionBarProps>;
110
- RbThemeSetter: React.FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
111
- RbDataChart: React.FC<RbDataChartProps>;
112
- RbFileTag: any;
113
- RbUserCard: any;
114
- RbIconRender: any;
115
- RbHtmlRender: React.FC<RbHtmlRenderProps>;
116
- RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
107
+ RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
108
+ RbActionBarItem: import("react").FC<RbActionBarItemProps>;
109
+ RbActionBar: import("react").FC<RbActionBarProps>;
110
+ RbThemeSetter: import("react").FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
111
+ RbDataChart: import("react").FC<RbDataChartProps>;
112
+ RbFileTag: import("react").NamedExoticComponent<RbFileTagProps>;
113
+ RbUserCard: import("react").NamedExoticComponent<RbUserCardProps>;
114
+ RbIconRender: import("react").NamedExoticComponent<RbIconRenderProps>;
115
+ RbHtmlRender: import("react").FC<RbHtmlRenderProps>;
116
+ RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
117
117
  RbUserSelector: (<T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement) & {
118
118
  SearchSelect: <T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement;
119
119
  };
120
- RbAttachmentText: React.FC<RbAttachmentTextProps>;
121
- RbPageContainer: React.FC<RbPageContainerProps>;
122
- RbHomePage: React.FC<RbHomePageProps>;
120
+ RbAttachmentText: import("react").FC<RbAttachmentTextProps>;
121
+ RbPageContainer: import("react").FC<RbPageContainerProps>;
122
+ RbHomePage: import("react").FC<RbHomePageProps>;
123
123
  RbMarkdownConverter: import("showdown").Converter;
124
- RbMarkdownEditor: React.FC<RbMarkdownEditorProps>;
125
- RbSingleImageUploader: React.FC<RbSingleImageUploaderProps>;
126
- RbAuthFrame: React.FC<RbAuthFrameProps>;
127
- RbBindFrame: React.FC<RbBindFrameProps>;
128
- RbGlobalContext: Context<RbGlobalStateType>;
124
+ RbMarkdownEditor: import("react").FC<RbMarkdownEditorProps>;
125
+ RbSingleImageUploader: import("react").FC<RbSingleImageUploaderProps>;
126
+ RbAuthFrame: import("react").FC<RbAuthFrameProps>;
127
+ RbBindFrame: import("react").FC<RbBindFrameProps>;
128
+ RbGlobalContext: import("react").Context<RbGlobalStateType>;
129
129
  };
130
130
  export default _default;