import { MultiSelectProps } from 'primereact/multiselect';

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