type CrestodianAuditEntry = { timestamp: string; operation: string; summary: string; configPath?: string; configHashBefore?: string | null; configHashAfter?: string | null; details?: Record; }; export declare function resolveCrestodianAuditPath(env?: NodeJS.ProcessEnv, stateDir?: string): string; export declare function appendCrestodianAuditEntry(entry: Omit, opts?: { env?: NodeJS.ProcessEnv; auditPath?: string; }): Promise; export {};