import { type ComponentProps, type ComponentType, type FC, type ReactNode } from 'react'; import { RadioButton } from '../RadioButton'; type Props = ComponentProps & { as?: string | ComponentType; label: ReactNode; }; export declare const RadioButtonPanel: FC; export {};