import { AgenticProfile, JWKSet } from '@agentic-profile/common'; type SaveProfileParams = { dir: string; profile?: AgenticProfile; keyring?: JWKSet[]; }; declare function saveProfile({ dir, profile, keyring }: SaveProfileParams): Promise<{ profilePath: string; keyringPath: string; }>; declare function loadProfileAndKeyring(dir: string): Promise<{ profile: AgenticProfile; keyring: JWKSet[]; }>; declare function loadProfile(dir: string): Promise; declare function loadKeyring(dir: string): Promise; declare function loadJson(dir: string, filename: string): Promise; export { loadJson, loadKeyring, loadProfile, loadProfileAndKeyring, saveProfile };