import { VoiceConfig } from "../lib/voiceProviders"; interface NarratifyControlsStandaloneProps { isPlaying: boolean; isPaused: boolean; currentCueIndex: number; totalCues: number; currentCue?: { id: string; text: string; } | null; error?: string | null; onPlay: () => void; onRestart: () => void; onPrevious: () => void; onNext: () => void; onClose?: () => void; showVoiceSelector?: boolean; voiceConfig?: VoiceConfig; onVoiceChange?: (voice: VoiceConfig) => void; className?: string; position?: "bottom" | "top" | "inline"; sticky?: boolean; } export declare function NarratifyControlsStandalone({ isPlaying, isPaused, currentCueIndex, totalCues, currentCue, error, onPlay, onRestart, onPrevious, onNext, onClose, showVoiceSelector, voiceConfig, onVoiceChange, className, position, sticky, }: NarratifyControlsStandaloneProps): import("react/jsx-runtime").JSX.Element; export {};