export declare class LockOwnerState {
    readonly clientid: bigint;
    readonly owner: Uint8Array;
    seqid: number;
    readonly locks: Set<string>;
    lastResponse?: any;
    lastRequestKey?: string | undefined;
    constructor(clientid: bigint, owner: Uint8Array, seqid: number, locks?: Set<string>, lastResponse?: any, lastRequestKey?: string | undefined);
}
