import type { AllHTMLAttributes, ReactNode } from 'react'; import { type BoxProps } from '../Box'; export type RadioButtonProps = BoxProps & AllHTMLAttributes & { labelChildren?: ReactNode; }; declare const RadioButton: import("react").ForwardRefExoticComponent & { labelChildren?: ReactNode; } & import("react").RefAttributes>; export default RadioButton; //# sourceMappingURL=RadioButton.d.ts.map