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