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