import { default as React } from 'react'; import { ValidationState } from './select-root'; import * as RadixSelect from '@radix-ui/react-select'; export type TriggerProps = React.ComponentPropsWithoutRef & { /** Whether the input should display its "valid" or "invalid" visual styling. */ validationState?: ValidationState; /** Called when the value changes. */ readonly?: boolean; }; export declare const Trigger: React.ForwardRefExoticComponent, "ref"> & { /** Whether the input should display its "valid" or "invalid" visual styling. */ validationState?: ValidationState; /** Called when the value changes. */ readonly?: boolean; } & React.RefAttributes>;