import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface DrawerTriggerProps extends Omit, 'children' | 'color'>, TestableProps { children: ReactNode; /** Render as child component */ asChild?: boolean; ref?: Ref; } export declare const DrawerTrigger: FC;