import { ModalProps } from 'antd'; import './GlobalVariableChooser.less'; export interface GlobalVariableChooserProps extends Omit { defaultValue?: { ref?: string; formatter?: string; } | undefined; onOk?: (value: { ref: string; formatter: string; }) => void; } declare const GlobalVariableChooser: (props: GlobalVariableChooserProps) => JSX.Element; export default GlobalVariableChooser;