interface BlobAnimationProps {
    audioData: any | null;
    isListening: boolean;
    listeningColors?: [string, string];
    notListeningColors?: [string, string];
    agentStatus: 'idle' | 'speaking' | 'listening' | 'thinking';
    agentAudioData: Uint8Array | null;
}
declare const BlobAnimationImpl: React.FC<BlobAnimationProps>;
declare const BlobAnimation: React.FC<BlobAnimationProps>;
export { BlobAnimationImpl };
export default BlobAnimation;
