import { Guid } from '@dolittle/rudiments'; import { ConceptAs } from '@dolittle/concepts'; /** * Represents the unique identifier of a scope. */ export declare class ScopeId extends ConceptAs { /** * Initialises a new instance of the {@link ScopeId} class. * @param {Guid} id - The scope id. */ constructor(id: Guid); /**. * Represents the default scope * * @static * @type {ScopeId} */ static default: ScopeId; /** * Creates a {@link ScopeId} from a {@link Guid} or a {@link string}. * @param {ScopeId | Guid | string} id - The scope id. * @returns {ScopeId} The created scope id concept. */ static from(id: ScopeId | Guid | string): ScopeId; } /** * Checks whether or not an object is an instance of {@link ScopeId}. * @param {any} object - The object to check. * @returns {boolean} True if the object is an {@link ScopeId}, false if not. */ export declare const isScopeId: (object: any) => object is ScopeId; //# sourceMappingURL=ScopeId.d.ts.map