import { EntityIdStrategy } from './entity-id-strategy'; export declare class UuidIdStrategy implements EntityIdStrategy<'uuid'> { readonly primaryKeyType = "uuid"; decodeId(id: string): string; encodeId(primaryKey: string): string; }