/// import { AudioLevelDisplayType } from '../../types'; import { DisplayShapes } from '../Video/Video'; import { AudioLevelIndicatorClasses } from './Border'; export interface AudioLevelIndicatorProps { audioTrackId?: string; type: AudioLevelDisplayType; level?: number; color?: string; displayShape?: DisplayShapes; classes?: AudioLevelIndicatorClasses; } export declare const AudioLevelIndicator: ({ audioTrackId, type, level, color, displayShape, classes, }: AudioLevelIndicatorProps) => JSX.Element | null;