import { IEqualityComparable } from 'thaw-common-utilities.ts';
export declare class StringIntKey implements IEqualityComparable {
    static from(input: string): StringIntKey;
    private readonly str;
    private readonly n;
    constructor(str: string, n: number);
    toString(): string;
    equals(other: unknown): boolean;
}
//# sourceMappingURL=string-int-key.d.ts.map