import React from 'react';
import type { Attachment } from 'stream-chat';
export type AudioProps = {
    og: Attachment;
};
/**
 * Audio attachment with play/pause button and progress bar
 */
export declare const Audio: (props: AudioProps) => React.JSX.Element | null;
