import { type DeriveAgentCardOptions } from '@agentworkforce/persona-kit'; interface Writable { write(chunk: string): unknown; } interface AgentCardCommandDeps { stdout?: Writable; } export declare function runAgentCardCommand(args: readonly string[], deps?: AgentCardCommandDeps): Promise; export declare function parseAgentCardCommandArgs(args: readonly string[]): { personaPath: string; json: boolean; options: DeriveAgentCardOptions; }; export {}; //# sourceMappingURL=agent-card-command.d.ts.map