export declare enum ResourceType { asset = "Asset", font = "Font" } export type ResourceModel = { id: string; persistentId: string; url: string; originalName?: string; scope: "DesignSystem" | "Documentation"; }; export declare class Resource { /** Unique identifier of the resource */ id: string; /** Unique identifier of the resource in the version */ idInVersion: string; /** URL of the resource */ url: string; /** Original filename of the resource */ originalName: string | null; /** Scope of the resource */ scope: "DesignSystem" | "Documentation"; /** Type of the resource */ type: ResourceType; constructor(model: ResourceModel); }