import { IResource, PrimitiveCode, Type } from "../internal"; export declare class Resource extends Type { static readonly baseType: string; static readonly namespace: string; static readonly typeName: string; static readonly primaryCodePath: string | null; id?: string; language?: PrimitiveCode; resourceType?: string; constructor(); static parse(json: IResource, providedInstance?: Resource): Resource; static isResource(input?: unknown): input is Resource; toJSON(): IResource; clone(): Resource; getTypeName(): string; } //# sourceMappingURL=Resource.d.ts.map