/**
 * @param {HTMLElement} el
 * @param {{isAsync?:boolean, releaseElement?: HTMLElement}} config releaseElement can be different when the mouse is dragged before release
 */
export function mimicClick(el: HTMLElement, { isAsync, releaseElement }?: {
    isAsync?: boolean;
    releaseElement?: HTMLElement;
}): Promise<void>;
//# sourceMappingURL=mimicClick.d.ts.map