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