import { ElementType } from 'react'; import type { DialogTriggerProps } from './types'; /** * Trigger button that opens the dialog when activated. * Supports keyboard navigation and proper ARIA attributes. */ export declare const DialogTrigger: { ({ as, disabled: disabledProp, ref, onClick, children, ...props }: DialogTriggerProps): import("react/jsx-runtime").JSX.Element; displayName: string; };