@payfit/unity-components
Version:
14 lines (13 loc) • 722 B
TypeScript
import { RadioButtonGroupProps } from './RadioButtonGroup.js';
/**
* Props for `TanstackRadioButtonGroup`.
*
* Inherits all visual/interaction props from the base `RadioButtonGroup`, but removes
* form‑control props that are provided by the TanStack Form field context instead.
*
* Omitted props:
* - `name`, `value`, `defaultValue`, `isInvalid` — these are driven by the form context.
*/
export type TanstackRadioButtonGroupProps = Omit<RadioButtonGroupProps, 'value' | 'defaultValue' | 'isInvalid' | 'name'>;
declare const TanstackRadioButtonGroup: import('react').ForwardRefExoticComponent<TanstackRadioButtonGroupProps & import('react').RefAttributes<HTMLDivElement>>;
export { TanstackRadioButtonGroup };