import { SelectButtonProps } from 'primereact/selectbutton';

export interface SelectButtonTogetherProps extends Omit<SelectButtonProps, 'value' | 'onChange'> {
    rtKey: string;
    className?: string;
}
export default function SelectButtonTogether({ rtKey, options, ...props }: SelectButtonTogetherProps): import("react/jsx-runtime").JSX.Element;
