import { PropsWithChildren } from 'react';
interface Props {
    id?: string;
    selectedKey?: string;
    disabledKeys?: string[];
    color?: string;
    className?: string;
    onChange?: (value?: string) => void;
}
declare const Radio: {
    ({ id, color, selectedKey, disabledKeys, className, onChange, children }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element;
    Item: ({ id, className, children }: PropsWithChildren<{
        id?: string;
        className?: string;
    }>) => import("react/jsx-runtime").JSX.Element;
};
export default Radio;
