import { FunctionComponent } from 'react';
import { StyledRadioProps } from './StyledRadio.js';

interface RadioProps {
    sizing?: StyledRadioProps['sizing'];
    disabled?: boolean;
    name?: string;
    value?: unknown;
    autoFocus?: boolean;
    onChange?: ((event: React.ChangeEvent<HTMLInputElement>, checked: boolean) => void) | undefined;
    checked?: boolean;
    readOnly?: boolean;
    required?: boolean;
    'aria-label'?: string;
}
declare const Radio: FunctionComponent<RadioProps>;

export { Radio as default };
export type { RadioProps };
