export interface AgentState { sessionCode: string; pid: number; startedAt: string; serverUrl: string; } export declare function writeState(state: AgentState): Promise; export declare function clearState(): Promise; export declare function readState(): Promise;