import React from 'react'; import { RadioGroupProps } from './RadioGroup.types'; /** * * RadioGroup component * * ``` execute callback onChange}> Radio 1 Radio 2 ``` * @param props.children Content to appear inside of RadioGroup component. * @param props.onChange Callback to be executed when a Radio is selected. * @param props.value Radio that should appear checked. If value passed, component will be controlled by consumer. * @param props.className className applied to RadioGroup container. * @param props.name Name passed to each Radio belonging to the RadioGroup. * @param props.darkMode Determines whether or not the RadioGroup will appear in dark mode. * @param props.size Determines the size of the Radio components Can be 'small' or 'default. */ declare function RadioGroup({ darkMode: darkModeProp, size, className, onChange, children, value: controlledValue, name: nameProp, bold, ...rest }: RadioGroupProps): React.JSX.Element; declare namespace RadioGroup { var displayName: string; } export default RadioGroup; //# sourceMappingURL=RadioGroup.d.ts.map