/// <reference types="node" />
/// <reference types="node" />
/// <reference types="node" />
import type { Readable } from "node:stream";
export type PrerecordedSource = UrlSource | Buffer | Readable;
export type FileSource = Buffer | Readable;
export interface UrlSource {
    url: string;
}
export interface TextSource {
    text: string;
}
export type AnalyzeSource = UrlSource | TextSource;
//# sourceMappingURL=DeepgramSource.d.ts.map