import type { CommandArguments, CommandResult } from "../../../shared/interfaces/command.interface.js"; import { BaseCommand } from "../base.command.js"; /** * Secrets command handler * Fetches all secrets via the configured broker */ export declare class SecretsCommand extends BaseCommand { readonly name = "secrets"; readonly description = "Fetch all secrets via the configured broker"; private readonly logger; execute(args: CommandArguments): Promise; } //# sourceMappingURL=secrets.command.d.ts.map