@regenbio/regenbio-components-react 1.3.68 → 1.3.70

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 +12 -13
  3. package/build/components/DataDisplay/DataTable/index.d.ts +1 -1
  4. package/build/components/DataDisplay/DragTable/hook.d.ts +19 -18
  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 +1 -3
  8. package/build/components/DataDisplay/HtmlRender/hook.d.ts +1 -1
  9. package/build/components/DataDisplay/IconRender/index.d.ts +1 -3
  10. package/build/components/DataDisplay/UserCard/hook.d.ts +5 -5
  11. package/build/components/DataDisplay/UserCard/index.d.ts +1 -3
  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 +2 -4
  15. package/build/components/DataEntry/UserSelector/hook.d.ts +6 -6
  16. package/build/components/Other/ActionBar/hook.d.ts +3 -8
  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 +5 -9
  23. package/build/components/PageLayout/PageContainer/type.d.ts +1 -2
  24. package/build/index.d.ts +18 -18
  25. package/build/index.js +3 -3
  26. package/package.json +3 -7
@@ -4,7 +4,7 @@ import { RbDataChartProps } from "./type";
4
4
  * @param props 参数
5
5
  */
6
6
  declare const useDataChart: (props: RbDataChartProps) => {
7
- emptyStatus: boolean;
8
- loading: boolean;
7
+ emptyStatus: any;
8
+ loading: any;
9
9
  };
10
10
  export default useDataChart;
@@ -1,27 +1,26 @@
1
1
  import { RbDataTableProps } from "./type";
2
- import { ActionType, ProColumns } from "@ant-design/pro-components";
3
2
  /**
4
3
  * 数据表格Hook
5
4
  * @param props 参数
6
5
  */
7
6
  declare const useDataTable: <DataSource, U, ValueType>(props: RbDataTableProps<DataSource, U, ValueType>) => {
8
7
  requestData: (_params: any, _sort: any, _filter: any) => Promise<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;
8
+ beforeSearchSubmit: any;
9
+ executeRecordParams: any;
10
+ setCollapsed: any;
11
+ setParams: any;
12
+ tableKey: any;
14
13
  styles: {
15
14
  customTable: string;
16
15
  };
17
- params: U;
18
- actionRef: import("react").RefObject<ActionType>;
19
- responsive: boolean;
16
+ params: any;
17
+ actionRef: any;
18
+ responsive: any;
20
19
  form: import("antd").FormInstance<any>;
21
- collapsed: boolean;
22
- loading: boolean;
23
- columns: ProColumns<DataSource, ValueType>[];
24
- dataLength: number;
20
+ collapsed: any;
21
+ loading: any;
22
+ columns: any;
23
+ dataLength: any;
25
24
  intl: any;
26
25
  };
27
26
  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>) => import("react/jsx-runtime").JSX.Element;
8
+ declare const RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
9
9
  export default RbDataTable;
@@ -1,3 +1,4 @@
1
+ import { useEffect } from 'react';
1
2
  import { RbDragTableProps } from "./type";
2
3
  import { ActionType } from "@ant-design/pro-components";
3
4
  import { RbActionType } from "../DataTable/type";
@@ -6,14 +7,14 @@ import { RbActionType } from "../DataTable/type";
6
7
  * @param props 属性
7
8
  */
8
9
  declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => {
9
- setTableLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
10
- responsive: boolean;
10
+ setTableLoading: any;
11
+ responsive: any;
11
12
  styles: {
12
13
  customTable: string;
13
14
  };
14
- tableLoading: boolean;
15
+ tableLoading: any;
15
16
  restProps: {
16
- actionRef?: import("react").Ref<RbActionType> & import("react").Ref<ActionType>;
17
+ actionRef?: useEffect<RbActionType | undefined>;
17
18
  responsive?: boolean;
18
19
  loadChange?: (loading: boolean) => void;
19
20
  toolbar?: import("@ant-design/pro-components").ListToolBarProps;
@@ -28,25 +29,25 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
28
29
  toolbar: JSX.Element | undefined;
29
30
  alert: JSX.Element | undefined;
30
31
  table: JSX.Element | undefined;
31
- }) => React.ReactNode;
32
+ }) => useEffect;
32
33
  tableViewRender?: (props: import("antd").TableProps<DataSource>, defaultDom: JSX.Element) => JSX.Element | undefined;
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;
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;
35
36
  postData?: any;
36
37
  defaultData?: DataSource[];
