import { ILockOptions, ILockResult } from "../types"; export declare class Lock { options: ILockOptions; readonly _id: string; readonly randomId: string; constructor(options: ILockOptions); start(callback: () => Promise): Promise>; }