import { RadioProps } from 'antd';

export interface SelectButtonTogetherProps extends Omit<RadioProps, 'value' | 'onChange'> {
    rtKey: string;
    items: {
        label: string;
        value: string;
    }[];
}
export default function SelectButtonTogether({ rtKey, items, ...props }: SelectButtonTogetherProps): import("react/jsx-runtime").JSX.Element;
