import { Example, ExampleCollectionOptions } from './types'; interface CollectionOptions extends ExampleCollectionOptions { frameSize: number; batchSize: number; fftSize: number; sampleRateHz: number; } export declare function collectExample(word: string, options: CollectionOptions): Promise; export {};