import { LitElement } from "lit"; /** * Creates a DOM element with absolute position that can have scrollbars. * However, no actual content is displayed by this element. */ declare class FakeScroll extends LitElement { overflow: "hidden" | "auto" | "scroll"; overflowX: "hidden" | "auto" | "scroll" | "initial"; overflowY: "hidden" | "auto" | "scroll" | "initial"; width: number; height: number; fullHeight: number; fullWidth: number; positionX: "top" | "bottom"; positionY: "left" | "right"; el?: HTMLDivElement | null; _x: number; set x(value: number); get x(): number; _y: number; set y(value: number); get y(): number; onScroll: (e: Event) => void; checkOverflow(overflow: "hidden" | "auto" | "scroll", { withX, withY }: { withX?: boolean | undefined; withY?: boolean | undefined; }): boolean; shouldShow(): { showX: boolean; showY: boolean; }; render(): import("lit-html").TemplateResult<1>; protected updated(): void; } export default FakeScroll; //# sourceMappingURL=FakeScroll.d.ts.map