import { Guid } from '@dolittle/rudiments'; import { ConceptAs } from '@dolittle/concepts'; /** * Represents the unique identifier of a partition. */ export declare class PartitionId extends ConceptAs { /** * Initialises a new instance of the {@link PartitionId} class. * @param {string} id - The partition id. */ constructor(id: string); /** * Gets the unspecified partition id. */ static unspecified: PartitionId; /** * Creates a {@link PartitionId} from a {@link Guid} or a {@link string}. * @param {PartitionId | Guid | string} id - The partition id. * @returns {PartitionId} The created partition id concept. */ static from(id: PartitionId | Guid | string): PartitionId; } //# sourceMappingURL=PartitionId.d.ts.map