/// export declare type RadioGroupVariant = 'list' | 'stacked-cards'; export interface RadioGroupsContext { variant: RadioGroupVariant; } export declare const RadioGroupsProvider: ({ variant, children }: { variant: any; children: any; }) => JSX.Element; export declare const useRadioGroups: () => RadioGroupsContext;