import type { FC } from 'react'; import { Select as ArkUiSelect } from '@ark-ui/react/select'; import type { VariantProps } from 'class-variance-authority'; import { type TestableProps } from '../../utils/testId'; import { linkVariants } from '../Link'; type SelectClearTriggerNativeProps = Omit; type SelectClearTriggerVariantsProps = VariantProps; type SelectClearTriggerProps = SelectClearTriggerNativeProps & SelectClearTriggerVariantsProps & TestableProps; export declare const SelectClearTrigger: FC; export {};