type AirProps = { /** Type of the ecosystem (sd1, sd2, sdxl) */ ecosystem: string; /** Type of the resource (model, lora, embedding, hypernet) */ type: string; /** Supported network source */ source: string; /** Id of the resource from the source */ id: string; version?: string; /** The format of the model (safetensor, ckpt, diffuser, tensor rt) optional */ format?: string; }; /** https://github.com/civitai/civitai/wiki/AIR-%E2%80%90-Uniform-Resource-Names-for-AI */ export declare abstract class Air { static parse(identifier: string): AirProps; static stringify({ ecosystem, type, source, id, version, format }: AirProps): string; } export {};