import type { ButtonHTMLAttributes, FC, FocusEvent, ReactNode } from 'react';
import { type TestableProps } from '../../utils/testId';
type TabsTriggerNativeProps = Omit, 'value' | 'onFocus' | 'children'>;
export interface TabsTriggerProps extends TabsTriggerNativeProps, TestableProps {
children: ReactNode;
value: string;
asChild?: boolean;
onFocus?: (e: FocusEvent) => void;
}
export declare const TabsTrigger: FC;
export {};