import { type TensorMap } from "./tza";
export declare class Weights {
    private static instance;
    private collections;
    path?: string;
    url: string;
    private constructor();
    static getInstance(): Weights;
    getCollection(collection?: string, overrideUrl?: string): Promise<TensorMap>;
    has(collection: string): boolean;
}
