export type LangKeys = 'enUS' | 'ruRU' | 'zhCN' | 'koKR' | 'jaJP' | 'en' | 'ru' | 'zh' | 'ko' | 'ja';
export type Localization = {
    yes: string;
    no: string;
    newChat: string;
    send: string;
    cancel: string;
    thinking: string;
    historyTitle: string;
    historyToday: string;
    historyYesterday: string;
    historyPreviousNDays: string;
    historyJanuary: string;
    historyFebruary: string;
    historyMarch: string;
    historyApril: string;
    historyMay: string;
    historyJune: string;
    historyJuly: string;
    historyAugust: string;
    historySeptember: string;
    historyOctober: string;
    historyNovember: string;
    historyDecember: string;
    historyLastYear: string;
    historyPinned: string;
    messageCopy: string;
    messageEdit: string;
    messageCopiedToClipboard: string;
    messageCopyHTML: string;
    messageCopyMarkdown: string;
    codeCopyButton: string;
    codeEditButton: string;
    threadDeleteTitle: string;
    threadDeleteContent: string;
    threadDeletedSuccess: string;
    threadActionDelete: string;
    threadActionRename: string;
    threadActionPin: string;
    threadActionUnpin: string;
    threadRenameTitle: string;
    threadRenameLabel: string;
    save: string;
    messageLikeTooltip: string;
    messageDislikeTooltip: string;
    messageFeedbackTitle: string;
    messageFeedbackSecondTitle: string;
    messageFeedbackPlaceholder: string;
    messageFeedbackSubmitButton: string;
    messageFeedbackLink: string;
    messageFeedbackText: string;
    maxAttachmentWarning: string;
    maxFileSizeWarning: string;
    invalidFileTypeWarning: string;
    textFieldPlaceholder: string;
    attachmentImageShot: string;
    attachmentImageGallery: string;
    innerRowExpand: string;
    reasonedFor: string;
};
