import * as React from 'react'; export interface RadioProps extends Omit, 'size' | 'type'> { /** Radio label */ label?: React.ReactNode; /** Helper text below the radio */ helperText?: string; /** Error message */ error?: string; /** Size variant */ size?: 'sm' | 'md' | 'lg'; } /** * Radio - Single selection control * * Accessible radio button with label and error states. * Use within a RadioGroup for managing multiple options. */ export declare const Radio: React.ForwardRefExoticComponent>; //# sourceMappingURL=Radio.d.ts.map