import { RowProps, ColProps, FlexProps, SpinProps, ConfigProviderProps } from 'antd'; export { Affix, AffixProps, AffixRef, Alert, AlertProps, Anchor, AnchorLinkProps, AnchorProps, App, AppProps, AutoComplete, AutoCompleteProps, Avatar, AvatarProps, BackTop, BackTopProps, Badge, BadgeProps, Breadcrumb, BreadcrumbItemProps, BreadcrumbProps, Breakpoint, Button, ButtonProps, Calendar, CalendarProps, Card, CardProps, Carousel, CarouselProps, Cascader, CascaderAutoProps, CascaderPanelAutoProps, CascaderPanelProps, CascaderProps, Checkbox, CheckboxOptionType, CheckboxProps, CheckboxRef, Col, ColProps, Collapse, CollapsePanelProps, CollapseProps, ColorPicker, ColorPickerProps, CountdownProps, DatePicker, DatePickerProps, Descriptions, DescriptionsProps, Divider, DividerProps, Drawer, DrawerProps, Dropdown, DropdownProps, Empty, EmptyProps, Flex, FlexProps, FloatButton, FloatButtonGroupProps, FloatButtonProps, FloatButtonRef, Form, FormInstance, FormItemProps, FormListFieldData, FormListOperation, FormProps, FormRule, GetProp, GetProps, GetRef, GlobalToken, Grid, Image, ImageProps, Input, InputNumber, InputNumberProps, InputProps, InputRef, Layout, LayoutProps, List, ListProps, MappingAlgorithm, MentionProps, Mentions, MentionsProps, Menu, MenuItemProps, MenuProps, MenuRef, MenuTheme, MessageArgsProps, Modal, ModalFuncProps, ModalProps, NotificationArgsProps, Pagination, PaginationProps, Popconfirm, PopconfirmProps, Popover, PopoverProps, Progress, ProgressProps, QRCode, QRCodeProps, QRPropsCanvas, QRPropsSvg, Radio, RadioChangeEvent, RadioGroupProps, RadioProps, Rate, RateProps, RefSelectProps, Result, ResultProps, Row, RowProps, Segmented, SegmentedProps, Select, SelectProps, SiderProps, Skeleton, SkeletonProps, Slider, SliderSingleProps, Space, SpaceProps, Spin, SpinProps, Splitter, SplitterProps, Statistic, StatisticProps, StepProps, Steps, StepsProps, SubMenuProps, Switch, SwitchProps, TabPaneProps, Table, TableColumnGroupType, TableColumnProps, TableColumnType, TableColumnsType, TablePaginationConfig, TableProps, Tabs, TabsProps, Tag, TagProps, TagType, ThemeConfig, TimePicker, TimePickerProps, TimeRangePickerProps, Timeline, TimelineItemProps, TimelineProps, Tooltip, TooltipProps, Tour, TourProps, TourStepProps, Transfer, TransferProps, Tree, TreeDataNode, TreeNodeProps, TreeProps, TreeSelect, TreeSelectProps, Typography, TypographyProps, Upload, UploadFile, UploadProps, Watermark, WatermarkProps, message, notification, theme, version } from 'antd'; import * as en_US from 'antd/locale/en_US'; export { en_US as enUS }; import * as zh_CN from 'antd/locale/zh_CN'; export { zh_CN as zhCN }; import * as React from 'react'; import React__default from 'react'; import * as antd_es_typography_Paragraph from 'antd/es/typography/Paragraph'; import * as antd_es_typography_Link from 'antd/es/typography/Link'; import * as antd_es_typography_Title from 'antd/es/typography/Title'; import * as antd_es_typography_Text from 'antd/es/typography/Text'; interface ColumnsProps extends RowProps { /** 列数 */ columns?: number; } interface ColumnsProps extends ColProps { } declare const Columns: React__default.ForwardRefExoticComponent>; interface ContainerProps extends FlexProps { /** * 页面加载完成后执行的回调 */ onMount?: () => void; /** * 页面卸载前执行的回调 */ onUnmount?: () => void; } /** * 页面容器 */ declare const Container: React__default.ForwardRefExoticComponent>; interface EachProps { /** * 数据源 */ data?: T[]; /** * 自定义渲染器 */ render?: (item: T, index: number) => React__default.ReactNode; } declare const Each: React__default.ForwardRefExoticComponent & React__default.RefAttributes>; interface IframeProps { /** 页面地址 */ url: string; /** 页面标题 */ title?: string; } declare const Iframe: React__default.ForwardRefExoticComponent>; declare const Text: React.ForwardRefExoticComponent>; declare const Title: React.ForwardRefExoticComponent>; declare const Link: React.ForwardRefExoticComponent>; declare const Paragraph: React.ForwardRefExoticComponent>; interface WhenProps extends SpinProps { /** * 条件 */ test: boolean; /** * 成功内容 */ children?: React__default.ReactNode; } declare const When: React__default.ForwardRefExoticComponent>; declare const ConfigProvider: (props: ConfigProviderProps) => React__default.JSX.Element; export { Columns, type ColumnsProps, ConfigProvider, Container, type ContainerProps, Each, type EachProps, Iframe, type IframeProps, Link, Paragraph, Text, Title, When, type WhenProps };