import type { Command } from "commander"; import type { CommandOptions, ListResult, OutputSchema } from "../../output/index.js"; import type { ProviderSnapshotEntry } from "@getpaseo/protocol/agent-types"; export interface ProviderListItem { provider: ProviderSnapshotEntry["provider"]; label: string; status: string; enabled: "Enabled" | "Disabled"; defaultMode: string; modes: string; } /** Schema for provider ls output */ export declare const providerLsSchema: OutputSchema; export type ProviderLsResult = ListResult; export interface ProviderLsOptions extends CommandOptions { host?: string; } export declare function runLsCommand(options: ProviderLsOptions, _command: Command): Promise; //# sourceMappingURL=ls.d.ts.map