import { AuthenticatedCommand } from "../../../AuthenticatedCommand"; export default class List extends AuthenticatedCommand { static readonly description = "display all Numbers in the active Workspace"; static readonly examples: string[]; static readonly flags: { "page-size": import("@oclif/core/lib/interfaces").OptionFlag; }; run(): Promise; }