import { default as React, ChangeEventHandler } from 'react'; export type RadioInputProps = Readonly<{ /** * className for the element */ className?: string; /** * The id of the RadioInput */ id?: string; /** * The name of the RadioInput. * Ignored within a RadioGroup */ name?: string; /** * Whether the RadioInput should be disabled * @default false */ isDisabled?: boolean; /** * Whether the RadioInput should be checked. * Ignored within a RadioGroup */ isChecked?: boolean; /** * The current value */ value: string; /** * Handler that is called when the value changes. * Ignored within a RadioGroup */ onChange?: ChangeEventHandler; }>; export declare const RadioInput: (props: RadioInputProps) => React.JSX.Element; //# sourceMappingURL=RadioInput.d.ts.map