interface AdoptionLockOwner { schemaVersion: 1; nonce: string; pid: number; createdAt: string; } export interface AdoptionLock { path: string; owner: AdoptionLockOwner; release(): void; } export declare function getAdoptionLockPath(): string; export declare function acquireAdoptionLock(): AdoptionLock; export {};