import React from 'react'; export interface RadioProps { /** Controls the look of the element */ appearance?: 'regular' | 'medium' | 'large'; /** The value of the radio button */ checked?: boolean; /** Specifies if the checkbox is disabled or not */ disabled?: boolean; /** Label of the button */ label: string; /** Name of the radio */ name: string; /** The radio toggle event handler */ onChange?: (event: React.ChangeEvent, name: string, value?: string) => void; /** The value of the checkbox */ value?: string; } declare const Radio: ({ appearance, checked, disabled, label, name, onChange, value, ...other }: RadioProps) => JSX.Element; export default Radio;