import { Rectangle } from './types'; export { render, fireEvent } from '@testing-library/react'; export { default as EasyMode } from './testUtils/EasyMode'; export declare const SHAPE_TID = "shape-rect"; export declare const SELECTION_TID = "selection-rect"; export declare const mouseDrag: (el: Element, { x, y, dx, dy, midDragCb, shiftKey, }: { dx: number; dy: number; x?: number | undefined; y?: number | undefined; midDragCb?: (() => void) | undefined; shiftKey?: boolean | undefined; }) => void; export declare const expectRect: (shape: Element, rect: Rectangle) => void; export declare const getDrawLayer: (container: HTMLElement) => Element; export declare const getSelectionLayer: (container: HTMLElement) => Element; export declare const getActiveElement: () => Element;