import { CheckboxBaseProps } from '../base/checkboxBase'; /** * Props for the Radio component. * * Extends {@link CheckboxBaseProps} with radio-specific defaults * and removes indeterminate-related options. * * @category Radio */ export type RadioProps = Omit; /** * Radio button component built on top of {@link CheckboxBase}. * * Provides radio-specific defaults, circular shape, * and checked icon rendering. * * @param props Component properties. * @function * * @example * * * @example * * * @category Radio */ export declare const Radio: import('react').ForwardRefExoticComponent>;