import { AxisType } from './Axis';
import { SlidesInViewType } from './SlidesInView';
import { Vector1DType } from './Vector1d';
import { TranslateType } from './Translate';
import { DirectionType } from './Direction';
type LoopPointType = {
    index: number;
    translate: TranslateType;
    location: Vector1DType;
    target: () => Vector1DType;
};
export type SlideLooperType = {
    canLoop: () => boolean;
    clear: () => void;
    loop: () => void;
    loopPoints: LoopPointType[];
};
export declare function SlideLooper(axis: AxisType, direction: DirectionType, viewSize: number, contentSize: number, slideSizesWithGaps: number[], scrollSnaps: number[], slidesInView: SlidesInViewType, scroll: Vector1DType, slides: HTMLElement[]): SlideLooperType;
export {};
