export interface WasmPitch { addListener(callback: (freq:number) => any): void; removeListener(callback: (freq:number) => any): void; async init(options: { sourceNode: AudioNode }): boolean; getAudioContext(): AudioContext; start(): void; stop(): void; loaded(): boolean; }