import type { Command } from "commander"; import type { CommandOptions, ListResult, OutputSchema } from "../../output/index.js"; /** Permission list item for display */ export interface PermissionListItem { id: string; agentId: string; agentShortId: string; name: string; description: string; } /** Schema for permit ls output */ export declare const permitLsSchema: OutputSchema; export type PermitLsResult = ListResult; export interface PermitLsOptions extends CommandOptions { host?: string; } export declare function runLsCommand(options: PermitLsOptions, _command: Command): Promise; //# sourceMappingURL=ls.d.ts.map