import React from 'react'; export declare type RadioProps = React.HTMLProps; /** * @typedef {object} RadioProps * @alias RadioProps * @memberof Radio * @property {string} [...] All props default to _radio_ html input like `onChange`, * `checked` etc. */ /** /** * @classdesc * * * * HTML Radio * * ### Usage * * ```javascript * import { Radio, RadioProps } from '@admin-bro/design-system' * ``` * * @component * @see RadioProps * @see {@link https://storybook.adminbro.com/?path=/story/designsystem-atoms-radio--default StoryBook} * @hideconstructor * @subcategory Atoms * @example * return ( * * * * * ) * @section design-system */ declare const Radio: React.FC; export { Radio }; export default Radio;