export declare const translation: {
    /**
     * @description copy keys for account exists view
     * @default
     * {
          connect: 'Connect with {{socialOauth}}',
          description: 'It looks like an account already exists using',
          title: 'Account already exists',
          trail_message_email: '. Please log in with your email.',
          trail_message_social: 'through {{socialOauth}}',
        }
     */
    dyn_sandbox_maximum_threshold: {
        title: string;
        description: string;
        button: string;
    };
    dyn_account_exists: {
        connect: string;
        description_email: string;
        description_social: string;
        title: string;
        trail_message_email: string;
        trail_message_social: string;
    };
    /**
     * @description copy keys for active wallet information (address, network, etc)
     * @default
     * {
          testnet_warning: 'A testnet network has been selected. Please only use testnet funds or they will be lost.',
          ordinals_address: 'Ordinals address',
          payment_address: 'Payment address',
          midnight_unshielded_address: 'Unshielded address',
          midnight_dust_address: 'Dust address',
          midnight_shielded_address: 'Shielded address',
          balance: 'Total balance',
          options: {
            copy_ens: 'Copy ENS',
            view_address: 'View address',
            disconnect: 'Disconnect',
            settings: 'Wallet settings',
            export: 'Export private keys',
          },
        }
     */
    dyn_active_wallet_info: {
        testnet_warning: string;
        ordinals_address: string;
        payment_address: string;
        midnight_unshielded_address: string;
        midnight_dust_address: string;
        midnight_shielded_address: string;
        midnight_shielded_balance: string;
        midnight_unshielded_balance: string;
        midnight_dust_generating: string;
        midnight_dust_not_registered: string;
        midnight_dust_syncing: string;
        midnight_register_dust: string;
        midnight_toggle_addresses: string;
        balance: string;
        options: {
            copy_ens: string;
            view_address: string;
            view_addresses: string;
            disconnect: string;
            settings: string;
            export: string;
        };
    };
    /**
     * @description copy keys for wallet details card
     * @default
     * {
          header: 'Wallet Details',
          address: 'Address',
          copy: 'Copy',
          copied: 'Copied!',
       }
     */
    dyn_wallet_details_card: {
        header: string;
        address: string;
        copy: string;
        copied: string;
    };
    /**
     * @description copy keys for add network view
     * @default
     * {
        title: 'Add {{name}} network to your wallet',
        add_button: {
          title: 'Add network',
        },
        cancel_button: {
          title: 'Cancel',
        },
      }
     */
    dyn_add_network_view: {
        title: string;
        description: string;
        add_button: {
            title: string;
        };
        cancel_button: {
            title: string;
        };
    };
    /**
     * @description copy keys for bridge view
     * @default
     * {
          summary_view: {
            connection_succeed: 'Congratulations on connecting both your {{firstBlockchainName}} and {{secondBlockchainName}} wallets',
            title: 'Welcome to {{appName}}',
          },
          welcome_view: {
            button: 'Get started',
            description: 'You’ll need to connect both your {{firstBlockchainName}} and {{secondBlockchainName}} wallets to get started',
            title: 'Connect to {{appName}}',
          },
          widget: {
            address: 'Copy wallet address',
            connect: 'Connect wallet',
            connect_with_network: 'Connect {{blockchainName}} wallet',
            copy: {
              address: 'Copy wallet address',
              ens: 'Copy ENS',
            },
            disconnect: 'Disconnect',
            edit_profile: 'Edit profile',
            wallet_network: '{{networkName}} wallet',
          },
        }
     */
    dyn_bridge: {
        summary_view: {
            connection_succeed: string;
            title: string;
        };
        welcome_view: {
            button: string;
            description: string;
            title: string;
        };
        widget: {
            address: string;
            connect: string;
            connect_with_network: string;
            copy: {
                address: string;
                ens: string;
            };
            disconnect: string;
            edit_profile: string;
            wallet_network: string;
        };
    };
    /**
     * @description copy keys for Dynamic Captcha
     * @default
     * {
        verify_user_subtitle: 'We need to quickly verify you’re human before we proceed.',
        verify_user_title: "Let's verify you're human",
      }
     */
    dyn_captcha: {
        verify_user_subtitle: string;
        verify_user_title: string;
    };
    /**
     * @description copy keys for sanctioned access blocked view
     * @default
     * {
     *  title: 'Access Blocked',
     *  content: 'Logging in is not available to persons in {{jurisdiction}} as you are in a sanctioned jurisdiction.',
     * }
     */
    dyn_access_blocked: {
        title: string;
        content: string;
    };
    /**
     * @description copy keys for chainalysis blocked wallet view
     * @default
     * {
         title: 'Access denied',
       }
     */
    dyn_chainalysis_blocked_wallet: {
        title: string;
    };
    /**
     * @description copy keys for collecting user data
     * @default
     * {
        description: 'We need a bit of information to get started',
        fields: {
          alias: {
            label: 'Alias',
          },
          country: {
            label: 'Country',
          },
          email: {
            label: 'Email',
            validation: 'Email is not valid',
          },
          first_name: {
            label: 'First Name',
          },
          job_title: {
            label: 'Job Title',
          },
          last_name: {
            label: 'Last Name',
          },
          phone_number: {
            label: 'Phone number',
            validation: 'Phone number is not valid',
            too_short: 'Phone number is too short',
          },
          policies_consent: {
            label: 'Policies Consent',
          },
          t_shirt_size: {
            label: 'T-Shirt Size',
          },
          team: {
            label: 'Team',
          },
          username: {
            label: 'Username',
            validation: 'Username is not valid',
          },
        },
        greeting: 'Welcome to {{appName}}',
        log_out_button: 'Log out',
        not_supported_network: {
          description: 'Your wallet is not connected to a supported network. Please update before continuing.',
          error_message: 'This network is not available, please update.',
          title: 'Update Network',
        },
        update_email_tooltip:
        'This email is tied to your wallet so cannot be updated',
        update_phone_number_tooltip:
        'This phone number is tied to your wallet so cannot be updated',
        lock_editing_multiple_verified_fields:
        'You can only edit 1 field at a time that requires verification',
      }
     */
    dyn_collect_user_data: {
        description: string;
        fields: {
            alias: {
                label: string;
            };
            country: {
                label: string;
            };
            email: {
                label: string;
                validation: string;
            };
            first_name: {
                label: string;
            };
            job_title: {
                label: string;
            };
            last_name: {
                label: string;
            };
            phone_number: {
                label: string;
                validation: string;
                too_short: string;
            };
            policies_consent: {
                label: string;
            };
            t_shirt_size: {
                label: string;
            };
            team: {
                label: string;
            };
            username: {
                label: string;
                validation: string;
            };
        };
        greeting: string;
        log_out_button: string;
        not_supported_network: {
            description: string;
            error_message: string;
            title: string;
        };
        update_email_tooltip: string;
        update_phone_number_tooltip: string;
        lock_editing_multiple_verified_fields: string;
    };
    /**
     * @description copy keys for common component text and labels
     * @default
     * {
        aria: {
          collapsed: 'Collapsed',
          expanded: 'Expanded',
        },
      }
     */
    dyn_common: {
        aria: {
            collapsed: string;
            expanded: string;
        };
    };
    /**
     * @description copy keys for create password view
     * @default
     * {
        continue: 'Continue',
        create_input: {
          label: 'Create passcode',
          placeholder: 'Create passcode',
        },
        confirm_input: {
          label: 'Confirm passcode',
          placeholder: 'Confirm passcode',
        },
        current_password_input: {
          label: 'Current passcode',
          placeholder: 'Current passcode',
        },
        description:
          "Choose a strong, unique passcode to ensure your account's security and privacy.",
        errors: {
          invalid_current_password: 'Invalid current passcode',
          error_changing_password: 'Error changing passcode',
          new_password_same_as_old: 'New passcode cannot be the same as the old passcode',
          password_mismatch: 'Passcodes do not match',
          user_closed_view: 'User closed the view',
        },
        intro: {
          continue: 'Set up a passcode',
          description: {
            title: 'Add a passcode to protect your account',
            additional_protection: {
              title: 'Passcode Security',
              description:
                'Add a secure passcode to further prevent un-authrized access to your account.',
            },
            restore_access: {
              title: 'Restore Access',
              description:
                'You will be asked to enter it when signing on to a new device.',
            },
          },
          title: 'Add a Passcode',
        },
        logout: 'Log out',
        title: {
          create: 'Create passcode',
          update: 'Create new passcode',
        },
        update_input: {
          label: 'New passcode',
          placeholder: 'New passcode',
        },
      }
     */
    dyn_create_password: {
        continue: string;
        create_input: {
            label: string;
            placeholder: string;
        };
        confirm_input: {
            label: string;
            placeholder: string;
        };
        current_password_input: {
            label: string;
            placeholder: string;
        };
        description: string;
        errors: {
            invalid_current_password: string;
            error_changing_password: string;
            new_password_same_as_old: string;
            password_mismatch: string;
            user_closed_view: string;
        };
        intro: {
            continue: string;
            description: {
                title: string;
                additional_protection: {
                    title: string;
                    description: string;
                };
                restore_access: {
                    title: string;
                    description: string;
                };
            };
            title: string;
        };
        logout: string;
        title: {
            create: string;
            update: string;
        };
        update_input: {
            label: string;
            placeholder: string;
        };
    };
    /**
     * @description copy keys for creating wallet wallet message
     * @default
     * {
        loading_message: 'Your wallet is being created...',
      }
     */
    dyn_creating_wallet: {
        loading_message: string;
    };
    /**
     * @description copy keys for email verification view after email logging in with magiclink
     * @default
     * {
        description: 'We’ve sent a verification email to',
        note: 'Note: it might take a few seconds to proceed after clicking the link in your email',
        title: 'Confirm your email',
      }
     */
    dyn_email_confirmation: {
        description: string;
        note: string;
        title: string;
    };
    /**
     * @description copy keys for email update view
     * @default
     * {
        current_email: 'Your current email address is',
        label: 'Email address',
        send_verification: 'Send Verification Code',
        title: 'Update email',
      }
    */
    dyn_email_update: {
        current_email: string;
        label: string;
        send_verification: string;
        title: string;
    };
    /**
     * @description copy keys for one-time password verification view after logging in with dynamic email or phone number provider or after kyc verification
     * @default
     * {
        code_not_received: 'Did not receive a code? Check spam or',
        code_sent: 'Code sent',
        description: 'We’ve sent a verification code to',
        log_out_button: 'Log out',
        resend_code: 'Re-send code',
        resend_code_in: 'Re-send code in {{remainingSeconds}}',
        confirm_code: 'Confirm verification code',
        verification_succeeded: 'Verification code confirmed',
        hang_tight: 'Hang tight while we get things ready for you',
  
        email: {
          title: 'Confirm your email',
          complete:
            'Verification complete, the email is now verified to this account.',
        },
        phone_number: {
          title: 'Confirm your phone number',
          edit: 'Edit phone number',
          complete:
            'Verification complete, the phone number is now verified to this account.',
        },
      },
     */
    dyn_otp_verification: {
        code_not_received: string;
        code_sent: string;
        description: string;
        log_out_button: string;
        resend_code: string;
        resend_code_in: string;
        confirm_code: string;
        verification_succeeded: string;
        hang_tight: string;
        email: {
            title: string;
            complete: string;
        };
        phone_number: {
            title: string;
            edit: string;
            complete: string;
        };
    };
    /**
     * @description copy keys for deposit view
     * @default
     * {
        title: 'Deposit',
      }
     */
    dyn_deposit: {
        title: string;
        receive_funds_on: string;
    };
    dyn_exchange_transfer_confirmation: {
        title: string;
        from: string;
        to: string;
        fee: string;
        fee_not_found: string;
        receive: string;
        cost: string;
        cost_no_fee: string;
        terms: string;
        send: string;
        confirm: string;
        cancel: string;
        account: string;
    };
    dyn_deposited_exchange: {
        title: string;
        description: string;
        done: string;
        view: string;
    };
    dyn_exchange_mfa: {
        title: string;
        placeholder: string;
        description: string;
        button: string;
    };
    dyn_exchange_whitelist_warning: {
        title: string;
        description: string;
        step1: {
            kraken: string;
        };
        step2: string;
        step3: string;
        view_instructions: string;
        done: string;
        address: string;
        open: string;
    };
    dyn_fund_from_exchange: {
        title: string;
    };
    dyn_exchange_transfer_errors: {
        title: string;
        mfa_failed: string;
        invalid_currency_description: string;
        invalid_balance: string;
        amount_too_small: string;
        address_not_whitelisted: string;
        unknown: string;
    };
    /**
     * @description copy keys for embedded wallet authenticator choice view
     * @default
     * {
        description:
          'Protect your account and simplify your transaction experience.',
        email: {
          badge: 'Fastest',
          description: ' You will need to renew after {{expiration}} minutes ',
          title: 'Use a one-time code',
        },
        passkey: {
          auth_info: {
            convinience: {
              title: 'Convenient and Fast',
              description:
                'Use Face ID or Touch ID to complete transactions quickly.',
            },
            security: {
              title: 'Increased Security',
              description:
                'Passkeys are encrypted end-to-end on your device or password manager to prevent phishing attempts.',
            },
            add_button: 'Add a passkey',
            start_button: 'Add a passkey',
          },
          no_email_auth_info: {
            convinience: {
              title: 'Simple and Fast',
              description:
                'Works across devices and syncs between devices and browsers.',
            },
            security: {
              title: 'Secured with a bio-metric',
              description: 'Phishing resistant and encrypted.',
            },
            add_button: 'Add passkey',
            start_button: 'Add passkey',
          },
          badge: 'Recommended',
          description:
            'Works across devices & secured with biometric to prevent phishing attempts ',
          title: 'Create new passkey',
          reveal_title: 'Add a passkey',
        },
        skip: 'Not now',
        title: 'Account security',
        need_help_title: 'Problem Signing?',
        need_help_description: 'Select from an option below to complete',
        reveal_title: 'Verification Required',
        reveal_description: 'Choose a verification method.',
      }
     */
    dyn_embedded_authenticator: {
        description: string;
        email: {
            badge: string;
            description: string;
            title: string;
        };
        passkey: {
            auth_info: {
                convinience: {
                    title: string;
                    description: string;
                };
                security: {
                    title: string;
                    description: string;
                };
                add_button: string;
                start_button: string;
            };
            no_email_auth_info: {
                convinience: {
                    title: string;
                    description: string;
                };
                security: {
                    title: string;
                    description: string;
                };
                add_button: string;
                start_button: string;
            };
            badge: string;
            description: string;
            title: string;
            reveal_title: string;
        };
        skip: string;
        title: string;
        need_help_title: string;
        need_help_description: string;
        reveal_title: string;
        reveal_description: string;
    };
    /**
       * @description copy keys for enter password view
       * @default
       * {
          continue_button_label: 'Continue',
          description: 'Please enter your passcode below to continue.',
          error: {
            invalid_password: 'Invalid passcode',
          },
          input: {
            label: 'Passcode',
            placeholder: 'Passcode',
          },
          title: 'Enter passcode',
        }
       */
    dyn_enter_password: {
        title: string;
        description: string;
        label: string;
        placeholder: string;
        button: {
            continue: string;
        };
        error: {
            required: string;
            invalid_password: string;
            failed: string;
        };
    };
    /**
       * @description copy keys for Dynamic Farcaster connect view
       * @default
       * {
          copy_button: 'Copy QR URI',
          scan_title: "Scan this QR code from your mobile app or phone's camera to connect.",
        }
       */
    dyn_farcaster_connect_view: {
        copy_button: string;
        scan_title: string;
    };
    /**
     * @description copy keys for log in view
     * @default
     * dyn_login: {
      connect_wallet: {
        title: 'Connect',
      },
      email_form: {
        email_field: {
          label: 'Enter your email',
        },
        submit_button: {
          label: 'Continue',
        },
      },
      email_or_phone: {
        use_email: 'Use email',
        use_phone: 'Use phone',
        prefer_email: 'Prefer email sign up?',
        prefer_phone: 'Prefer phone number sign up?',
      },
      helper: {
        all_wallet_list: 'Get your first wallet',
        email_form: {
          invalid_email: 'Invalid or incorrect email. Did you mistype it?',
        },
        pending_connect: {
          title: 'Connecting a wallet',
        },
        pending_signature: {
          title: 'Signing a wallet',
        },
        pending_signature_without_back_button: {
          title: 'Signing a wallet',
        },
        phone_number_form: {
          invalid_phone: 'Invalid or incorrect number. Did you mistype it?',
          invalid_sms_verification:
            'The code you entered is incorrect. Please try again.',
          too_many_sms_verification_attempts:
            'Too many verification attempts, please try again later.',
        },
        qr_code: {
          title: 'Connecting a wallet',
        },
        wallet_only: 'Get your first wallet',
      },
      passkey: {
        button_label: 'Sign in with Passkey',
      },
      qr_code: {
        title: 'Connect',
      },
      separators: {
        default: 'OR',
      },
      sign_wallet: {
        title: 'Sign',
      },
      select_wallet_in_wallet_group: {
        title: 'Select',
      },
      social: {
        button_label: 'Continue with {{provider}}',
        overlay_title: 'Choose a social account',
      },
      title: {
        all: 'Log in or sign up',
        all_wallet_list: 'Select your wallet',
        wallet_only: 'Select your wallet',
      },
      wallet_group: {
        title: 'Select Chain',
      },
      wallet_list: {
        button_only: 'Continue with a wallet',
      },
      mobile_wallet_redirect: {
        backup_title: 'Connect mobile app',
        prompt: "Tap 'Open' to continue",
        get_app_prompt: 'Get',
        open_prompt: 'Open',
        redirect_fail_message:
          "If the app doesn't open, you might need to download the {{walletName}} Wallet app.",
        app_store: 'App Store',
        play_store: 'Play Store',
      },
      wrong_social_account: {
        retry_button: 'Try again',
        retry_title: 'Please connect with: ',
        subtitle:
          'You must connect with the same account you originally signed in with.',
        title: 'Whoops. Wrong Account',
      },
    },
     */
    dyn_login: {
        connect_wallet: {
            title: string;
        };
        email_form: {
            email_field: {
                label: string;
            };
            submit_button: {
                label: string;
            };
        };
        email_or_phone: {
            use_email: string;
            use_phone: string;
            prefer_email: string;
            prefer_phone: string;
        };
        helper: {
            all_wallet_list: string;
            email_form: {
                invalid_email: string;
            };
            pending_connect: {
                title: string;
            };
            pending_signature: {
                title: string;
            };
            pending_signature_without_back_button: {
                title: string;
            };
            phone_number_form: {
                invalid_phone: string;
                invalid_sms_verification: string;
                too_many_sms_verification_attempts: string;
            };
            qr_code: {
                title: string;
            };
            wallet_only: string;
        };
        passkey: {
            button_label: string;
        };
        qr_code: {
            title: string;
        };
        separators: {
            default: string;
        };
        sign_wallet: {
            title: string;
        };
        select_wallet_in_wallet_group: {
            title: string;
        };
        social: {
            button_label: string;
            overlay_title: string;
        };
        title: {
            all: string;
            all_wallet_list: string;
            wallet_only: string;
        };
        wallet_group: {
            title: string;
        };
        wallet_list: {
            button_only: string;
        };
        mobile_wallet_redirect: {
            backup_title: string;
            prompt: string;
            get_app_prompt: string;
            open_prompt: string;
            redirect_fail_message: string;
            app_store: string;
            play_store: string;
        };
        wrong_social_account: {
            retry_button: string;
            retry_title: string;
            subtitle: string;
            title: string;
        };
    };
    /**
     * @description copy keys for Dynamic manage passkeys view which are used inside dynamic widget
     * @default
     * {
        title: 'My passkeys',
        passkey_from: 'from',
        passkey_providers: {
          android: 'Android Phone',
          brave: 'Brave Browser',
          chrome: 'Google Chrome',
          edge: 'Microsoft Edge',
          firefox: 'Firefox',
          iPhone: 'iPhone',
          opera: 'Opera Browser',
          safari: 'Safari Browser',
        },
        passkey_rename: 'Rename',
        passkey_delete: 'Delete',
        recovery_button: 'Set up new passkey',
      }
     */
    dyn_manage_passkeys: {
        title: string;
        passkey_from: string;
        passkey_providers: {
            android: string;
            brave: string;
            chrome: string;
            edge: string;
            firefox: string;
            iPhone: string;
            opera: string;
            safari: string;
            passkey: string;
        };
        passkey_rename: string;
        passkey_delete: string;
        recovery_button: string;
    };
    /**
     * @description copy keys for Dynamic rename passkey view
     * @default
     * {
      error: Whoops! There was an error updating your passkey
      input_label: 'Passkey name',
      save: 'Save',
      title: 'Rename your passkey',
      not_found: 'No passkeys found',
     }
     */
    dyn_rename_passkeys: {
        error: string;
        input_label: string;
        save: string;
        title: string;
        not_found: string;
    };
    /**
     * @description export keys for Dynamic embedded reveal view
     * @default
     * {
        title: 'Export wallet',
        agreement_title: 'Agree to continue',
        private_key_title: 'Private key',
        recovery_phrase_title: 'Secret recovery phrase',
        description:
          'Your wallet is non-custodial, meaning you are always in control of it.',
        statement_1: {
          title: 'Do not publicly share your {{keyType}}',
          description: 'Your {{keyType}} controls your account and assets.',
        },
        checkbox_label:
          'I am responsible for safeguarding and using my wallet key information.',
        reveal_description: 'Make sure to safely back up this information',
        reveal_button_label: 'Reveal',
        copy_button_label: 'Copy to clipboard',
        done_button_label: "I'm Done",
        aa_warning: {
           title: 'Your assets are not in this wallet.',
           subtitle:
           'This is a smart-contract wallet. You will not see your balance if you import this to an external service. Please send your assets to your preferred external wallet first to access your funds:',
           button: 'here',
        },
        unlink: 'Unlink wallet info',
      },
     */
    dyn_embedded_reveal: {
        title: string;
        agreement_title: string;
        prompt_for_export_title: string;
        private_key_title: string;
        recovery_phrase_title: string;
        badge_label: string;
        prompt_for_export_description: string;
        statement_1: {
            title: string;
            description: string;
        };
        statement_2: {
            title: string;
        };
        checkbox_label: string;
        reveal_description: string;
        skip_button_label: string;
        reveal_button_label: string;
        backup_button_label: string;
        copy_button_label: string;
        done_button_label: string;
        aa_warning: {
            title: string;
            subtitle: string;
            button: string;
        };
        unlink: string;
    };
    /**
     * @description export keys for Dynamic embedded delete view
     * @default
     *
     */
    dyn_embedded_delete: {
        title: string;
        description_1: string;
        description_2: string;
        acknowledgement: string;
        cancel_button: string;
        action_button: string;
    };
    /**
     * @description Settings for Dynamic settings view which are used inside dynamic widget
     * @default
     * {
      global_connectivity_section: {
        title: 'Global Connectivity',
        connected_apps_button: 'Connected Apps',
      },
      export_section: {
        backup_button: 'Backup Key Share',
        backup_button_v2: 'Backup',
        export_button: 'Export Private Key',
        export_recovery_button: 'Export & Recovery',
        private_key_button: 'Private key',
        srp_button: 'Recovery phrase',
        title: 'Export & Backup',
      },
      identity_section: {
        title: 'Recovery',
        add_email_button: 'Add an email',
      },
      tags: { recommended: 'Recommended' },
      security_section: {
        email_auth_button: 'One time code',
        passkey_button: 'Passkeys',
        password_button: 'Passcode',
        mfa_button: 'Authenticator App',
        title: '2 factor authentication',
      },
      mfa_section: {
        title: 'MFA',
        passkey_button: 'Passkeys',
        totp_button: 'TOTP',
        passcode_button: 'Add Passcode',
      },
      wallet_security_section: {
        title: 'Wallet Security',
        passkey_button: 'Passkeys',
      },
      title: 'Settings',
      button_logout: 'Log out',
      empty_screen: {
        title: 'Nothing to see here yet!',
      },
      delete_account: {
        title: 'Delete My Account',
        description:
          'Deleting your account will permanently remove all data, including wallet details and linked smart contract wallets. This action cannot be undone.',
        backup_confirmation_embedded:
          "I confirm I've backed up my wallet keys. If I proceed, a new wallet will be created. Any wallets or assets not backed up will be lost permanently.",
        backup_confirmation_no_embedded:
          'I confirm that all of my information will be deleted. If I return, a new user profile will be created. These changes cannot be undone.',
        type_delete: 'Enter DELETE in the box below to confirm this action.',
        cancel: 'Cancel',
        confirm: 'Delete Account',
        deleting: 'Deleting...',
        type_delete_label: 'Type to confirm',
      },
      session_management: {
        title: 'Security Settings',
        session_management_button: 'Session Management',
      },
    }
     */
    dyn_settings: {
        account_permissions_section: {
            title: string;
            delegated_wallets_button: string;
        };
        global_connectivity_section: {
            title: string;
            connected_apps_button: string;
        };
        export_section: {
            backup_button: string;
            backup_button_v2: string;
            export_button: string;
            export_recovery_button: string;
            private_key_button: string;
            srp_button: string;
            title: string;
        };
        identity_section: {
            title: string;
            add_email_button: string;
        };
        tags: {
            recommended: string;
        };
        security_section: {
            email_auth_button: string;
            passkey_button: string;
            password_button: string;
            mfa_button: string;
            title: string;
        };
        mfa_section: {
            title: string;
            passkey_button: string;
            totp_button: string;
            passcode_button: string;
        };
        wallet_security_section: {
            title: string;
            passkey_button: string;
        };
        title: string;
        button_logout: string;
        account_security: {
            title: string;
            password: {
                title: string;
                button: string;
                set_button: string;
                reset_button: string;
            };
        };
        empty_screen: {
            title: string;
        };
        delete_account: {
            title: string;
            description: string;
            backup_confirmation_embedded: string;
            backup_confirmation_no_embedded: string;
            type_delete: string;
            cancel: string;
            confirm: string;
            deleting: string;
            type_delete_label: string;
        };
        session_management: {
            title: string;
            session_management_button: string;
        };
    };
    /**
     * @description copy keys for global wallet view
     * @default
     *  {
      connect_to_apps: 'Connect to apps',
      scan_qr_code: 'Scan QR Code',
      or: 'OR',
      walletconnect_uri: 'WalletConnect URI',
      the_dapp: 'the dApp',
      this_app: 'this app',
      confirm: {
        title: 'Confirm Connection',
        description: 'Are you sure you want to connect to {{name}}?',
        cancel_button: 'Cancel',
        connect_button: 'Connect',
      },
      banner: {
        warning: 'There was an error connecting to {{name}}.',
        success: 'Successfully connected to {{name}}.',
        already_connected: 'You are already connected to {{name}}.',
        expired:
          'The link you entered expired, please get a new URI from the app.',
        bad_input:
          'Invalid URI. Please check below for how to find the valid URI.',
      },
      help: {
        title: 'How do I find the URI code?',
        step: {
          1: '1. Go to the website you want to connect to',
          2: '2. Locate the "Connect" or "Login" button',
          3: '3. Open WalletConnect from the list',
        },
        learn_more: 'Learn more about global wallets',
      },
      malicious_site: {
        certain: {
          title: 'Malicious app detected!',
          subtitle_header: 'Risk of losing funds',
          subtitle_text:
            'The site is known to exploit and or take assets from connected wallets.',
          go_back: 'Cancel',
          proceed: 'Proceed',
        },
        unknown: {
          title: 'Site verification did not run.',
          subtitle_header: 'Double check the app',
          subtitle_text:
            'We were unable to verify the vailidity of the app at this time.',
          go_back: 'Cancel',
          proceed: 'Proceed',
        },
      },
       connected_apps: {
        title: 'Connected Apps',
        no_connections: 'No connected apps',
      },
    },
     */
    global_wallet: {
        connect_to_apps: string;
        scan_qr_code: string;
        or: string;
        walletconnect_uri: string;
        the_dapp: string;
        this_app: string;
        confirm: {
            title: string;
            description: string;
            cancel_button: string;
            connect_button: string;
        };
        banner: {
            warning: string;
            success: string;
            already_connected: string;
            expired: string;
            bad_input: string;
        };
        help: {
            title: string;
            step: {
                1: string;
                2: string;
                3: string;
            };
            learn_more: string;
        };
        malicious_site: {
            certain: {
                title: string;
                subtitle_header: string;
                subtitle_text: string;
                go_back: string;
                proceed: string;
            };
            unknown: {
                title: string;
                subtitle_header: string;
                subtitle_text: string;
                go_back: string;
                proceed: string;
            };
        };
        connected_apps: {
            title: string;
            subtitle: string;
            success: string;
            delegate_wallets: {
                title: string;
                button: string;
            };
        };
    };
    /**
     * @description copy keys for wallets delegated view
     * @default
     * {
     *   title: 'Wallets Delegated',
     *   subtitle: 'Delegated wallets allow you to interact with your wallet on other platforms.',
     * },
     */
    wallets_delegated: {
        title: string;
        subtitle: string;
    };
    /**
     * @description copy keys for totp mfa management view
     * @default
     *  {
          title: 'Authenticator App',
          add_mfa_button: 'Authenticator App',
          no_devices: 'No authenticator apps configured',
          generate_backup_codes_button: 'Get new backup codes',
        },
     */
    dyn_manage_mfa: {
        title: string;
        add_mfa_button: string;
        no_devices: string;
        generate_backup_codes_button: string;
        delete: string;
    };
    /**
     * @description copy keys for passkeys mfa management view
     * @default
     *  {
     *    title: 'Passkeys',
     *    add_passkey_button: 'Passkey',
     *    no_passkeys: 'No passkeys set up yet',
     *  },
     */
    dyn_manage_passkeys_mfa: {
        title: string;
        add_passkey_button: string;
        no_passkeys: string;
    };
    /**
     * @description copy keys for waas backup unsuccessful view
     * @default
     * {
        title: 'Backup Unsuccessful',
        description: "We weren't able to back up your wallet. To keep things secure, we'll need to refresh and generate a new wallet for you.",
        try_again: 'Try Again',
      },
     */
    dyn_waas: {
        backup_unsuccessful: {
            title: string;
            description: string;
            try_again: string;
            log_out: string;
        };
        backup_info: {
            title: string;
            subtitle: string;
            description: string;
            warning: string;
        };
        backup: {
            title: string;
            subtitle: string;
            checkbox_label: string;
            continue_button: string;
            cloud_backup_title: string;
            cloud_backup_subtitle: string;
            cloud_backup_header: string;
            backup_to_google_drive: string;
            backup_to_icloud: string;
            icloud_ready_title: string;
            icloud_ready_subtitle: string;
            sign_in_with_icloud: string;
            continue_backup: string;
            progress_title: string;
            progress_initializing: string;
            progress_subtitle: string;
            progress_complete: string;
            google_drive_title: string;
            google_drive_description: string;
            google_drive: string;
            backed_up: string;
            google_drive_subtitle: string;
            back_up: string;
            error: string;
            download_title: string;
            download_subtitle: string;
            download_key_share: string;
            downloading: string;
            download_complete: string;
            download_error: string;
            success_title: string;
            success_description_one: string;
            success_description_other: string;
            done: string;
            error_title: string;
            error_try_again: string;
            gdrive_grant_access_title: string;
            gdrive_grant_access_subtitle: string;
            gdrive_grant_access_cta: string;
            gdrive_grant_access_cancel: string;
            gdrive_grant_access_error: string;
            gdrive_post_flight_title: string;
        };
    };
    /**
     * @description copy keys for mfa views
     * @default
     * {
        choose_device_view: {
          title: 'Secure your account',
          select_options: 'Protect your account by adding multi-factor authentication',
          authenticator_app: 'Authenticator app',
          authenticator_app_description:
            'Use your preferred authenticator app such as Authy, Google Authenticator, etc.',
          passkey: 'Passkey',
          passkey_description: 'Works across devices & secured with biometrics to prevent phishing attempts.',
          backup_code: 'Backup code',
          backup_code_description:
            'Enter one of your saved backup codes to authenticate.',
          choose_another_method:  'Choose another method',
          choose_another_method_description: 'Use one of the methods below:',
        logout: 'Log out',
        },
        display_backup_codes_view: {
          title: 'Back up your codes',
          body: 'Backup codes help recover your account if you lose access to your device. Each code can be used only 1 time.',
          warning: 'You won’t be able to see these again',
          copy_all: 'Copy all',
          download: 'Download',
          checkbox: 'I have safely stored a copy of my backup codes',
          complete: 'Complete',
        },
        otp_verification_view: {
          title: 'Confirm verification code',
          body: 'Enter the verification code generated by your authenticator app',
          error: 'Invalid code. Please try again.',
          rate_limit_error: 'Too many attempts, please try again later.',
          choose_another_method: 'Use a different method',
          logout: 'Log out',
        },
        secure_device_view: {
          title: 'Secure your account',
          body: 'Setup a new sign-in method in your authenticator app',
          continue: 'Continue',
          helper: {
            button: "Can't scan QR Code?",
            title: 'Troubles with scanning?',
            step1: {
              title: 'Open your Authenticator App',
              description: 'You will set up a new sign-in method',
            },
            step2: {
              title: 'Enter the key provided below',
              description: 'Make sure time-based or one-time password is enabled.',
            },
            uri: {
              title: 'Copy the full URI',
              description:
                'This only works if your authenticator app supports TOTP URIs',
            },
          },
          logout: 'Log out',
        },
        recovery_view: {
          title: 'Enter your backup code',
          body: 'Your backup code is one of the 10 codes you received when you first enrolled in multi-factor authentication',
          input_label: 'Enter back up code',
          button_label: 'Continue',
          get_help: {
            description: 'Missing your back up codes?',
            button_label: 'Get Help',
          },
          helper: {
            title: 'Mfa Recovery Help',
          },
        },
        setup_passkey_view: {
          title: 'Set up your passkey',
          description: 'Passkeys help safeguard your account and make access easier. Finish set up in just a few seconds.',
        },
        confirm_passkey_view: {
          title: 'Confirm your passkey',
          description: 'Use your saved passkey to verify your identity and continue securely.',
          error: {
            not_allowed: 'The passkey request timed out or was rejected.',
          },
        },
      },
     */
    dyn_mfa: {
        choose_device_view: {
            title: string;
            select_options: string;
            authenticator_app: string;
            authenticator_app_description: string;
            passkey: string;
            passkey_description: string;
            backup_code: string;
            backup_code_description: string;
            choose_another_method: string;
            choose_another_method_description: string;
            logout: string;
        };
        display_backup_codes_view: {
            title: string;
            body: string;
            warning: string;
            copy_all: string;
            download: string;
            checkbox: string;
            complete: string;
        };
        otp_verification_view: {
            title: string;
            body: string;
            error: string;
            rate_limit_error: string;
            choose_another_method: string;
            logout: string;
        };
        secure_device_view: {
            title: string;
            body: string;
            continue: string;
            helper: {
                button: string;
                title: string;
                step1: {
                    title: string;
                    description: string;
                };
                step2: {
                    title: string;
                    description: string;
                };
                uri: {
                    title: string;
                    description: string;
                };
            };
            logout: string;
        };
        recovery_view: {
            title: string;
            body: string;
            input_label: string;
            button_label: string;
            get_help: {
                description: string;
                button_label: string;
            };
            helper: {
                title: string;
            };
        };
        setup_passkey_view: {
            title: string;
            description: string;
        };
        confirm_passkey_view: {
            title: string;
            description: string;
            error: {
                not_allowed: string;
            };
        };
    };
    /**
     * @description copy keys for merge user accounts view
     * @default
     * {
        confirm_button: 'Merge accounts',
        errors: {
          merge_error: 'Something went wrong, please try again.',
        },
        wallet: {
          content: 'This wallet is associated to another account. Would you like to merge accounts?',
          title: 'Wallet already in use',
        },
      }
     */
    dyn_merge_user_accounts: {
        confirm_button: string;
        errors: {
            merge_error: string;
        };
        wallet: {
            content: string;
            title: string;
        };
    };
    /**
     * @description copy keys for merge user accounts conflicts view
     * @default
     * {
        confirm_button: 'Confirm & Merge',
        description:
          'You have some conflicting information. Please select your preferences',
        errors: {
          merge_error: 'Something went wrong, please try again.',
        },
        title: 'Confirm your preferences',
      }
     */
    dyn_merge_user_accounts_conflicts: {
        confirm_button: string;
        description: string;
        errors: {
            merge_error: string;
        };
        title: string;
    };
    /**
     * @description copy keys for merge user accounts view when using email associated to a different account
     * @default
     * {
        cancel_button: "No, I'll use a different email",
        confirm_button: 'Yes, link to existing account',
        errors: {
          merge_error: 'Something went wrong, please try again.',
        },
        existing_account: 'An account already exists that uses',
        existing_account_trail: 'email.',
        title: 'Would you like to link this wallet to this existing account?',
      }
     */
    dyn_merge_user_accounts_with_same_email: {
        cancel_button: string;
        confirm_button: string;
        errors: {
            merge_error: string;
        };
        existing_account: string;
        existing_account_trail: string;
        title: string;
    };
    /**
     * @description copy key for Dynamic need help footer section
     * @default
     * {
        info: 'Problem Signing?',
        contact_support: 'Contact support',
        divider: 'or',
        help_button: 'go here.',
      }
     */
    dyn_need_help_section: {
        info: {
            v1: string;
            not_v1: string;
        };
        contact_support: string;
        divider: string;
        help_button: string;
        visit_platform: string;
    };
    /**
     * @description copy keys for network not supported view
     * @default
     * {
        button: 'Switch Network',
        subtitle: 'Your wallet is not connected to a supported network. Please update before continuing.',
        title: 'Update Network',
        warning_message: 'This network is not available, please update.',
      }
     */
    dyn_network_not_supported: {
        button: string;
        subtitle: string;
        title: string;
        warning_message: string;
        wallet: string;
    };
    /**
     * @description copy keys for network not supported view for manual switch
     * @default
     * {
        subtitle_network_defined_metamaskstarknet:
          'To continue, please update the network in your wallet to {{network}} by visiting the Starknet Snap companion app',
        subtitle_network_defined_metamaskstarknet_companion_app: 'companion app',
        subtitle_network_defined: 'To continue, please update the network in your wallet to {{network}}',
        subtitle_no_network_defined: 'Your wallet does not support switching networks from this app. Switch networks directly in your wallet.',
        title: 'Update your Network',
        warning_message: 'This network is not available, please update.',
      }
     */
    dyn_network_not_supported_manual_switch: {
        subtitle_network_defined_metamaskstarknet: string;
        subtitle_network_defined_metamaskstarknet_companion_app: string;
        subtitle_network_defined: string;
        subtitle_no_network_defined: string;
        title: string;
        warning_message: string;
    };
    /**
     * @description copy keys for no access view
     * @default
     * {
        chainalysis: {
          button_text: 'Try another method',
          description: 'This wallet has been correlated to illicit activity and cannot access this site.',
          social_media_link_text: 'Why am I seeing this message?',
          social_media_link_url: 'https://docs.dynamic.xyz/docs',
          title: 'This address seems corrupted.',
        },
        default: {
          button_text: 'Try another method',
          description: "You are not currently on the allow list.",
          title: 'Access denied',
        },
        gate: {
          button_text: 'Try a different wallet',
          description: 'A NFT or a token is required to access this site.',
          title: 'You cannot access the site',
        },
        not_in_the_list_image_alt: 'user is not in the list',
        title: "You don't have access",
      }
     */
    dyn_no_access: {
        chainalysis: {
            button_text: string;
            description: string;
            social_media_link_text: string;
            social_media_link_url: string;
            title: string;
        };
        default: {
            button_text: string;
            description: string;
            title: string;
        };
        gate: {
            button_text: string;
            description: string;
            title: string;
        };
        not_in_the_list_image_alt: string;
        title: string;
    };
    /**
     * @description copy keys for email OTP verification for magiclink
     * @default
     * {
        banner_text: 'Sign in to access your email based wallet',
      }
     */
    dyn_magic_verification: {
        banner_text: string;
    };
    /**
     * @description copy key for passkey created success banner
     * @default
     * {
        text: 'A new passkey has been created',
      }
     */
    dyn_passkey_success: {
        created: string;
        edited: string;
    };
    /**
     * @description copy keys for passkey intro view
     * @default
     * {
        button: 'Set up a passkey',
        button_logout: 'Log out',
        button_skip: 'Skip for now',
        disabled: 'Passkeys are not available on this device or browser. Please open on Chrome, Safari, or Brave to continue',
        helper: {
          section_1: {
            description: 'Passkeys are a standard built by Apple, Google and others, and eliminates the use of passwords.',
            title: 'Built by Apple and Google',
          },
          section_2: {
            description: 'Passkeys are stored on your phone and are not shared with anyone.',
            title: 'Secure and Private',
          },
          title: "What's Passkey",
          tooltip: 'Need some help?',
        },
        sms_auth: {
          title: 'Finish set up',
          description:
            'Add a security method to finish your profile and complete transactions',
        },
        subtitle: 'Passkeys are stored natively to your device with a biometric and can only be accessed by you.',
        title: 'Secure your wallet',
      }
     */
    dyn_passkey_intro: {
        button: string;
        button_logout: string;
        button_skip: string;
        disabled: string;
        helper: {
            section_1: {
                description: string;
                title: string;
            };
            section_2: {
                description: string;
                title: string;
            };
            title: string;
            tooltip: string;
        };
        sms_auth: {
            title: string;
            description: string;
        };
        subtitle: string;
        title: string;
    };
    /**
     * @description copy keys for passkey new domain detected modal
     * @default
     * {
     title: 'New domain detected',
     description: 'To complete your transaction select a signing method',
     actions: {
     passkey: {
     title: 'Add new passkey',
     subtitle: 'Does not expire. Works across devices & secured with biometric.',
     },
     emailAuth: {
     title: 'Use a one-time code',
     subtitle: 'Allows you to transact for 30 min',
     },
     badges: {
     recommended: 'Recommended',
     fastest: 'Fastest',
     },
     },
     }
     */
    dyn_passkey_new_domain_detected: {
        title: string;
        description: string;
        actions: {
            passkey: {
                title: string;
                subtitle: string;
            };
            emailAuth: {
                title: string;
                subtitle: string;
            };
            badges: {
                recommended: string;
                fastest: string;
            };
        };
    };
    /**
     * @description copy keys for passkeys recovery flow
     * @default
     * {
        add_email: {
          description:
            'Don’t get locked out if you delete your passkey or lose your device.',
          input_label: 'Enter your email',
          title: 'Add a recovery email',
          confirm_button: 'Confirm with a passkey',
          skip_button: 'Skip for now',
          success_message: 'Recovery email added!',
        },
        code: {
            description: 'A verification code has been sent to {{email}}',
            input_label: 'Enter your code here...',
            title: 'Verification code sent',
          resend: {
              button: 'Resend code',
              text: "Didn't receive a code?",
          },
        },
        complete: {
          complete_button: 'Create a passkey',
          description: 'Secure your wallet by adding a new passkey.',
          title: 'Create a new passkey',
        },
        start: {
          description:
            'To complete this process, ensure you are using the same device/browser.',
          start_button: 'Send me an email',
          title: 'Initiate Request',
        },
      }
     */
    dyn_passkey_recovery: {
        add_email: {
            description: string;
            input_label: string;
            title: string;
            confirm_button: string;
            skip_button: string;
            success_message: string;
        };
        code: {
            description: string;
            input_label: string;
            title: string;
            resend: {
                button: string;
                text: string;
            };
        };
        complete: {
            complete_button: string;
            description: string;
            title: string;
        };
        start: {
            description: string;
            start_button: string;
            title: string;
        };
    };
    /**
     * @description copy keys for Dynamic pending wallet connection
     * @default
     * {
        mobile: 'Click connect in your mobile wallet',
        computer: 'Click connect in your wallet popup',
      }
     */
    dyn_pending_connection: {
        title: string;
        mobile: string;
        computer: string;
    };
    /**
       * @description copy keys for Dynamic pending signature, we have overrides for phantom ledger which does not support message signing.
       * @default
       * {
          click_to_sign: 'Click to Sign',
          link_wallet_message: 'Sign the message in your wallet to approve linking this wallet to your account',
          note: 'Note: ',
          phantom_ledger_sign: "Click sign in your wallet to confirm you own this wallet (this doesn't cost gas).",
          phantom_ledger_warning: "Ledger with Phantom doesn't support message signing. When logging in, a small fee (which should not apply) may appear. See below to learn more.",
          regular_sign_description: 'Click sign-in in your wallet to confirm you own this wallet.',
    }
       */
    dyn_pending_signature: {
        click_to_sign: string;
        link_wallet_message: string;
        note: string;
        phantom_ledger_sign: string;
        phantom_ledger_warning: string;
        regular_sign_description: string;
    };
    /**
       * @description copy keys for Dynamic QR code Wallet Connection Pop-Up
       * @default
       * {
          copy_button: 'Copy QR URI',
          get_extension_button: 'Get extension',
          open_button: 'Open App',
          scan_title: "Scan this QR code from your mobile {{app}} or phone's camera to connect.",
          wallet_not_installed: {
            browser_install: 'Install {{browser}} extension',
            install: 'Install {{wallet}} extension to connect',
            refresh: 'Refresh the page once installed',
            select: 'Select from your preferred options below:',
          },
        }
       */
    dyn_qr_code: {
        copy_button: string;
        get_extension_button: string;
        open_button: string;
        scan_title: string;
        wallet_not_installed: {
            browser_install: string;
            install: string;
            refresh: string;
            select: string;
        };
    };
    /**
       * @description copy keys for Dynamic wallet locked/disconnected
       * @default
       * {
          connect_continue: 'Connect your wallet to continue',
          title: 'Welcome back',
          subtitle: "We couldn't connect to your wallet. Click connect to retry the connection ",
          connect: 'Connect wallet',
          logout: 'Log out',
        }
       */
    dyn_wallet_locked: {
        connect_continue: string;
        title: string;
        subtitle: string;
        connect: string;
        logout: string;
    };
    /**
     * @description copy keys for passkeys creation flow for existent embedded wallets
     * @default
     * {
        code: {
          action_based_description: 'To {{action}} verify account.',
          description: 'A secure code has been sent to {{email}}.',
          input_label: 'Enter your code here...',
          title: 'Verification code sent',
          resend: {
            button: 'Resend code',
            text: "Didn't receive a code?",
          },
          complete_transaction_action: 'complete transaction',
          sign_message_action: 'sign this message',
        },
        complete: {
          complete_button: 'Create a passkey',
          description:
            'Passkeys are stored natively to your device with a biometric and can only be accessed by you.',
          title: 'Secure your account',
        },
        start: {
          description:
            'A one-time security code will be sent to the email on file. It will expire in 15 minutes.',
          start_button: 'Send me an email',
          title: 'Send Email Code',
        },
      }
     */
    dyn_passkey_secure_modal: {
        code: {
            action_based_description: string;
            description: string;
            input_label: string;
            title: string;
            resend: {
                button: string;
                text: string;
            };
            complete_transaction_action: string;
            sign_message_action: string;
        };
        complete: {
            complete_button: string;
            description: string;
            title: string;
        };
        start: {
            description: string;
            start_button: string;
            title: string;
        };
    };
    /**
     * @description copy keys for save password view
     * @default
     * {
        badge_text: 'Important!',
        checkbox_label: 'I have safely stored a copy of my passcode.',
        continue: 'Continue',
        copy_button: {
          copy: 'Copy',
          copied: 'Copied',
        },
        description: 'You must retain a copy of this passcode.',
        download_button: 'Download',
        logout: 'Log out',
        password_input: {
          label: 'Passcode',
          placeholder: 'Passcode',
        },
        title: 'Save passcode',
        warning:
          'If you lose your passcode, you cannot recover access to your account.',
      }
     */
    dyn_save_password: {
        badge_text: string;
        checkbox_label: string;
        continue: string;
        copy_button: {
            copy: string;
            copied: string;
        };
        description: string;
        download_button: string;
        logout: string;
        password_input: {
            label: string;
            placeholder: string;
        };
        title: string;
        warning: string;
    };
    /**
     * @description copy keys for setup password flow
     * @default
     * {
          terms: {
            title: 'Set up password',
            description: 'Before setting up a password, please acknowledge the following:',
            checkbox_1: 'I understand that if I lose my password, I will permanently lose access to my wallet and all assets.',
            checkbox_2: 'I understand that Dynamic support cannot recover my password or access my wallet.',
            checkbox_3: 'I understand that this password is only for this application and cannot be used elsewhere.',
          },
          enter: {
            title: 'Create password',
            description: 'Set a strong password to protect your wallet.',
            label: 'Password',
            placeholder: 'Enter password',
            requirement_length: '8-70 characters',
            requirement_uppercase: '1 uppercase letter',
            requirement_lowercase: '1 lowercase letter',
            requirement_number: '1 number',
            requirement_symbol: '1 special character',
          },
          confirm: {
            title: 'Confirm password',
            description: 'Re-enter your password to confirm.',
            label: 'Confirm password',
            placeholder: 'Re-enter password',
            match: 'Passwords match',
            mismatch: 'Passwords do not match',
          },
          knowledge_check: {
            title: 'Knowledge check',
            question: 'What happens if you lose your password?',
            option_a: 'I can reset it through email',
            option_b: 'Support can help me recover access',
            option_c: 'I will permanently lose access to my wallet',
            error: 'Incorrect. If you lose your password, you will permanently lose access to your wallet and all assets.',
          },
          success: {
            title: 'Password created successfully!',
            description: 'All set! You have successfully created a password.',
          },
          button: {
            continue: 'Continue',
            confirm: 'Confirm',
            done: 'Done',
          },
        }
     */
    dyn_setup_password: {
        terms: {
            title: string;
            description: string;
            checkbox_1: string;
            checkbox_2: string;
            checkbox_3: string;
        };
        enter: {
            title: string;
            description: string;
            label: string;
            placeholder: string;
            requirement_length: string;
            requirement_uppercase: string;
            requirement_lowercase: string;
            requirement_number: string;
            requirement_symbol: string;
        };
        confirm: {
            title: string;
            description: string;
            label: string;
            placeholder: string;
            match: string;
            mismatch: string;
            error: {
                failed: string;
            };
        };
        knowledge_check: {
            title: string;
            description: string;
            question: string;
            option_a: string;
            option_b: string;
            option_c: string;
            error: string;
            review_terms: string;
        };
        success: {
            title: string;
            description: string;
        };
        button: {
            continue: string;
            confirm: string;
            done: string;
        };
    };
    dyn_reset_password: {
        current: {
            title: string;
            description: string;
            label: string;
            placeholder: string;
            error: {
                required: string;
                invalid_password: string;
                failed: string;
            };
        };
        enter: {
            title: string;
            description: string;
            same_password_error: string;
        };
        confirm: {
            title: string;
            description: string;
            acknowledgment: string;
            error: {
                failed: string;
            };
        };
        success: {
            title: string;
            description: string;
        };
    };
    /**
     * @description copy keys for unlock wallet view
     * @default
     * {
          title: 'Enter Password',
            description: 'Enter your password to continue with this action. The wallet will be unlocked for the duration of this session.',
          button: {
            continue: 'Continue'
          }
        }
     */
    dyn_unlock_wallet: {
        title: string;
        description: string;
        button: {
            continue: string;
        };
    };
    /**
     * @description copy keys for secure pregenerated embedded wallet
     * @default
     * {
        description: 'Make transactions simpler and more secure.',
        action: 'Get started'
     }
     */
    dyn_secure_pregenerated_wallet: {
        description: string;
        action: string;
    };
    dyn_duplicate_wallet: {
        title: string;
        description: string;
        return: string;
    };
    dyn_secondary_wallet: {
        title: string;
        copy_address: string;
        view_address: string;
        copy_ens: string;
        view_ens: string;
        unlink: string;
        switch_wallet: string;
        unlink_from_account: string;
        disconnect_from_account: string;
        export: string;
        connect_new: string;
        link_new: string;
    };
    /**
     * @description copy keys for send transaction flow views
     * @default
     * {
        confirmation: {
          cancel_button: 'Cancel',
          confirm_button: 'Confirm',
          data: {
            amount: 'Amount',
            from: 'From (You)',
            gas: 'Gas',
            gas_estimate: 'Network Fee',
            to: 'To',
            total: 'Total',
          },
          not_applied: 'N/A',
          title: 'Confirm transaction',
        },
        data: {
          amount: {
            label: 'Amount',
            placeholder: 'Select amount',
          },
          balance: {
            label: 'Balance:',
          },
          from: 'Send from',
          recipient: {
            label: 'Recipient',
            placeholder: 'Enter wallet address...',
          },
        },
        multiple_recipients: 'Multiple',
        send_button: 'Send now',
        succeeded: {
          continue_button: 'Continue',
          network: {
            label: 'Network',
          },
          recipient: {
            label: 'Recipient',
          },
          title: 'Transaction successfully sent',
          total_amount: {
            label: 'Total amount',
          },
        },
        validation: {
          amount: {
            invalid_decimals: 'Please enter a value up to the {{decimals}}th decimal place.',
            invalid_format: 'The amount is in invalid format',
            non_zero: 'Enter an amount greater than 0.',
            over_balance: 'Insufficient funds to send this amount.',
            required: 'The amount field is required',
            under_minimum:
              'The amount is below the network minimum of {{minAmount}}.',
          },
          recipient: {
            invalid_format: 'The address is in invalid format',
            required: 'The recipient is required',
          },
        },
        warning_message: {
          insufficient_funds: 'Insufficient funds due to gas price increase from estimate. Please add {{amountLeft}} {{currencySymbol}} to continue.',
        },
        error_message: {
          gas_not_sponsored: 'The gas fee has increased. Confirm if you still want to complete this transaction.',
        },
      }
     */
    dyn_send_transaction: {
        confirmation: {
            cancel_button: string;
            confirm_button: string;
            send: string;
            data: {
                amount: string;
                from: string;
                gas: string;
                gas_estimate: string;
                to: string;
                total: string;
                wallet_used: string;
                network: string;
                recipient: string;
                destination: string;
                gas_tooltip: string;
                sending: string;
                receiving: string;
                transfer: {
                    send: string;
                    receive: string;
                };
            };
            not_applied: string;
            title: string;
        };
        data: {
            amount: {
                label: string;
                placeholder: string;
            };
            balance: {
                label: string;
            };
            from: string;
            send: string;
            send_preview: string;
            confirmation_tx: string;
            banner: string;
            recipient: {
                label: string;
                placeholder: string;
            };
            fee_token_label: string;
            fee_token_embedded_only: string;
            select_token: string;
            symbol_available: string;
        };
        multiple_recipients: string;
        preview_transaction: string;
        send_button: string;
        succeeded: {
            continue_button: string;
            network: {
                label: string;
            };
            recipient: {
                label: string;
            };
            title: string;
            total_amount: {
                label: string;
            };
        };
        validation: {
            amount: {
                invalid_decimals: string;
                invalid_format: string;
                non_zero: string;
                over_balance: string;
                required: string;
                under_minimum: string;
            };
            recipient: {
                invalid_format: string;
                required: string;
            };
        };
        info_message: {
            refresh_balance_time: string;
        };
        warning_message: {
            insufficient_funds: {
                title: string;
                description: string;
            };
            insufficient_gas_funds: {
                title: string;
                description: string;
            };
            failed_simulation: {
                title: string;
                description: string;
            };
        };
        error_message: {
            confirmation_timeout: string;
            confirmation_timeout_with_link: string;
            gas_not_sponsored: string;
            something_went_wrong: string;
        };
    };
    /**
     * @description copy keys for Select Chain view
     * @default
     * {
        description: "This wallet supports multiple chains. Select which chain you'd like to connect to",
        using_hardware_wallet_toggle_label: 'Using Ledger',
      }
     */
    dyn_select_chain: {
        description: string;
        using_hardware_wallet_toggle_label: string;
    };
    /**
     * @description copy keys for Select Wallet view
     * @default
     * {
        description: "This wallet supports multiple chains. Select which chain you'd like to connect to",
        using_hardware_wallet_toggle_label: 'Using Ledger with {{chainName}}',
      }
     */
    dyn_select_wallet: {
        description: string;
    };
    /**
     * @description copy keys for Select Chain view
     * @default
     * {
        title: "Connect",
        description:
          "This wallet supports using ledger. Toggle on ledger to enable it.",
        using_hardware_wallet_toggle_label: "Using Ledger with {{chainName}}",
        button: "Connect",
      }
     */
    dyn_select_hardware_wallet: {
        title: string;
        description: string;
        using_hardware_wallet_toggle_label: string;
        button: string;
    };
    /**
     * @description copy keys for session key approval view
     * @default
     * {
        aria: {
          close_button_label: 'Close',
        },
        title: 'Approve Access',
        description:
          'You’re granting this site access. Review the permissions before confirming.',
        approve_button: 'Approve',
        reject_button: 'Deny',
      }
     */
    dyn_session_key_approval: {
        aria: {
            close_button_label: string;
        };
        title: string;
        description: string;
        approve_button: string;
        reject_button: string;
    };
    /**
     * @description copy keys for session management view
     * @default
     * {
        aria: {
          back_button_label: 'Back',
          info_button_label: 'Info',
        },
        title: 'Session Management',
        empty_sessions_view: {
          loading: 'Loading sessions...',
          title: 'No active sessions found',
        },
        info_view: {
          title: 'Connected App Sessions',
          description_bold: 'Easily manage which apps have access to your wallet. ',
          description_2:
            "Each session represents a connection you've made with a site or app.",
          description_3:
            'You can revoke access anytime to stay in control of where and how your wallet is used.',
          continue_button: 'Continue',
        },
        revoke_access_view: {
          title: 'Revoke Access',
          description:
            "You're removing this site's permissions. Confirm to revoke access.",
          cancel_button: 'Cancel',
          revoke_button: 'Revoke',
          success_message: 'Revoked {{sessionName}}',
          error_message: 'Failed to revoke {{sessionName}}',
        },
        session_component: {
          aria: {
            collapse_permissions: 'Collapse',
            expand_permissions: 'Expand',
          },
          permission_details: 'Permission details',
          revoke_button: 'Revoke',
        },
      }
    */
    dyn_session_management: {
        aria: {
            back_button_label: string;
            info_button_label: string;
            close_button_label: string;
        };
        title: string;
        empty_sessions_view: {
            loading: string;
            title: string;
        };
        info_view: {
            title: string;
            description_bold: string;
            description_2: string;
            description_3: string;
            continue_button: string;
        };
        revoke_access_view: {
            title: string;
            description: string;
            cancel_button: string;
            revoke_button: string;
            success_message: string;
            error_message: string;
        };
        session_component: {
            aria: {
                collapse_permissions: string;
                expand_permissions: string;
            };
            permission_details: string;
            revoke_button: string;
        };
    };
    /**
     * @description copy keys for session permissions component
     * @default
     * {
        permissions_label: 'Permissions',
        permissions: {
          ownership: 'Act on your behalf',
          access: 'Access ends automatically in {{time}}',
        },
        spending_label: 'Allow Spending',
        spending_limit: 'Can spend up to:',
        advanced_label: 'Advanced',
        advanced_description: 'Session information',
        connected: 'Connected: {{time}} ago',
      }
     */
    dyn_session_permissions: {
        permissions_label: string;
        permissions: {
            ownership: string;
            access: string;
        };
        spending_label: string;
        spending_limit: string;
        advanced_label: string;
        advanced_description: string;
        connected: string;
    };
    /**
     * @description copy keys for sign message flow views
     * @default
     * {
        cancel_button: 'Reject',
        sign_button: 'Sign',
        title: 'Signature request',
        warning: 'Only sign this message if you trust this site.',
        message_label: 'Message:',
      }
     */
    dyn_sign_message: {
        cancel_button: string;
        sign_button: string;
        title: string;
        warning: string;
        message_label: string;
    };
    /**
     * @description copy keys for social redirect view
     * @default
     * {
        logging_in: 'Logging you in',
      }
     */
    dyn_social_redirect: {
        logging_in: string;
    };
    /**
     * @description copy keys for wallet redirect view
     * @default
     * {
        loading: 'Loading...',
      }
     */
    dyn_wallet_redirect: {
        loading: string;
    };
    /**
     * @description copy keys for messages related to time since a date
     * @default
     * {
        second: 'second',
        seconds: 'seconds',
        minute: 'minute',
        minutes: 'minutes',
        hour: 'hour',
        hours: 'hours',
        day: 'day',
        days: 'days',
        month: 'month',
        months: 'months',
        year: 'year',
        years: 'years',
        ago: 'ago',
        created: 'Created',
     }
     */
    dyn_time_since: {
        second: string;
        seconds: string;
        minute: string;
        minutes: string;
        hour: string;
        hours: string;
        day: string;
        days: string;
        month: string;
        months: string;
        year: string;
        years: string;
        ago: string;
        created: string;
    };
    /**
     * @description copy keys for connecting wallets view
     * @default
     * {
        mobile: {
          wallet_list: {
            helper: 'Get your first wallet',
            title: 'WalletConnect wallets',
          },
        },
      }
     */
    dyn_wallet_conect: {
        mobile: {
            wallet_list: {
                helper: string;
                title: string;
            };
        };
    };
    /**
     * @description copy keys for linking wallets to profile view
     * @default
     * {
        cannot_link: {
          cancel_button: 'Cancel',
          description: 'This wallet is the only wallet in your other account. You cannot transfer it, since then you will lose access to that account.',
          link_other_button: 'Link a different wallet',
          title: 'Cannot link this wallet to a new account',
        },
        confirm_button: 'Link wallet to current account',
        existent_account: {
          acceptance: 'I understand that linking this wallet means that I will lose access to the other account.',
          warning: 'Linking your wallet to this account will unlink it from its previously associated account',
        },
        log_out_button: 'Log out',
        title: 'Transfer this wallet?'
      }
     */
    /**
     * @description copy keys for pending account switch to link modal
     * @default
     * {
        title: 'Wallet is already linked, switch wallet in {{walletName}}',
        description: 'To link a new wallet, open {{walletName}} and switch to the account you want to link.',
      }
     */
    dyn_pending_account_switch_to_link: {
        title: string;
        description: string;
    };
    dyn_wallet_link: {
        cannot_link: {
            cancel_button: string;
            description: string;
            link_other_button: string;
            title: string;
        };
        confirm_button: string;
        existent_account: {
            acceptance: string;
            warning: string;
        };
        log_out_button: string;
        title: string;
        already_exists: {
            title: string;
            description: string;
        };
    };
    /**
     * @description copy keys for connecting wallets list view
     * @default
     * {
        configuration_mismatch: 'Oops, no login methods have been configured.',
        helper: 'Get your first wallet',
        search: {
          label: 'Search through {{numberOfWallets}} wallets...',
          not_found: {
            description: 'The wallet you’re looking for may not be available, or linking more than one of these wallets might not be possible.',
            title: 'Wallet not available',
          },
        },
        title: {
          connect: 'Connect a new wallet',
          link: 'Link a new wallet',
          select: 'Select your wallet',
        },
        view_all: 'View all wallets',
        wallet_missing: {
          description: 'Try search instead',
          title: "Don't see your wallet?",
        },
      }
     */
    dyn_wallet_list: {
        configuration_mismatch: string;
        helper: string;
        search: {
            label: string;
            not_found: {
                description: string;
                title: string;
            };
        };
        title: {
            connect: string;
            link: string;
            select: string;
        };
        view_all: string;
        wallet_missing: {
            description: string;
            title: string;
        };
    };
    dyn_exchange_list: {
        search: {
            label: string;
            not_found: {
                description: string;
                title: string;
            };
        };
        item: {
            connected: string;
        };
        no_exchanges: string;
    };
    dyn_unified_list: {
        title: string;
        exchange: string;
        wallet: string;
        onramp: string;
        search: {
            label: string;
            not_found: {
                description: string;
                title: string;
            };
        };
        item: {
            connected: string;
        };
    };
    /**
     * @description copy keys for transferring wallets between accounts view
     * @default
     * {
        sign: {
          spinner: {
            cancel: 'Cancel',
            confirm_transfer:
            'Sign the message to confirm transferring this wallet to this account.',
          },
          title: 'Sign to confirm transfer',
        },
      }
     */
    dyn_wallet_transfer: {
        sign: {
            spinner: {
                cancel: string;
                confirm_transfer: string;
            };
            title: string;
        };
    };
    /**
     * @description copy keys for Dynamic widget nav bar
     * @default
     *
    dyn_nav_bar: {
      wallets: 'Wallets',
      profile: 'Profile',
      settings: 'Settings',
    },
    **/
    dyn_nav_bar: {
        wallets: string;
        profile: string;
        settings: string;
    };
    /**
     * @description copy keys for Dynamic widget
     * @default
     * {
        connect: 'Log in or sign up',
        empty_wallets: '{{action}} additional wallets to see them here.',
        other_wallets: 'My other wallets',
      }
     */
    dyn_widget: {
        connect: string;
        empty_wallets: string;
        other_wallets: string;
        empty_wallets_action_link: string;
        empty_wallets_action_connect: string;
    };
    /**
     * @description copy keys for Dynamic wallet information card
     * @default
     * {
        balance: 'Balance'
      }
     */
    dyn_wallet_information: {
        balance: string;
        multi_asset: {
            empty_state: string;
        };
    };
    /**
     * @description copy keys for Unlink wallet prompt
     * @default
     * {
        disconnect_title: 'Disconnect your wallet?',
        unlink_title: 'Unlink your wallet?',
        disconnect_description: 'Are you sure you want to disconnect your wallet?',
        unlink_description: 'Are you sure you want to unlink your wallet?',
        disconnect_button: 'Yes, disconnect',
        unlink_button: 'Yes, unlink',
        cancel_button: 'No',
      }
     */
    dyn_unlink_wallet_pop_up: {
        disconnect_title: string;
        unlink_title: string;
        disconnect_description: string;
        unlink_description: string;
        disconnect_button: string;
        unlink_button: string;
        cancel_button: string;
    };
    /**
     * @description copy keys for the user profile widget
     * @default
     * {
        my_information: {
          title: 'My information',
        },
        my_wallet: {
          title: 'My wallet',
        },
        social_accounts: {
          title: 'Social accounts',
        },
        tooltips: {
          verified_email: 'This email is verified',
          verified_phone: 'This phone number is verified',
        },
        wallets: {
          link_wallet_button: 'Link wallet',
          title: 'Wallets',
        },
      }
     */
    dyn_user_profile: {
        my_information: {
            title: string;
        };
        my_wallet: {
            title: string;
        };
        social_accounts: {
            title: string;
        };
        tooltips: {
            verified_email: string;
            verified_phone: string;
        };
        wallets: {
            link_wallet_button: string;
            title: string;
        };
        edit_profile_button: string;
    };
    /**
     * @description copy keys for Dynamic subdomain field
     * @default
     * {
        label: 'Subdomain Handle',
        available: 'Subdomain is available',
        not_available: 'Subdomain is not available',
        error: 'Subdomain check failed',
        details:
          'A subdomain handle will create a unique ENS subdomain for your wallet, helping you easily share and identify it.',
      }
     */
    dyn_subdomain_field: {
        label: string;
        available: string;
        not_available: string;
        error: string;
        details: string;
    };
    /**
     * @description copy keys for Detected new wallet prompt
     * @default
     * {
        title: 'Account Change Detected',
        description: 'Your active account in {{walletName}} has changed. This account is not currently linked to this app. Do you want to add it?',
        confirm_button: 'Yes, link this wallet',
      }
     */
    dyn_detected_new_wallet: {
        title: string;
        description: string;
        confirm_button: string;
    };
    /**
       * @description copy keys for sync wallet view
       * @default
       * {
          switch_wallet: {
            title: 'Your wallets are mismatched. \nSwitch to continue.',
            active_address: {
              heading: 'Currently active in wallet',
            },
            expected_address: {
              heading: 'Currently active on website',
              prompt: 'Manually switch to this wallet',
            },
          },
          reconnecting: {
            title: 'This wallet is not connected',
            description: 'Reconnecting wallet {{walletAddress}} to make it active...',
          },
          reconnect_with_qr_code: {
            title: 'This wallet is not connected',
          },
          cancel_button: 'Cancel',
          retry_button: 'Retry',
        }
      */
    dyn_sync_wallet: {
        switch_wallet: {
            title: string;
            active_address: {
                heading: string;
            };
            expected_address: {
                heading: string;
                prompt: string;
            };
        };
        reconnecting: {
            title: string;
            description: string;
        };
        reconnect_with_qr_code: {
            title: string;
        };
        cancel_button: string;
        retry_button: string;
    };
    /**
     * @description copy keys for the wallet funding flow
     * @default
     * {
        success: 'Transaction processing',
        success_txn_link: 'View transaction',
  
        funding_method_selection: {
          title: 'Deposit',
          qr_option: 'Receive by QR',
          buy_option: 'Buy Crypto',
          external_wallet_option: 'From External Wallet',
          linked_wallet_option: 'From Linked Wallet',
        },
        onramp_provider_selection: {
          title: 'Select provider',
          description: 'Select from a list of available onramp providers.',
        },
        from_linked_wallet: {
          title: 'Fund from Linked Wallet',
        },
  
        from_external_wallet: {
          title: 'Fund from External Wallet',
        },
  
        from_wallet: {
          amount_input: {
            title: 'Fund from Wallet',
            wallet_detail_from: 'From',
            confirm_button: 'Confirm Transaction',
            pricing_unavailable: 'Pricing unavailable.',
            minimum_error: 'Minimum {{minimum}}',
            balance_error: 'Insufficient funds',
          },
          token_select: {
            title: 'Select a Token',
            search_placeholder: 'Search for a token',
            no_assets_title: 'No Supported Assets',
            no_assets_description: 'No supported assets in this wallet',
          },
        },
      }
     */
    dyn_wallet_funding: {
        success: string;
        success_txn_link: string;
        funding_method_selection: {
            title: string;
            qr_option: string;
            buy_option: string;
            external_wallet_option: string;
            linked_wallet_option: string;
            exchange_option: string;
        };
        onramp_provider_selection: {
            title: string;
            description: string;
        };
        from_linked_wallet: {
            title: string;
        };
        from_exchange: {
            title: string;
        };
        from_external_wallet: {
            title: string;
        };
        from_wallet: {
            amount_input: {
                title: string;
                wallet_detail_from: string;
                confirm_button: string;
                pricing_unavailable: string;
                minimum_error: string;
                balance_error: string;
            };
            token_select: {
                title: string;
                search_placeholder: string;
                no_assets_title: string;
                no_assets_description: string;
            };
        };
    };
    /**
     * @description copy keys for Crypto.com onramp
     * @default
     * {
     *   title: 'Deposit',
     *   amount_label: 'Amount to purchase',
     *   amount_description: 'Enter the USD amount you want to spend',
     *   token_label: 'Token to receive',
     *   token_description: 'Choose which token you want to purchase',
     *   wallet_info: 'Tokens will be sent to your wallet',
     *   creating_payment: 'Creating Payment...',
     *   create_payment: 'Continue to Payment',
     * }
     */
    /**
     * @description copy keys for MoonPay onramp widget
     * @default
     * {
     *   title: 'Buy Crypto',
     *   token_label: 'Select Token',
     *   select_token: 'Select Token',
     *   search_token_placeholder: 'Search tokens',
     *   loading_tokens: 'Loading tokens...',
     *   tokens_error: 'Failed to load tokens. Please try again.',
     *   wallet_detail_to: 'Tokens will be sent to',
     *   continue: 'Continue to MoonPay',
     *   opening: 'Opening MoonPay...',
     *   error: 'Failed to open MoonPay. Please try again.',
     * }
     */
    dyn_moonpay_onramp: {
        title: string;
        token_label: string;
        select_token: string;
        search_token_placeholder: string;
        loading_tokens: string;
        tokens_error: string;
        wallet_detail_to: string;
        continue: string;
        opening: string;
        error: string;
    };
    dyn_crypto_com_onramp: {
        title: string;
        amount_label: string;
        amount_description: string;
        token_label: string;
        token_description: string;
        wallet_info: string;
        wallet_detail_to: string;
        creating_payment: string;
        create_payment: string;
        currency_label: string;
        select_currency: string;
    };
    /**
     * @description copy keys for Dynamic widget header
     * @default
     * {
        buttons: {
          deposit_funds: 'Deposit',
          send_funds: 'Send',
          more: 'More',
        },
      }
     */
    dyn_widget_header: {
        buttons: {
            deposit_funds: string;
            send_funds: string;
            more: string;
        };
    };
    /**
     * @description copy keys for general dynamic errors
     * @default
     * {
        default: 'Something went wrong. Please try again.',
        user_rejected: 'User rejected the request.',
        message_signature_denied: 'Message signature denied',
        wallet_locked: 'Please unlock your wallet extension and try again.',
        invalid_parameters: 'Invalid parameters. Please try again.',
        internal_error: 'There was an internal error. Please try again.',
        account_already_linked_to_different_profile:
          'This social account is already linked to a different profile.',
        connection_rejected: 'Connection rejected. Please try again.',
        missing_public_address: 'Connection cancelled. Please try again',
        connection_proposal_expired:
          'Connection proposal expired. Please try again.',
        sei_not_enabled_in_keplr_wallet:
          'Sei network is not enabled in Keplr. Please enable it and try again.',
        rate_limit_error: 'Too many requests. Please try again later.',
      }
     */
    dyn_error: {
        default: string;
        user_rejected: string;
        message_signature_denied: string;
        wallet_locked: string;
        invalid_parameters: string;
        internal_error: string;
        account_already_linked_to_different_profile: string;
        connection_rejected: string;
        credential_not_enabled_for_sign_in: string;
        missing_public_address: string;
        connection_proposal_expired: string;
        sei_not_enabled_in_keplr_wallet: string;
        rate_limit_error: string;
    };
    /**
     * @description copy keys for search component
     * @default
     * {
        clear: 'Clear',
      }
     */
    dyn_search: {
        clear: string;
    };
    /**
     * @description copy keys for account upgraded view
     * @default
     * {
     *   title: 'Account Upgraded',
     *   message: 'All done! You've got the latest version — more powerful, flexible, and ready for what's next.',
     *   continue_button: 'Continue',
     * }
     */
    dyn_account_upgraded: {
        title: string;
        message: string;
        continue_button: string;
    };
    /**
     * @description copy keys for Dynamic WaaS upgrade view
     * @default
     * {
     *   title: 'Upgrade your account',
     *   description: 'A new version of your account is available, with better security and easier recovery.',
     *   eligible_wallets: 'Eligible wallets',
     *   how_to_upgrade: 'How would you like to upgrade?',
     *   keep_existing: 'Keep existing wallet',
     *   keep_existing_desc: 'Export your legacy wallet and securely import the private key to upgrade',
     *   start_fresh: 'Start fresh',
     *   start_fresh_desc: 'Removes your legacy wallet and create a brand new upgraded wallet',
     *   recommended: 'recommended',
     *   upgrade: 'Upgrade',
     *   not_now: 'Not now',
     * }
     */
    dyn_upgrade_wallet: {
        title: string;
        description: string;
        eligible_wallets: string;
        how_to_upgrade: string;
        keep_existing: string;
        keep_existing_desc: string;
        start_fresh: string;
        start_fresh_desc: string;
        recommended: string;
        upgrade: string;
        not_now: string;
    };
    /**
     * @description copy keys for Dynamic wallet upgrade flow view
     * @default
     * {
     *   title: 'Upgrade your wallet',
     *   step_wallet_upgrade: '{{walletName}} Upgrade',
     *   new_wallet_title: 'Create New Wallet',
     *   new_wallet_coming_soon: 'New wallet creation coming soon...',
     *   copy_private_key_subtitle: 'Import your wallet key to upgrade your wallet. You will not lose access to any assets. Your wallet will always remain in your control.',
     *   copy_private_key_title: 'Copy',
     *   step_2_upgrade_description: 'Paste',
     *   upgrade_wallet: 'Upgrade Account',
     *   cancel: 'Cancel',
     *   export_failed: 'Failed to export wallet',
     *   upgrade_failed: 'Failed to upgrade wallet',
     * }
     */
    dyn_wallet_upgrade_flow: {
        title: string;
        step_wallet_upgrade: string;
        new_wallet_title: string;
        new_wallet_coming_soon: string;
        copy_private_key_subtitle: string;
        copy_private_key_title: string;
        step_2_upgrade_description: string;
        upgrade_wallet: string;
        cancel: string;
        export_failed: string;
        upgrade_failed: string;
    };
    dyn_export_and_recovery: {
        title: string;
        private_key: string;
        export_shares: string;
        advanced: string;
    };
    dyn_export_shares: {
        title: string;
        sensitive_info: string;
        threshold_description: string;
        how_to_use_title: string;
        bullet_1: string;
        bullet_2: string;
        bullet_3: string;
        acknowledge: string;
        download_button: string;
        error: string;
    };
    dyn_export_shares_passcode: {
        title: string;
        description: string;
        enter_passcode: string;
        error: string;
    };
    dyn_wallet_delegation: {
        title: string;
        approval_required: string;
        approval_requested: string;
        approval_description: string;
        select_wallets: string;
        select_all: string;
        deselect_all: string;
        clear: string;
        approve_button: string;
        deny_button: string;
        done_button: string;
        approving_permissions: string;
        permissions_description: string;
        permissions_granted: string;
        permissions_description_granted: string;
        revoke_note: string;
        wallets_selected: string;
        edit_selections: string;
        save_selections: string;
        edit_wallets_title: string;
        my_wallet: string;
        all_wallets: string;
        agreement_text: string;
        selected_wallets: string;
        edit_wallets_to_delegate: string;
        something_went_wrong: string;
        delegation_timeout_message: string;
        partial_failure_title: string;
        partial_failure_message: string;
        try_again_button: string;
        logout_button: string;
        learn_more: string;
        learn_more_description: string;
        learn_more_okay_button: string;
    };
    dyn_device_registration: {
        title: string;
        description: string;
        logout: string;
    };
    dyn_device_management: {
        manage_title: string;
        manage_trusted_devices_button: string;
        trusted_devices_section_title: string;
        this_device: string;
        remove_device_title: string;
        remove_device_description: string;
        remove_button: string;
        cancel_button: string;
        remove_all_devices: string;
        remove_all_devices_title: string;
        remove_all_devices_description: string;
        no_devices: string;
    };
};
