/** * Filesystem paths for per-action persisted state under a strategy wallet directory. * * @module */ /** * Normalizes an action name for use as a single path segment: lowercase, * non-alphanumeric to hyphens, collapsed and trimmed. */ export declare function sanitizeActionName(name: string): string; /** `{stateDir}/strategies/{address}/actions/{sanitized}/latest.json` */ export declare function actionLatestPath(stateDir: string, address: string, actionName: string): string; /** `{stateDir}/strategies/{address}/actions/{sanitized}/history.jsonl` */ export declare function actionHistoryPath(stateDir: string, address: string, actionName: string): string; //# sourceMappingURL=paths.d.ts.map