import { ComponentPropsWithRef } from 'react';
import { LabelProps } from '../Label/types';
export interface RadioOptions {
    dataTestId?: string;
    hint?: string;
    label?: string;
    maxWidth?: number | string;
    value?: string;
    variant?: 'danger' | 'default';
}
export type RadioProps = ComponentPropsWithRef<'input'> & LabelProps & RadioOptions;