37
38
  formRef?: import("@ant-design/pro-table/es/components/Form/FormRender").TableFormItem<DataSource_1>["formRef"];
38
39
  toolBarRender?: false | ((action: ActionType | undefined, rows: {
39
40
  selectedRowKeys?: (string | number)[];
40
41
  selectedRows?: DataSource[];
41
- }) => React.ReactNode[]);
42
- optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom: React.ReactNode[]) => React.ReactNode[];
42
+ }) => useEffect[]);
43
+ optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom: useEffect[]) => useEffect[];
43
44
  onLoad?: (dataSource: DataSource[]) => void;
44
45
  onLoadingChange?: (loading: boolean | import("antd").SpinProps | undefined) => void;
45
46
  onRequestError?: (e: Error) => void;
46
47
  polling?: number | ((dataSource: DataSource[]) => number);
47
48
  tableClassName?: string;
48
- tableStyle?: import("react").CSSProperties;
49
- headerTitle?: React.ReactNode;
49
+ tableStyle?: useEffect;
50
+ headerTitle?: useEffect;
50
51
  tooltip?: string | import("antd/lib/form/FormItemLabel").LabelTooltipType;
51
52
  options?: import("@ant-design/pro-table/es/components/ToolBar").OptionConfig | false;
52
53
  search?: false | import("@ant-design/pro-table/es/components/Form/FormRender").SearchConfig;
@@ -58,7 +59,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
58
59
  rowSelection?: false | (import("antd/es/table/interface").TableRowSelection<DataSource> & {
59
60
  alwaysShowAlert?: boolean;
60
61
  });
61
- style?: React.CSSProperties;
62
+ style?: useEffect;
62
63
  type?: import("@ant-design/pro-components").ProSchemaComponentTypes;
63
64
  onSubmit?: (params: U) => void;
64
65
  onReset?: () => void;
@@ -71,7 +72,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
71
72
  revalidateOnFocus?: boolean;
72
73
  defaultSize?: import("antd/lib/button").ButtonSize;
73
74
  name?: import("rc-field-form/lib/interface").NamePath;
74
- ErrorBoundary?: React.ComponentClass<any, any> | false;
75
+ ErrorBoundary?: useEffect<any, any> | false;
75
76
  scroll?: import("rc-table").TableProps<RecordType>["scroll"] & {
76
77
  scrollToFirstRowOnChange?: boolean;
77
78
  };
@@ -90,14 +91,14 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
90
91
  title?: import("rc-table/lib/interface").PanelRender<DataSource>;
91
92
  prefixCls?: string;
92
93
  className?: string;
93
- children?: React.ReactNode;
94
+ children?: useEffect;
94
95
  rowKey?: string | keyof DataSource | import("rc-table/lib/interface").GetRowKey<DataSource>;
95
96
  tableLayout?: import("rc-table/lib/interface").TableLayout;
96
97
  expandable?: import("rc-table/lib/interface").ExpandableConfig<DataSource>;
97
98
  rowClassName?: string | import("rc-table/lib/interface").RowClassName<DataSource>;
98
99
  footer?: import("rc-table/lib/interface").PanelRender<DataSource>;
99
- summary?: (data: readonly DataSource[]) => React.ReactNode;
100
- caption?: React.ReactNode;
100
+ summary?: (data: readonly DataSource[]) => useEffect;
101
+ caption?: useEffect;
101
102
  id?: string;
102
103
  showHeader?: boolean;
103
104
  components?: import("rc-table/lib/interface").TableComponents<DataSource>;
@@ -106,7 +107,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
106
107
  direction?: import("rc-table/lib/interface").Direction;
107
108
  sticky?: boolean | import("rc-table/lib/interface").TableSticky;
108
109
  rowHoverable?: boolean;
109
- onScroll?: React.UIEventHandler<HTMLDivElement>;
110
+ onScroll?: useEffect<HTMLDivElement>;
110
111
  tailor?: boolean;
111
112
  getContainerWidth?: (ele: HTMLElement, width: number) => number;
112
113
  dropdownPrefixCls?: string;
@@ -122,6 +123,6 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
122
123
  showSorterTooltip?: boolean | import("antd/es/table/interface").SorterTooltipProps;
123
124
  virtual?: boolean;
124
125
  };
125
- actionRef: import("react").RefObject<ActionType>;
126
+ actionRef: any;
126
127
  };
127
128
  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>) => import("react/jsx-runtime").JSX.Element;
