import { AsyncLoadingCallback, TreeSelectItems } from '../../../types'; import React from 'react'; type Props = { node: TreeSelectItems; hasChildren: boolean; asyncLoading?: AsyncLoadingCallback; }; export declare const Expander: React.FC; export {};