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