export interface GoToOptions { animated?: boolean; } export interface CarouselController { goTo: (index: number, options?: GoToOptions) => Promise; goToPrev: (options?: GoToOptions) => Promise; goToNext: (options?: GoToOptions) => Promise; goToOrigin: (options?: GoToOptions) => Promise; }