/** * State file I/O helpers for notify-hook modules. */ import { readdir } from 'fs/promises'; export { readdir }; export declare function readJsonIfExists(path: string, fallback: any): Promise; export declare function getScopedStateDirsForCurrentSession(baseStateDir: string, payloadSessionId?: any): Promise; export declare function normalizeTmuxState(raw: any): any; export declare function normalizeNotifyState(raw: any): any; export declare function pruneRecentTurns(recentTurns: any, now: number): Record; export declare function pruneRecentKeys(recentKeys: any, now: number): Record; //# sourceMappingURL=state-io.d.ts.map