export declare abstract class HasStaticKey {
    static readonly key: string;
    readonly key: string;
    constructor();
    toString(): string;
}
