import { SelectProps } from 'antd';

export interface MultiSelectTogetherProps extends Omit<SelectProps, 'value' | 'onChange'> {
    rtKey: string;
}
export default function MultiSelectTogether({ rtKey, ...props }: MultiSelectTogetherProps): import("react/jsx-runtime").JSX.Element;
