import type { CSSProperties } from "react"; import type { RadioItemStyleObject, RadioItem } from "./types"; /** * Small util to get the value from a {@link RadioItem}. * * @param value - {@link RadioItem} * @returns the current string value of the radio item * @remarks \@since 2.7.0 */ export declare function getRadioItemValue(value: RadioItem): string; /** * This util will return the `style` object only if the `RadioItemValue` had a * `style` property. * * @param item - {@link RadioItemStyleObject} * @returns an optional style object to provide to the radio. * @remarks \@since 2.7.0 */ export declare const defaultGetRadioStyle: (item: RadioItemStyleObject) => CSSProperties | undefined; /** * This util will return the `className` string only if the `RadioItemValue` * had a `className` property. * * @param item - {@link RadioItemStyleObject} * @returns an optional className to provide to the radio * @remarks \@since 2.7.0 */ export declare const defaultGetRadioClassName: (item: RadioItemStyleObject) => string | undefined;