import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface DropdownMenuTriggerProps extends Omit, 'children' | 'color'>, TestableProps { children: ReactNode; asChild?: boolean; ref?: Ref; } export declare const DropdownMenuTrigger: FC;