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