import { type Ref } from 'vue'; import type { PagiflowInstance, PagiflowOptions } from './types'; export interface UsePagiflowReturn { sliderRef: Ref; instance: Ref; currentIndex: Ref; goTo: (index: number, opts?: { silent?: boolean; instant?: boolean; }) => void; next: () => void; prev: () => void; play: () => void; pause: () => void; togglePlayPause: () => void; setOptions: (opts: Partial, rebuild?: boolean) => void; reInit: (opts?: Partial) => void; } export declare function usePagiflow(options?: PagiflowOptions): UsePagiflowReturn;