8
+ declare const RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
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: (filename: string) => string;
9
- getIconByFilename: (filename: string) => import("react/jsx-runtime").JSX.Element;
8
+ getExtension: any;
9
+ getIconByFilename: any;
10
10
  };
11
11
  export default useFileTag;
@@ -1,4 +1,2 @@
1
- import React from 'react';
2
- import { RbFileTagProps } from "./type";
3
- declare const _default: React.NamedExoticComponent<RbFileTagProps>;
1
+ declare const _default: any;
4
2
  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: () => string;
7
+ renderContent: any;
8
8
  };
9
9
  export default useHtmlRender;
@@ -1,4 +1,2 @@
1
- import React from 'react';
2
- import { RbIconRenderProps } from "./type";
3
- declare const _default: React.NamedExoticComponent<RbIconRenderProps>;
1
+ declare const _default: any;
4
2
  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: (open: any) => Promise<void>;
9
- getNameLabel: string;
7
+ getAvatar: any;
8
+ onShowTooltip: any;
9
+ getNameLabel: any;
10
10
  userDetail: any;
11
- loading: boolean;
11
+ loading: any;
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: boolean;
19
+ isMe: any;
20
20
  };
21
21
  export default useUserCard;
@@ -1,4 +1,2 @@
1
- import React from 'react';
2
- import { RbUserCardProps } from "./type";
3
- declare const _default: React.NamedExoticComponent<RbUserCardProps>;
1
+ declare const _default: any;
4
2
  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: import("../../..").RbGlobalFunctionType;
9
- inputRef: import("react").RefObject<any>;
8
+ globalFunctions: any;
9
+ inputRef: 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: "write" | "preview";
9
- setSelectedTab: import("react").Dispatch<import("react").SetStateAction<"write" | "preview">>;
8
+ selectedTab: any;
9
+ setSelectedTab: any;
10
10
  };
11
11
  export default useMarkdownEditor;
@@ -5,9 +5,7 @@ import { RbSingleImageUploaderExtraProps, RbSingleImageUploaderProps } from "./t
5
5
  */
6
6
  declare const useSingleImageUploader: (props: RbSingleImageUploaderProps & RbSingleImageUploaderExtraProps) => {
7
7
  intl: any;
8
- globalFunctions: import("../../../..").RbGlobalFunctionType;
9
- onFileChange: ({ file }: {
10
- file: any;
11
- }) => void;
8
+ globalFunctions: any;
9
+ onFileChange: any;
12
10
  };
13
11
  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: import("react").Dispatch<import("react").SetStateAction<string>>;
7
+ setKeywords: any;
8
8
  onFuzzy: (param: any) => Promise<void>;
9
- start: boolean;
10
- loading: boolean;
11
- context: import("@ant-design/pro-form/es/FieldContext").FiledContextProps;
12
- data: any[];
9
+ start: any;
10
+ loading: any;
11
+ context: any;
12
+ data: any;
13
13
  intl: any;
14
- keywords: string;
14
+ keywords: any;
15
15
  };
16
16
  export default useUserSelector;
@@ -1,15 +1,10 @@
1
- import React from 'react';
2
- import { RbActionBarItemProps, RbActionBarProps } from "./type";
3
- import { RbActionBarItem } from "./index";
1
+ import { RbActionBarProps } from "./type";
4
2
  /**
5
3
  * 操作栏Hook
6
4
  * @param props 属性
7
5
  */
8
6
  declare const useActionBar: (props: RbActionBarProps) => {
9
- operationList: React.ReactElement<React.FC<RbActionBarItemProps>, string | React.JSXElementConstructor<any>>[];
10
- extendList: {
11
- key: number;
12
- name: React.ReactElement<typeof RbActionBarItem>;
13
- }[];
7
+ operationList: any;
8
+ extendList: any;
14
9
  };
15
10
  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: () => RbGlobalStateType;
