import { type ButtonHTMLAttributes, type FC, type Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface DrawerResizeHandleProps extends Omit, 'children' | 'color'>, TestableProps {
ref?: Ref;
/** Fired when the user starts dragging the resize handle. */
onResizeStart?: () => void;
/** Fired when the user releases the resize handle, with the final pixel width. */
onResizeEnd?: (width: number) => void;
}
export declare const DrawerResizeHandle: FC;