import { default as React } from 'react'; import * as RadioGroupPrimitive from '@radix-ui/react-radio-group'; export type TriggerProps = React.ComponentPropsWithoutRef & { id?: string; /** The value given as data when submitted with a name. This is used to determine which radio button is selected. */ value: string; }; /** Trigger is the element for selecting an option. An input will also render when used within a form to ensure events propagate correctly. */ export declare const Trigger: React.ForwardRefExoticComponent, "ref"> & { id?: string; /** The value given as data when submitted with a name. This is used to determine which radio button is selected. */ value: string; } & React.RefAttributes>;