type LangPack = {
    addChild: string;
    addParent: string;
    addSibling: string;
    removeNode: string;
    focus: string;
    cancelFocus: string;
    moveUp: string;
    moveDown: string;
    link: string;
    chooseNodeToLinkTips: string;
    summary: string;
    fullscreen: string;
    toCenter: string;
    zoomOut: string;
    zoomIn: string;
    viewModeLeft: string;
    viewModeRight: string;
    viewModeSide: string;
    subBranchRounded: string;
    subBranchBezier: string;
    addDescription: string;
    openTaskInfo: string;
    createNewTask: string;
    addImage: string;
    removeImage: string;
    changeBgColor: string;
    addLink: string;
    enterYourLink: string;
    add: string;
    copyLinkToClipboard: string;
    deleteLink: string;
    copiedToClipboard: string;
};
/**
 * @public
 */
export type Locale = 'en' | 'fr' | 'vi';
declare const i18n: Record<Locale, LangPack>;
export default i18n;
