export declare const createMockDOMRect: (top: number, left: number, width: number, height: number) => DOMRect; export declare const createStyledElement: (tagName?: string, styles?: Partial) => HTMLElement; export declare const createScrollableParent: (options?: Partial & { contentHeight?: string; appendToBody?: boolean; }) => { parent: HTMLElement; target: HTMLElement; }; export declare const createNestedScrollableParents: (options?: { outer?: Partial & { contentHeight?: string; }; inner?: Partial & { contentHeight?: string; }; }) => { outerParent: HTMLElement; innerParent: HTMLElement; target: HTMLElement; }; export declare const setupWindowDimensions: () => void;