import { SelectProps } from 'antd';

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