import { ComponentType, ForwardRefExoticComponent, Key, SVGProps } from 'react' import { CustomIconComponentProps } from '@ant-design/icons/es/components/Icon' import { GetProp, TablePaginationConfig, UploadProps } from 'antd/lib' import { ColumnsType, FilterValue, SorterResult, SortOrder } from 'antd/es/table/interface' import { CheckboxChangeEvent } from 'antd/es/checkbox' import type { DataNode } from 'antd/es/tree' declare global { type IconComponent = | ComponentType> | ForwardRefExoticComponent type _TablePaginationConfig = TablePaginationConfig type _ColumnsType = ColumnsType type _FilterValue = FilterValue type _SorterResult = SorterResult type _SortOrder = SortOrder type _CheckboxChangeEvent = CheckboxChangeEvent interface _DataNode extends DataNode { value: Key fullTitle?: string parentId?: number children?: _DataNode[] } type _UploadProps = UploadProps type _GetProp = GetProp }