import { type StyledProps } from "./Styled"; /** * moaui Styled Radio Button * * @param props - checked, onChange, value, name, ariaLabel, disabled * @example * {}} * value={"Radio"} * name={"Radio"} * ariaLabel={"Radio button"} * disabled={true || false} * /> * @returns React.ReactElement */ declare const Radio: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; onChange: () => void; name: string; ariaLabel: string; disabled: boolean; }; export default Radio; export { type StyledProps as RadioProps, SampleProps as RadioSample, }; //# sourceMappingURL=index.d.ts.map