import * as React from 'react'; import { PickOptional } from '../../helpers/typeUtils'; import { OUIAProps } from '../../helpers'; export interface RadioProps extends Omit, 'disabled' | 'label' | 'onChange' | 'type'>, OUIAProps { /** Additional classes added to the radio wrapper. This will be a div element if * isLabelWrapped is true, otherwise this will be a label element. */ className?: string; /** Additional classed added to the radio input */ inputClassName?: string; /** Id of the radio. */ id: string; /** Flag to show if the radio label is wrapped on small screen. */ isLabelWrapped?: boolean; /** Flag to show if the radio label is shown before the radio button. */ isLabelBeforeButton?: boolean; /** Flag to show if the radio is checked. */ checked?: boolean; /** Flag to show if the radio is checked. */ isChecked?: boolean; /** Flag to show if the radio is disabled. */ isDisabled?: boolean; /** Flag to show if the radio selection is valid or invalid. */ isValid?: boolean; /** Label text of the radio. */ label?: React.ReactNode; /** Name for group of radios */ name: string; /** A callback for when the radio selection changes. */ onChange?: (event: React.FormEvent, checked: boolean) => void; /** Aria label for the radio. */ 'aria-label'?: string; /** Description text of the radio. */ description?: React.ReactNode; /** Body of the radio. */ body?: React.ReactNode; /** Value to overwrite the randomly generated data-ouia-component-id.*/ ouiaId?: number | string; /** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */ ouiaSafe?: boolean; } declare class Radio extends React.Component { static displayName: string; static defaultProps: PickOptional; constructor(props: RadioProps); handleChange: (event: React.FormEvent) => void; render(): React.JSX.Element; } export { Radio }; //# sourceMappingURL=Radio.d.ts.map