import { UsTinValidationAttempt, UsTinValidationStatus } from 'hooks'; import { ButtonKey, PromptKey, StatusKey, SubPromptKey } from '../../i18n/types'; import { Locale, QuestionnaireProp, QuestionnaireState, QuestionnaireStateKey } from '../../types'; export declare const getLocal: (fields: QuestionnaireState, language: Locale, questionnaire: QuestionnaireProp, usTinValidations?: UsTinValidationAttempt[]) => { getBadgeKey: (key: QuestionnaireStateKey) => UsTinValidationStatus | undefined; getLocalAddressTitle: (data: QuestionnaireState) => string; getLocalAuState: (key: string | undefined) => "" | "Australian Capital Territory" | "New South Wales" | "Northern Territory" | "Queensland" | "South Australia" | "Tasmania" | "Victoria" | "Western Australia"; getLocalBadge: (key: QuestionnaireStateKey) => string | undefined; getLocalButton: (key: ButtonKey) => string; getLocalCaProvince: (key: string | undefined) => string; getLocalCountry: (key: string | undefined) => string; getLocalStatus: (key: StatusKey) => string; getLocalMonth: (key: string | undefined) => string; getLocalOption: { (key: string, prefix?: string): string; (key: string | undefined, prefix?: string): string | undefined; }; getLocalPrompt: (key: string) => string; getLocalSubOption: (key: string | undefined) => string | undefined; getLocalSubPrompt: (key: string) => string; getLocalSubTitle: (key: string) => string; getLocalText: (key: string) => string; getLocalTitle: (key: string) => string; getLocalUsState: (key: string | undefined) => "" | "Alabama" | "Alaska" | "Arizona" | "Arkansas" | "California" | "Colorado" | "Connecticut" | "Delaware" | "District Of Columbia" | "Florida" | "Georgia" | "Hawaii" | "Idaho" | "Illinois" | "Indiana" | "Iowa" | "Kansas" | "Kentucky" | "Louisiana" | "Maine" | "Maryland" | "Massachusetts" | "Michigan" | "Minnesota" | "Mississippi" | "Missouri" | "Montana" | "Nebraska" | "Nevada" | "New Hampshire" | "New Jersey" | "New Mexico" | "New York" | "North Carolina" | "North Dakota" | "Ohio" | "Oklahoma" | "Oregon" | "Pennsylvania" | "Rhode Island" | "South Carolina" | "South Dakota" | "Tennessee" | "Texas" | "Utah" | "Vermont" | "Virginia" | "Washington" | "West Virginia" | "Wisconsin" | "Wyoming"; getPromptKey: (key: string) => PromptKey; getSubPromptKey: (key: string) => SubPromptKey; };