/** * Returns whether the provided radio value matches the current RadioGroup selection. * * @param {string | number} value - The radio item's value * @returns {boolean} True when the current RadioGroup context is checked for the provided value */ export declare const useRadioItemChecked: (value: string | number) => boolean;