import { Cache } from './index';
export declare class Locker extends Cache<string> {
    lock(key: string): string;
    unlock(key: string): void;
}
