import { b as PackageSuper, S as SiziumResponse } from '../shared/core.D1SNe5o-.cjs';
import '@schemastore/package';

/**
 * Represents the class to get the `true` package size from the npm registry URL.
 *
 * @example
 * const size = new SiziumRegistry( 'chalk' )
 * const data = await size.get()
 *
 * console.log(data) // all data
 * console.log(data.size) // total size on bytes
 */
declare class SiziumRegistry extends PackageSuper {
    #private;
    get(): Promise<SiziumResponse>;
}

export { SiziumRegistry };
