export declare const runtimeVersions: { node: string; python: string; }; export declare const NODE_SUPPORT_FLOOR = ">=22.12.0"; interface IndentSetting { indentWidth: number; lineWidth: number; } /** * Indent width and line width shared across every formatter (prettier, oxfmt, ruff, typstyle, …). * Single source of truth — reference it instead of hardcoding the values per tool so every * formatter stays in lockstep. */ export declare const indentSettings: IndentSetting; export {};