import { default as React, ReactNode } from 'react'; import { IconName } from '../Icon'; import { HighlightIconVariant } from '../HighlightIcon'; export type RadioBoxProps = { /** * The content to display as the label. */ label: string; /** * The content to display as the description. */ description?: ReactNode; /** * The current value */ value: K; /** * The icon to display in the button */ iconName?: IconName; /** * The variant of the icon background. * @default purple */ iconVariant?: HighlightIconVariant; /** * Whether the RadioBox should be disabled. * @default false */ isDisabled?: boolean; /** * className for the element */ className?: string; /** * The id of the RadioBox */ id?: string; }; /** * To be used inside a RadioGroup */ export declare const RadioBox: ({ id, className, isDisabled, iconName, iconVariant, value, label, description, ...rest }: RadioBoxProps) => React.JSX.Element; //# sourceMappingURL=RadioBox.d.ts.map