import { PropsWithChildren } from 'react'; export interface RadioListContainerProps extends PropsWithChildren { className?: string; testId?: string; } declare const RadioListContainer: ({ children, className, testId, }: RadioListContainerProps) => import("react/jsx-runtime").JSX.Element; export { RadioListContainer };