///
interface Props {
style?: React.CSSProperties;
isReset: string | boolean;
defaultValue?: any;
modelData: any[];
onChange: (list: any) => void;
}
export declare function TreeSelect(props: Props): JSX.Element;
export declare const TreeSelectContainer: import("@emotion/styled").StyledComponent & {
children?: import("react").ReactNode;
} & {
ref?: import("react").Ref | undefined;
} & {
theme?: import("@emotion/react").Theme | undefined;
}, {}, {}>;
export {};