/** * Shared keyPrefix-based localization for the v4 create prompts. Both the Q1 * selector walk and the Q2/Q3 collect-inputs bridge resolve user-visible text * the same way: look up `.` in the NLS bundle, and fall back * to the authored literal when no key is registered. */ /** Localize a raw string when it is itself an NLS key, else return it verbatim. */ export declare function localizeText(text: string | undefined): string | undefined; /** Resolve `.` via NLS, falling back to the literal `fallback`. */ export declare function localizePrefixedText(keyPrefix: string | undefined, suffix: string, fallback: string | undefined): string | undefined; //# sourceMappingURL=localizePrompt.d.ts.map