import './Radio.scss';
import React from 'react';
export interface RadioProps {
    name: string;
    label: string;
    value: string | number;
    checked?: boolean;
    disabled?: boolean;
    className?: string;
    ariaLabel?: string;
    onChange?: () => void;
}
declare const Radio: ({ name, label, value, checked, disabled, className, ariaLabel, onChange, }: RadioProps) => React.JSX.Element;
export default Radio;
//# sourceMappingURL=Radio.d.ts.map