import { type DeriveAgentCardOptions, type PersonaSpec } from '@agentworkforce/persona-kit'; export declare const DEFAULT_COMPILED_AGENT_CARD_OPTIONS: DeriveAgentCardOptions; export interface PersonaCompileResult { inputPath: string; outputPath: string; agentCardPath: string; personaId: string; } export interface LoadedPersonaSource { inputPath: string; source: Record; persona: PersonaSpec; } export declare function loadParsedPersonaSourceFile(inputPath: string): Promise; export declare function compilePersonaFile(inputPath: string, outputPath?: string, agentCardOptions?: DeriveAgentCardOptions): Promise; export declare function runPersonaCompileCommand(args: string[]): Promise; export declare function parseAgentCardOptions(args: readonly string[], context: string): Partial; //# sourceMappingURL=persona-compile.d.ts.map