export type EngramXPluginConfig = { canisterId: string; sessionKeyPath?: string; host?: string; memoryDir?: string; sync: { onStartup: boolean; intervalMinutes: number; pushOnWrite: boolean; }; backup: { enabled: boolean; intervalMinutes: number; dbLabel?: string; }; git: { enabled: boolean; pushOnSync: boolean; pushOnStop: boolean; }; }; export declare function sha256File(filePath: string): string; export declare const engramxConfigSchema: { parse(value: unknown): EngramXPluginConfig; };