import { ComponentRef } from "react"; export type CarouselControlType = "prev" | "next"; export type MovementDirection = "LEFT" | "RIGHT" | "NONE"; export type RelativeRect = Pick; export type ListItemRef = { element: ComponentRef<"li">; left: number; right: number; fullyVisible: boolean; }; //# sourceMappingURL=types.d.ts.map