import { EmblaCarouselType } from 'embla-carousel'; /** * This file boilerplate from https://www.embla-carousel.com/examples/generator/ */ type UsePrevNextButtonsType = { prevBtnDisabled: boolean; nextBtnDisabled: boolean; onPrevButtonClick: () => void; onNextButtonClick: () => void; }; export declare const usePrevNextButtons: (emblaApi: EmblaCarouselType | undefined) => UsePrevNextButtonsType; export {};