import { ButtonHTMLAttributes, FC, Ref } from 'react'; export interface DrawerTriggerProps extends ButtonHTMLAttributes { /** * If true, renders the trigger as a child element using `Slot`. * This enables custom wrappers (e.g., ,
) to inherit drawer-opening behavior. */ asChild?: boolean; /** * Ref forwarded to the native button or slotted element. * Useful for focus management or integrations. */ ref?: Ref; } /** The DrawerTrigger component is an interactive control—usually a button or custom slotted element—that toggles the visibility of a drawer, supporting asChild for flexible rendering and integration with custom trigger elements */ export declare const DrawerTrigger: FC;