import React from 'react'; import { DefaultProps } from '../theme'; import { RadioGroup } from './RadioGroup'; export { RadioGroup }; export interface RadioProps extends DefaultProps { /** Radio label */ label?: React.ReactNode; /** Radio value */ value?: string; /** Id is used to bind input and label, if not passed unique id will be generated for each input */ id?: string; /** Whether the Radio is checked */ checked?: boolean; defaultChecked?: boolean; disabled?: boolean; } export declare const Radio: import("../utils/types").ComponentWithAs<"input", RadioProps>; //# sourceMappingURL=Radio.d.ts.map