import type { LenisOptions, Scrolling } from 'lenis';
import { Lenis } from '#imports';
export type ScrollState = {
    scroll: number;
    animatedScroll: number;
    velocity: number;
    limit: number;
    progress: number;
    isScrolling: Scrolling;
    isStopped: boolean;
    isTouching?: boolean;
    isHorizontal: boolean;
    isLocked: boolean;
    isSmooth: boolean;
    rootElement: HTMLElement | null;
    direction: 1 | -1 | 0;
    lastVelocity: number;
    targetScroll: number;
};
export interface LenisPlugin {
    createLenis: (id: string, options?: LenisOptions) => Lenis;
    getLenis: (id?: string) => Lenis | null;
    destroyLenis: (id: string) => void;
    getScrollState: (id?: string) => ScrollState | null;
}
declare const _default: any;
export default _default;
