/**
 * @module Lock
 */
import { type IReadableContext } from "../../../../execution-context/contracts/_module.js";
import { type ILockAdapter, type ILockAdapterState } from "../../../../lock/contracts/_module.js";
import { type TimeSpan } from "../../../../time-span/implementations/_module.js";
/**
 * The `NoOpLockAdapter` will do nothing and is used for easily mocking {@link ILockFactory | `ILockFactory`} for testing.
 *
 * IMPORT_PATH: `"@daiso-tech/core/lock/no-op-lock-adapter"`
 * @group Adapters
 */
export declare class NoOpLockAdapter implements ILockAdapter {
    acquire(_context: IReadableContext, _key: string, _lockId: string, _ttl: TimeSpan | null): Promise<boolean>;
    release(_context: IReadableContext, _key: string, _lockId: string): Promise<boolean>;
    forceRelease(_context: IReadableContext, _key: string): Promise<boolean>;
    refresh(_context: IReadableContext, _key: string, _lockId: string, _ttl: TimeSpan): Promise<boolean>;
    getState(_context: IReadableContext, _key: string): Promise<ILockAdapterState | null>;
}
