import React from 'react'; export declare const isWaveformAvailable: boolean; export interface WaveformPlayerProps { uri: string; position?: 'left' | 'right'; /** * Length in seconds from the message, shown before the file has decoded so a * note is labelled immediately instead of reading 0:00. */ duration?: number; } /** * Telegram-style voice note: a decoded waveform with a play/pause control, a * progress cursor, drag-to-scrub and a playback-speed pill. Powered by * react-native-audio-api (decode + playback). Falls back to a tappable MediaCard * if decoding fails. Only mounted when audio-api is available. */ export declare function WaveformPlayer({ uri, position, duration: durationProp }: WaveformPlayerProps): React.JSX.Element; //# sourceMappingURL=WaveformPlayer.d.ts.map