/** * * 类目选择 */ import React from 'react'; interface TProps { name?: string; isPreview?: boolean; multiple?: boolean; defaultValue?: string[]; onChange?: any; } interface TState { dataSource: any[]; } declare class Category extends React.Component { static propTypes: {}; static defaultProps: { isPreview: boolean; multiple: boolean; defaultValue: any[]; onChange: () => void; }; state: TState; componentDidMount(): Promise; render(): JSX.Element; } export default Category;