import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface DrawerTriggerProps extends Omit, 'children' | 'color' | 'value'>, TestableProps {
children: ReactNode;
/** Render as child component */
asChild?: boolean;
ref?: Ref;
/** Native button value attribute (string only, matching Ark UI's Dialog.Trigger) */
value?: string;
}
export declare const DrawerTrigger: FC;