baseui
Version:
A React Component library implementing the Base design language
8 lines (7 loc) • 316 B
TypeScript
import * as React from 'react';
import type { RadioGroupProps, StatefulRadioGroupProps } from './types';
declare const StatefulRadioGroup: {
(props: StatefulRadioGroupProps & Omit<RadioGroupProps, keyof StatefulRadioGroupProps>): React.JSX.Element;
displayName: string;
};
export default StatefulRadioGroup;