/** * slowmo Rotary Dial Controller * * A draggable, rotatable dial for controlling playback speed. * - Center: Click to pause/play, drag to reposition * - Outer wheel: Drag left/right to rotate and change speed */ export interface DialOptions { onSpeedChange: (speed: number) => void; onPauseToggle?: (paused: boolean) => void; initialSpeed?: number; initialPaused?: boolean; } export declare function createDial(options: DialOptions): HTMLElement; export default createDial;