import type { Options, Source, SourceStats } from '../types.ts';
export type Callback = (error?: Error, stats?: SourceStats) => undefined;
export default function sourceStats(source: Source, options: Options, endpoint: string | Callback, callback?: Callback): undefined;
