import { PropsWithChildren } from 'react';
export declare const RadioContext: import('react').Context<{
    color: string;
    selectedKey?: string;
    disabledKeys?: string[];
    activatedKey?: string;
    setActivatedKey: React.Dispatch<React.SetStateAction<string | undefined>>;
}>;
declare const RadioContainer: ({ onChange, children }: PropsWithChildren<{
    onChange: (key?: string) => void;
}>) => import('react').ReactNode;
export default RadioContainer;
