import React from 'react'; import type { CSS } from '../theme/stitches.config'; import type { UseRadioGroupProps } from './use-radio-group'; interface Props extends UseRadioGroupProps { className?: string; children: React.ReactNode; as?: keyof JSX.IntrinsicElements; } export declare type RadioGroupProps = Props & { css?: CSS; }; export declare const RadioGroup: React.ForwardRefExoticComponent>; export default RadioGroup;