import React, { HTMLProps, PropsWithChildren } from 'react'; export type DialogTriggerProps = HTMLProps & PropsWithChildren<{ asChild?: boolean; }>; export declare const DialogTrigger: React.ForwardRefExoticComponent & React.RefAttributes>;