@zag-js/radio-group
Version:
Core logic for the radio group widget implemented as a state machine
11 lines (8 loc) • 534 B
text/typescript
import { ItemProps, RadioGroupProps } from './radio-group.types.mjs';
import '@zag-js/core';
import '@zag-js/types';
declare const props: (keyof RadioGroupProps)[];
declare const splitProps: <Props extends Partial<RadioGroupProps>>(props: Props) => [Partial<RadioGroupProps>, Omit<Props, keyof RadioGroupProps>];
declare const itemProps: (keyof ItemProps)[];
declare const splitItemProps: <Props extends ItemProps>(props: Props) => [ItemProps, Omit<Props, keyof ItemProps>];
export { itemProps, props, splitItemProps, splitProps };