import { Command } from "commander"; interface ListOptions { sort?: string; limit?: string; all?: boolean; hub?: string; cursor?: string; format?: string; topicId?: string; } export declare function buildNextPageCommand(options: ListOptions, nextCursor: string): string; export declare function listCommand(options: ListOptions): Promise; export declare function registerListCommand(program: Command): void; export {}; //# sourceMappingURL=list.d.ts.map