import { RadioProps } from '@ariakit/react';
import { ButtonProps } from '../Button/types';
export interface RadioTabsOptions {
    dataTestId?: string;
    label: React.ReactElement;
}
export type RadioTabsProps = Omit<ButtonProps, 'onChange' | 'value'> & RadioProps & RadioTabsOptions;
