import { PropsWithChildren, SetStateAction } from 'react';
export declare const RadioItemContext: import('react').Context<{
    isDisabled: boolean;
    itemId: string;
    setItemId: React.Dispatch<SetStateAction<string>>;
}>;
declare const Item: ({ id, className, children }: PropsWithChildren<{
    id?: string;
    className?: string;
}>) => import("react/jsx-runtime").JSX.Element;
export default Item;
