//import React, { FC } from 'react'; export { Alert } from './src/components/alert/types'; export { Avatar } from './src/components/avatar/types'; export { Breadcrumb } from './src/components/breadcrumb/types'; export { Button } from './src/components/button/types'; export { Carousel } from './src/components/carousel/types'; export { Checkbox } from './src/components/checkbox/types'; export { DatePicker } from './src/components/datepicker/types'; export { Drawer } from './src/components/drawer/types'; export { Dropdown } from './src/components/dropdown/types'; export { Icon } from './src/components/icon/types'; export { Input } from './src/components/input/types'; export { LineEllipsis } from './src/components/line-ellipsis/types'; export { Message } from './src/components/message/types'; export { Modal } from './src/components/modal/types'; export { Notification } from './src/components/notification/types'; export { Parallax } from './src/components/parallax/types'; export { Pagination } from './src/components/pagination/types'; export { Popover } from './src/components/popover/types'; export { Progress } from './src/components/progress/types'; export { Radio } from './src/components/radio/types'; export { Select } from './src/components/select/types'; export { Spinner } from './src/components/spinner/types'; export { Switch } from './src/components/switch/types'; export { Table } from './src/components/table/types'; export { Tabs } from './src/components/tabs/types'; export { Tree } from './src/components/tree/types'; export { Upload } from './src/components/upload/types'; //declare namespace kwaiUi { // declare const Icon: FC; // declare const Avatar: FC; // declare const Breadcrumb: FC; // declare const Button: FC, 'size'>>; // declare const Carousel: FC; // declare const Checkbox: FC & { Group: FC }; // declare const Dropdown: FC; // declare const Input: FC & React.HTMLProps>; // declare const LineEllipsis: FC; // declare const Modal: FC; // declare const Pagination: FC; // declare const Popover: FC; // declare const Progress: FC; // declare const Radio: FC; // declare const Select: FC & { SelectInput: FC }; // declare const Switch: FC; // declare const Table: FC; // declare const Spinner: FC<{ // strokeWidth?: number; // color?: string; // left?: number; // top?: number; // className?: string; // style?: any; // }>; // declare namespace Message { // function info(msg: string, timeout = 2000, showProgress = false); // function error(msg: string, timeout = 2000, showProgress = false); // function success(msg: string, timeout = 2000, showProgress = false); // function warning(msg: string, timeout = 2000, showProgress = false); // function pending(msg: string); // } // declare namespace Notification { // function info(title: string, desc: string, timeout = 3000, showProgress = false); // function error(title: string, desc: string, timeout = 3000, showProgress = false); // function success(title: string, desc: string, timeout = 3000, showProgress = false); // function warning(title: string, desc: string, timeout = 3000, showProgress = false); // } // declare const Upload: FC; // declare const Tree: FC; // declare const Drawer: FC; // declare const Tabs: FC & { TabPanel: FC }; //} //export = kwaiUi;