import { ReactNode } from 'react'; import { ButtonType } from '../button/types'; import TextSize from '../constants/TextSize'; import TextWeight from '../constants/TextWeight'; type ColorTheme = ButtonType.PRIMARY | ButtonType.SECONDARY; export type RadioButtonProps = { name?: string; value: string | number; onChange?: (value: string | number) => void; checked: boolean; label?: string; colorTheme: ColorTheme; children?: ReactNode; disabled?: boolean; className?: string; size?: TextSize; weight?: TextWeight; }; export declare const BCRadioButton: ({ name, value, checked, onChange, label, colorTheme, children, disabled, className, size, weight, }: RadioButtonProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};