10
+ export declare const useGlobalState: () => any;
@@ -4,8 +4,8 @@ import { RbAuthFrameProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const useAuthFrame: (props: RbAuthFrameProps) => {
7
- setExceptionMsg: import("react").Dispatch<import("react").SetStateAction<string>>;
8
- exceptionMsg: string;
7
+ setExceptionMsg: any;
8
+ exceptionMsg: any;
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: 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;
7
+ setCurrent: any;
8
+ setLoading: any;
9
+ steps: any;
10
+ mailStep: any;
11
+ externalStep: any;
12
+ current: any;
13
+ loading: any;
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: "light" | "realDark";
7
+ mode: any;
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: boolean;
7
+ isChild: any;
8
8
  };
9
9
  export default useHomePage;
@@ -4,14 +4,10 @@ import { RbPageContainerProps } from "./type";
4
4
  * @param props 属性
5
5
  */
6
6
  declare const usePageContainer: (props: RbPageContainerProps) => {
7
- mode: "light" | "realDark";
8
- loading: boolean;
9
- initialState: import("../../..").RbInitialStateRespProps;
10
- headerHeight: number;
11
- token: {
12
- theme: import("@ant-design/cssinjs").Theme<import("antd/es/theme/internal").SeedToken, import("antd/es/theme/internal").AliasToken>;
13
- token: import("antd").GlobalToken;
14
- hashId: string;
15
- };
7
+ mode: any;
8
+ loading: any;
9
+ initialState: any;
10
+ headerHeight: any;
11
+ token: import("antd").GlobalToken;
16
12
  };
17
13
  export default usePageContainer;
@@ -1,6 +1,5 @@
1
1
  import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
2
2
  import { Ref } from "react";
3
- import Scrollbars from "react-custom-scrollbars";
4
3
  /**
5
4
  * 页面容器属性
6
5
  */
@@ -29,5 +28,5 @@ export type RbPageContainerProps = {
29
28
  /**
30
29
  * 滚动条Ref
31
30
  */
32
- scrollbarsRef?: Ref<Scrollbars>;
31
+ scrollbarsRef?: Ref<HTMLDivElement>;
33
32
  } & PageContainerProps;
package/build/index.d.ts CHANGED
@@ -103,27 +103,27 @@ export { BaseDO, BaseRelativeDO, TokenDO };
103
103
  export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification };
104
104
  export { zhCN, enUS };
105
105
  declare const _default: {
106
- RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
107
- RbActionBarItem: import("react").FC<RbActionBarItemProps>;
108
- RbActionBar: import("react").FC<RbActionBarProps>;
109
- RbThemeSetter: import("react").FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
110
- RbDataChart: import("react").FC<RbDataChartProps>;
111
- RbFileTag: import("react").NamedExoticComponent<RbFileTagProps>;
112
- RbUserCard: import("react").NamedExoticComponent<RbUserCardProps>;
113
- RbIconRender: import("react").NamedExoticComponent<RbIconRenderProps>;
114
- RbHtmlRender: import("react").FC<RbHtmlRenderProps>;
115
- RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
106
+ RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
107
+ RbActionBarItem: React.FC<RbActionBarItemProps>;
108
+ RbActionBar: React.FC<RbActionBarProps>;
109
+ RbThemeSetter: React.FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
110
+ RbDataChart: React.FC<RbDataChartProps>;
111
+ RbFileTag: any;
112
+ RbUserCard: any;
113
+ RbIconRender: any;
114
+ RbHtmlRender: React.FC<RbHtmlRenderProps>;
115
+ RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
116
116
  RbUserSelector: (<T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement) & {
117
117
  SearchSelect: <T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement;
118
118
  };
119
- RbAttachmentText: import("react").FC<RbAttachmentTextProps>;
120
- RbPageContainer: import("react").FC<RbPageContainerProps>;
121
- RbHomePage: import("react").FC<RbHomePageProps>;
119
+ RbAttachmentText: React.FC<RbAttachmentTextProps>;
120
+ RbPageContainer: React.FC<RbPageContainerProps>;
121
+ RbHomePage: React.FC<RbHomePageProps>;
122
122
  RbMarkdownConverter: import("showdown").Converter;
123
- RbMarkdownEditor: import("react").FC<RbMarkdownEditorProps>;
124
- RbSingleImageUploader: import("react").FC<RbSingleImageUploaderProps>;
125
- RbAuthFrame: import("react").FC<RbAuthFrameProps>;
126
- RbBindFrame: import("react").FC<RbBindFrameProps>;
127
- RbGlobalContext: import("react").Context<RbGlobalStateType>;
123
+ RbMarkdownEditor: React.FC<RbMarkdownEditorProps>;
124
+ RbSingleImageUploader: React.FC<RbSingleImageUploaderProps>;
125
+ RbAuthFrame: React.FC<RbAuthFrameProps>;
126
+ RbBindFrame: React.FC<RbBindFrameProps>;
127
+ RbGlobalContext: Context<RbGlobalStateType>;
128
128
  };
129
129
  export default _default;