import type { IInstallTypiaSourcePackOptions } from "../structures/IInstallTypiaSourcePackOptions"; /** * Fetch the typia source pack JSON once per URL. * * Concurrent callers share one load. A caller abort cancels that shared * attempt; rejection removes it from the cache so the next call retries from * scratch. Nothing else ends the load: how long a fetch takes belongs to the * network, not to a number chosen here. */ export declare function loadTypiaSourcePack(options: IInstallTypiaSourcePackOptions): Promise>;