/** * Built-in commands for the csdk CLI. * * Provides a base set of commands that demonstrate the SDK's capabilities * and offer useful utilities out of the box. */ import type { CLIOptions, Inquirerer, ParsedArgs } from 'inquirerer'; /** * Main command handler for the csdk CLI. * This is the single CommandHandler function passed to inquirerer's CLI class. */ export declare const commands: (argv: Partial, prompter: Inquirerer, _options: CLIOptions) => Promise>;