import type { AppTranslations } from '../types/languages'; export declare const CODE_REQUEST_FORM_NAME = "code_request"; export declare const JOURNEY_OPTION_KEYS: readonly ["question_god_journey_option_1", "question_god_journey_option_2", "question_god_journey_option_3", "question_god_journey_option_4"]; export type JourneyOptionKey = (typeof JOURNEY_OPTION_KEYS)[number]; export declare const AUTO_UNLOCK_JOURNEY_KEY: JourneyOptionKey; /** * The journey options in display order, each paired with the key that * identifies it. Callers render `label` and track `key`, so the answer a user * picked stays identifiable no matter what language it was rendered in. */ export declare function getJourneyOptions(translations: Pick): { key: JourneyOptionKey; label: string; }[]; export declare function sanitizeFeedbackText(value: string): string;