import React from 'react'; import { ScrollAxis } from '@sberdevices/plasma-core'; declare const throttlingParamsDefault: { leading: boolean; trailing: boolean; }; export { useCarouselContext, useCarouselItem } from '@sberdevices/plasma-core'; /** * Хук для навигации. Слушает нажатие кнопок на пульте/клавиатуре. */ export declare function useRemoteHandlers({ initialIndex, axis, delay, longDelay, min, max, count, longCount, throttlingParams, }: { initialIndex: number; axis: ScrollAxis; delay: number; longDelay: number; min: number; max: number; count?: number; longCount?: number; throttlingParams?: typeof throttlingParamsDefault; }): [number, React.Dispatch>]; //# sourceMappingURL=Carousel.hooks.d.ts.map