/** * Inherited by classes that want to support versioning. This will help in debugging as well. */ export declare class Versioned { _version: string; constructor(version?: string); get version(): string; set version(version: string); } //# sourceMappingURL=versioned.d.ts.map