import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface RadioItemLabelProps extends ComposableProps<'span'> {
/**
* The label text for this radio item.
*/
children: React.ReactNode;
}
/**
* RadioItemLabel Component
*
* A composable label component for individual radio items.
* Automatically styled based on radio group state and context.
*
* @public
*
* @example
* ```tsx
*
*
*
* Option 1
*
*
* ```
*
* @remarks
* - Wraps the Typography component by default.
* - Supports `asChild` prop to merge props with a custom child element.
* - Automatically styled based on selection and disabled states.
* - Accessible: maintains proper label-input association.
*/
export declare const RadioItemLabel: React.ForwardRefExoticComponent>;
//# sourceMappingURL=RadioItemLabel.d.ts.map