@project44-manifest/react
Version:
Manifest Design System react components
15 lines • 712 B
TypeScript
import type { AriaRadioGroupProps } from '@react-types/radio';
import { As, Options, Props } from '../../system';
import type { StyleProps } from '../../types';
export declare type RadioGroupElement = 'div';
export interface RadioGroupOptions<T extends As = RadioGroupElement> extends Options<T>, AriaRadioGroupProps, StyleProps {
/**
* The layout orientation of the radio group.
*
* @default 'vertical'
*/
orientation?: 'horizontal' | 'vertical';
}
export declare type RadioGroupProps<T extends As = RadioGroupElement> = Props<RadioGroupOptions<T>>;
export declare const RadioGroup: import("../../system").Component<RadioGroupOptions<"div">>;
//# sourceMappingURL=RadioGroup.d.ts.map