import { default as React } from 'react'; export interface WaveFormProps { /** Audio data (amplitude values 0-1) */ data: number[]; /** Width */ width?: number; /** Height */ height?: number; /** Bar color */ color?: string; /** Bar gap */ gap?: number; /** Additional className */ className?: string; } /** * WaveForm Component * * Audio waveform visualization with vertical bars. * Displays amplitude data as a bar chart. * * @example * ```tsx * * ``` */ export declare const WaveForm: React.FC; //# sourceMappingURL=wave-form.d.ts.map