import React from 'react'; import { ModalProps } from 'antd'; import { VariableTreeProps } from './variable-tree'; interface VariableTreeModalProps extends VariableTreeProps { trigger?: React.ReactElement; title?: ModalProps['title']; modalProps?: ModalProps; } export declare function VariableTreeModal({ trigger, title, modalProps, onSelect, ...rest }: VariableTreeModalProps): React.JSX.Element; export {};