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