import type { Options, Source } from '../types.js'; export type Callback = (error?: Error, size?: number) => void; export default function getSize(source: Source, options: Options, callback: Callback): void;