import type { ClaudeSwitchFile, RoutingFile } from './routing-types.js'; interface ParseResult { ok: boolean; value?: T; error?: string; } export declare function parseClaudeSwitchFile(raw: string): ParseResult; export declare function parseRoutingFile(raw: string): ParseResult; export {};