@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
23 lines (22 loc) • 839 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Radio Group**
* @description Allows users to select a single option from a list of mutually exclusive choices.
* @see [source](https://www.bits-ui.com/docs/components/radio-group#api-reference)
*/
export declare const slots: readonly ["root", "item"];
/**
* **Radio Group**
* @description Allows users to select a single option from a list of mutually exclusive choices.
* @see [source](https://www.bits-ui.com/docs/components/radio-group#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Radio Group**
* @description Allows users to select a single option from a list of mutually exclusive choices.
* @see [source](https://www.bits-ui.com/docs/components/radio-group#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
item: {};
}>;