interface ListCommandOptions { recent?: number; search?: string; days?: number; limit?: number; } export declare function listCommand(options?: ListCommandOptions): Promise; export {};