interface CallLogOptions { logDir?: string; now?: Date; } export declare function withProgress(message: string, action: () => Promise): Promise; export declare function writeCallLog(message: string, options?: CallLogOptions): void; export {};