import type { Command } from "commander"; export declare const defaultListLimit = 20; export interface ListWindowFlags { limit?: string; since?: string; all?: boolean; } export interface ListWindow { since?: Date; limit?: number; } export declare function withListWindowOptions(command: Command, noun: string): Command; export declare function resolveListWindow(flags: ListWindowFlags): ListWindow; export declare function listWindowHint(window: ListWindow, shown: number, noun: string): string | undefined;