diff --git a/.env b/.env
new file mode 100644
index 0000000..9675f17
--- /dev/null
+++ b/.env
@@ -0,0 +1,25 @@
+PORT=3000
+FRONTEND_ORIGIN=http://localhost:3000
+
+DB_HOST=localhost
+DB_PORT=3306
+DB_USER=eaglertiers
+DB_PASSWORD=eagler_local_dev_2026
+DB_NAME=eaglertiers
+
+DISCORD_BOT_TOKEN=MTQ0MzA0NTM1MTAwMTk0ODE4MQ.G6qDT-.V-Vlao1Qurq8J1LxWEKcTcBSDRYKIMX9zEsEto
+DISCORD_CLIENT_ID=1443045351001948181
+DISCORD_GUILD_ID=1348443851366334505
+
+TRUST_PROXY=false
+ENFORCE_HTTPS=false
+CORS_ALLOWED_ORIGINS=https://eaglertiers.com/
+RATE_LIMIT_WINDOW_MS=60000
+RATE_LIMIT_IP_MAX=60
+RATE_LIMIT_USER_MAX=60
+API_WRITE_KEYS=
+
+ADMIN_API_KEY=pUhv9WZhbKQogLzHE639/LRF85yiTucfxQdPgGjjLJE=
+JWWT_SECRET=d3hr1fFezrcziGUAcbkLNdYtA64L/67H4ltk6c/FxGI=
+BCRYPT_ROUNDS=10
+ADMIN_PORT=3005
diff --git a/admin/create-admin.js b/admin/create-admin.js
new file mode 100644
index 0000000..a9f2026
--- /dev/null
+++ b/admin/create-admin.js
@@ -0,0 +1,20 @@
+// create-admin.js
+const path = require('path');
+require('dotenv').config({ path: path.join(__dirname, '..', '.env') });
+
+const bcrypt = require('bcrypt');
+const { pool } = require('../db'); // db.js is one level up
+
+async function createSuperAdmin() {
+ const username = 'admin_eagler';
+ const password = 'ILOOyCo8zDWWNl9bOyFbtiBULrNKd9';
+ const hash = await bcrypt.hash(password, 10);
+ await pool.query(
+ 'INSERT INTO admin_users (username, password_hash, role) VALUES (?, ?, ?)',
+ [username, hash, 'superadmin']
+ );
+ console.log('Superadmin created');
+ process.exit();
+}
+
+createSuperAdmin().catch(console.error);
diff --git a/admin/db.js b/admin/db.js
new file mode 100644
index 0000000..0e743b2
--- /dev/null
+++ b/admin/db.js
@@ -0,0 +1,5 @@
+DB_HOST=127.0.0.1
+DB_PORT=3306
+DB_USER=eaglertiers
+DB_PASSWORD=eagler_local_dev_2026
+DB_NAME=eaglertiers
diff --git a/admin/server/admin.js b/admin/server/admin.js
new file mode 100644
index 0000000..7cb814a
--- /dev/null
+++ b/admin/server/admin.js
@@ -0,0 +1,89 @@
+require('dotenv').config();
+const express = require('express');
+const { configureSecurityHeaders } = require('./middleware/securityHeaders');
+const { adminLimiter } = require('./middleware/rateLimiter');
+const adminRoutes = require('./routes/admin');
+
+const adminApp = express();
+const ADMIN_PORT = Number(process.env.ADMIN_PORT || 3005);
+const isDevelopment = process.env.NODE_ENV !== 'production';
+
+/**
+ * Trust proxy for correct IP detection
+ * Important: Only enable if behind a reverse proxy
+ */
+adminApp.set('trust proxy', process.env.TRUST_PROXY === 'true' ? true : 1);
+
+configureSecurityHeaders(adminApp, isDevelopment);
+
+adminApp.use((req, res, next) => {
+ const allowedOrigins = [
+ 'http://localhost:3005',
+ 'http://localhost:3000',
+ process.env.ADMIN_ORIGIN || '',
+ ].filter(Boolean);
+
+ const origin = req.get('origin');
+ if (allowedOrigins.includes(origin)) {
+ res.setHeader('Access-Control-Allow-Origin', origin);
+ res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
+ res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
+ res.setHeader('Access-Control-Allow-Credentials', 'true');
+ }
+
+ if (req.method === 'OPTIONS') {
+ return res.sendStatus(204);
+ }
+
+ next();
+});
+
+// Body parser
+adminApp.use(express.json({ limit: '10mb' }));
+adminApp.use(express.urlencoded({ limit: '10mb', extended: true }));
+
+// Global rate limiting
+adminApp.use(adminLimiter);
+
+// Admin routes with /api/admin prefix
+adminApp.use('/api/admin', adminRoutes);
+
+// Health check endpoint
+adminApp.get('/health', (req, res) => {
+ res.json({ status: 'ok', timestamp: new Date().toISOString() });
+});
+
+// 404 handler
+adminApp.use((req, res) => {
+ res.status(404).json({
+ error: 'Not found',
+ path: req.path,
+ });
+});
+
+// Error handler
+adminApp.use((err, req, res, next) => {
+ console.error('Unhandled error:', err);
+
+ if (isDevelopment) {
+ return res.status(500).json({
+ error: 'Internal server error',
+ message: err.message,
+ stack: err.stack,
+ });
+ }
+
+ return res.status(500).json({
+ error: 'Internal server error',
+ });
+});
+
+// Start admin server
+function startAdminServer() {
+ adminApp.listen(ADMIN_PORT, () => {
+ console.log(`EaglerTiers Admin API running on http://localhost:${ADMIN_PORT}`);
+ console.log(`Admin endpoints require API key via Authorization header or ?key parameter`);
+ });
+}
+
+module.exports = { adminApp, startAdminServer };
diff --git a/admin/server/create-admin.js b/admin/server/create-admin.js
new file mode 100644
index 0000000..0d58837
--- /dev/null
+++ b/admin/server/create-admin.js
@@ -0,0 +1,18 @@
+// create-admin.js
+require('dotenv').config();
+const bcrypt = require('bcrypt');
+const { pool } = require('./db');
+
+async function createSuperAdmin() {
+ const username = 'admin'; // change as needed
+ const password = 'your-strong-password';
+ const hash = await bcrypt.hash(password, 10);
+ await pool.query(
+ 'INSERT INTO admin_users (username, password_hash, role) VALUES (?, ?, ?)',
+ [username, hash, 'superadmin']
+ );
+ console.log('Superadmin created');
+ process.exit();
+}
+
+createSuperAdmin().catch(console.error);
diff --git a/admin/server/db.js b/admin/server/db.js
new file mode 100644
index 0000000..9bba3e4
--- /dev/null
+++ b/admin/server/db.js
@@ -0,0 +1,96 @@
+// db.js
+const mysql = require('mysql2/promise');
+const path = require('path');
+require('dotenv').config({ path: path.join(__dirname, '.env') });
+
+const {
+ DB_HOST = '127.0.0.1',
+ DB_PORT = '3306',
+ DB_USER = 'eaglertiers',
+ DB_PASSWORD = 'eagler_local_dev_2026',
+ DB_NAME = 'eaglertiers',
+} = process.env;
+
+// Create a connection pool (used by the app)
+const pool = mysql.createPool({
+ host: DB_HOST,
+ port: Number(DB_PORT),
+ user: DB_USER,
+ password: DB_PASSWORD,
+ database: DB_NAME,
+ waitForConnections: true,
+ connectionLimit: 10,
+ queueLimit: 0,
+ enableKeepAlive: true,
+ keepAliveInitialDelay: 0,
+});
+
+/**
+ * Ensures the database and required tables exist.
+ * Call this once during server startup.
+ */
+async function ensureDatabase() {
+ // First, connect without database to create it if necessary
+ const rootPool = mysql.createPool({
+ host: DB_HOST,
+ port: Number(DB_PORT),
+ user: DB_USER,
+ password: DB_PASSWORD,
+ connectionLimit: 1,
+ });
+
+ try {
+ // Create database if it doesn't exist
+ await rootPool.query(`CREATE DATABASE IF NOT EXISTS \`${DB_NAME}\``);
+ console.log(`Database "${DB_NAME}" ensured.`);
+
+ // Now use the main pool (with database selected) to create tables
+ const connection = await pool.getConnection();
+
+ // Create players table
+ await connection.query(`
+ CREATE TABLE IF NOT EXISTS players (
+ id INT AUTO_INCREMENT PRIMARY KEY,
+ username VARCHAR(16) UNIQUE NOT NULL,
+ region VARCHAR(2) NOT NULL DEFAULT 'NA',
+ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
+ )
+ `);
+
+ // Create player_ranks table
+ await connection.query(`
+ CREATE TABLE IF NOT EXISTS player_ranks (
+ player_id INT NOT NULL,
+ gamemode VARCHAR(20) NOT NULL,
+ tier VARCHAR(3) NOT NULL,
+ updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (player_id, gamemode),
+ FOREIGN KEY (player_id) REFERENCES players(id) ON DELETE CASCADE
+ )
+ `);
+
+ // Create admin_users table (if you haven't already)
+ await connection.query(`
+ CREATE TABLE IF NOT EXISTS admin_users (
+ id INT AUTO_INCREMENT PRIMARY KEY,
+ username VARCHAR(50) UNIQUE NOT NULL,
+ password_hash VARCHAR(255) NOT NULL,
+ role ENUM('admin','superadmin') DEFAULT 'admin',
+ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
+ )
+ `);
+
+ connection.release();
+ console.log('All tables ensured.');
+ } catch (err) {
+ console.error('Failed to ensure database:', err);
+ throw err;
+ } finally {
+ await rootPool.end();
+ }
+}
+
+module.exports = {
+ pool,
+ ensureDatabase,
+};
diff --git a/admin/static/index.html b/admin/static/index.html
new file mode 100644
index 0000000..dff2af9
--- /dev/null
+++ b/admin/static/index.html
@@ -0,0 +1,309 @@
+
+
+
+
+
+
+ EaglerTiers Admin
+
+
+
+
+
+
Admin Login
+
+
+
+
+
{{ loginError }}
+
+
+
+
+
EaglerTiers Admin Dashboard
+
+
+
+
+
+
+
+
+
+
+
Players
+
+
+
+
+
+
+ | ID | Username | Region | Created | Actions |
+
+
+ | {{ p.id }} |
+ {{ p.username }} |
+ {{ p.region }} |
+ {{ new Date(p.created_at).toLocaleDateString() }} |
+ |
+
+
+
+
+
+
+
+
Manage Ranks
+
+
+
+
+
+
+
+ | Player | Gamemode | Tier | Actions |
+
+
+ | {{ getPlayerName(r.player_id) }} |
+ {{ r.gamemode }} |
+ {{ r.tier }} |
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/config.js b/config.js
new file mode 100644
index 0000000..5e86e9b
--- /dev/null
+++ b/config.js
@@ -0,0 +1,100 @@
+// config.js
+const GAMEMODES = [
+ 'NETH_POT',
+ 'CRYSTAL',
+ 'CLASSIC',
+ 'BUILDUHC',
+ 'SUMO',
+ 'GAP',
+ 'AXE',
+ 'SMP',
+ 'VANILLA',
+ 'BRIDGE',
+ 'COMBO',
+ 'FIREBALL',
+];
+
+const GAMEMODE_LABELS = {
+ NETH_POT: 'Netherite Pot',
+ CRYSTAL: 'Crystal',
+ CLASSIC: 'Classic',
+ BUILDUHC: 'Build UHC',
+ SUMO: 'Sumo',
+ GAP: 'Gapple',
+ AXE: 'Axe',
+ SMP: 'SMP',
+ VANILLA: 'Vanilla',
+ BRIDGE: 'Bridge',
+ COMBO: 'Combo',
+ FIREBALL: 'Fireball',
+};
+
+const REGIONS = ['NA', 'EU', 'AS', 'AU'];
+
+// Minecraft username regex: 3-16 chars, letters, numbers, underscore
+const USERNAME_REGEX = /^[a-zA-Z0-9_]{3,16}$/;
+
+// Helper functions
+function avatarUrl(username) {
+ return `https://render.crafty.gg/3d/bust/${encodeURIComponent(username)}`;
+}
+
+function isValidTier(tier) {
+ const valid = ['HT1', 'LT1', 'HT2', 'LT2', 'HT3', 'LT3', 'HT4', 'LT4', 'HT5', 'LT5'];
+ return valid.includes(tier);
+}
+
+function isValidGamemode(gamemode) {
+ return GAMEMODES.includes(gamemode);
+}
+
+function isValidRegion(region) {
+ return REGIONS.includes(region);
+}
+
+function normalizeGamemode(gamemode) {
+ if (!gamemode) return null;
+ return gamemode.toUpperCase().replace(/\s+/g, '_');
+}
+
+function normalizeRegion(region) {
+ if (!region) return 'NA';
+ return region.toUpperCase().trim();
+}
+
+function normalizeTier(tier) {
+ if (!tier) return null;
+ return tier.toUpperCase().trim();
+}
+
+function tierToPoints(tier) {
+ if (!tier) return 0;
+ const map = {
+ HT1: 100,
+ LT1: 90,
+ HT2: 80,
+ LT2: 70,
+ HT3: 60,
+ LT3: 50,
+ HT4: 40,
+ LT4: 30,
+ HT5: 20,
+ LT5: 10,
+ };
+ return map[tier] || 0;
+}
+
+module.exports = {
+ GAMEMODES,
+ GAMEMODE_LABELS,
+ REGIONS,
+ USERNAME_REGEX,
+ avatarUrl,
+ isValidTier,
+ isValidGamemode,
+ isValidRegion,
+ normalizeGamemode,
+ normalizeRegion,
+ normalizeTier,
+ tierToPoints,
+};
diff --git a/create-admin.js b/create-admin.js
new file mode 100644
index 0000000..ed3645f
--- /dev/null
+++ b/create-admin.js
@@ -0,0 +1,18 @@
+// create-admin.js (place in project root)
+require('dotenv').config();
+const bcrypt = require('bcrypt');
+const { pool } = require('./server/db');
+
+async function createSuperAdmin() {
+ const username = 'admin'; // change as needed
+ const password = 'your-strong-password'; // change this!
+ const hash = await bcrypt.hash(password, 10);
+ await pool.query(
+ 'INSERT INTO admin_users (username, password_hash, role) VALUES (?, ?, ?)',
+ [username, hash, 'superadmin']
+ );
+ console.log('Superadmin created');
+ process.exit();
+}
+
+createSuperAdmin().catch(console.error);
diff --git a/db.js b/db.js
new file mode 100644
index 0000000..9bba3e4
--- /dev/null
+++ b/db.js
@@ -0,0 +1,96 @@
+// db.js
+const mysql = require('mysql2/promise');
+const path = require('path');
+require('dotenv').config({ path: path.join(__dirname, '.env') });
+
+const {
+ DB_HOST = '127.0.0.1',
+ DB_PORT = '3306',
+ DB_USER = 'eaglertiers',
+ DB_PASSWORD = 'eagler_local_dev_2026',
+ DB_NAME = 'eaglertiers',
+} = process.env;
+
+// Create a connection pool (used by the app)
+const pool = mysql.createPool({
+ host: DB_HOST,
+ port: Number(DB_PORT),
+ user: DB_USER,
+ password: DB_PASSWORD,
+ database: DB_NAME,
+ waitForConnections: true,
+ connectionLimit: 10,
+ queueLimit: 0,
+ enableKeepAlive: true,
+ keepAliveInitialDelay: 0,
+});
+
+/**
+ * Ensures the database and required tables exist.
+ * Call this once during server startup.
+ */
+async function ensureDatabase() {
+ // First, connect without database to create it if necessary
+ const rootPool = mysql.createPool({
+ host: DB_HOST,
+ port: Number(DB_PORT),
+ user: DB_USER,
+ password: DB_PASSWORD,
+ connectionLimit: 1,
+ });
+
+ try {
+ // Create database if it doesn't exist
+ await rootPool.query(`CREATE DATABASE IF NOT EXISTS \`${DB_NAME}\``);
+ console.log(`Database "${DB_NAME}" ensured.`);
+
+ // Now use the main pool (with database selected) to create tables
+ const connection = await pool.getConnection();
+
+ // Create players table
+ await connection.query(`
+ CREATE TABLE IF NOT EXISTS players (
+ id INT AUTO_INCREMENT PRIMARY KEY,
+ username VARCHAR(16) UNIQUE NOT NULL,
+ region VARCHAR(2) NOT NULL DEFAULT 'NA',
+ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
+ )
+ `);
+
+ // Create player_ranks table
+ await connection.query(`
+ CREATE TABLE IF NOT EXISTS player_ranks (
+ player_id INT NOT NULL,
+ gamemode VARCHAR(20) NOT NULL,
+ tier VARCHAR(3) NOT NULL,
+ updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (player_id, gamemode),
+ FOREIGN KEY (player_id) REFERENCES players(id) ON DELETE CASCADE
+ )
+ `);
+
+ // Create admin_users table (if you haven't already)
+ await connection.query(`
+ CREATE TABLE IF NOT EXISTS admin_users (
+ id INT AUTO_INCREMENT PRIMARY KEY,
+ username VARCHAR(50) UNIQUE NOT NULL,
+ password_hash VARCHAR(255) NOT NULL,
+ role ENUM('admin','superadmin') DEFAULT 'admin',
+ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
+ )
+ `);
+
+ connection.release();
+ console.log('All tables ensured.');
+ } catch (err) {
+ console.error('Failed to ensure database:', err);
+ throw err;
+ } finally {
+ await rootPool.end();
+ }
+}
+
+module.exports = {
+ pool,
+ ensureDatabase,
+};
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..df5fab3
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,17 @@
+version: "3.9"
+
+services:
+ mariadb:
+ image: mariadb:11
+ container_name: eaglertiers-mariadb
+ restart: unless-stopped
+ environment:
+ MARIADB_ROOT_PASSWORD: changeme
+ MARIADB_DATABASE: eaglertiers
+ ports:
+ - "3306:3306"
+ volumes:
+ - eaglertiers_db_data:/var/lib/mysql
+
+volumes:
+ eaglertiers_db_data:
diff --git a/eagler-tiers b/eagler-tiers
new file mode 160000
index 0000000..36e2d11
--- /dev/null
+++ b/eagler-tiers
@@ -0,0 +1 @@
+Subproject commit 36e2d11f2e823329c79263bfeb23ecb212581d31
diff --git a/node_modules/.bin/mime b/node_modules/.bin/mime
new file mode 100644
index 0000000..7751de3
--- /dev/null
+++ b/node_modules/.bin/mime
@@ -0,0 +1,16 @@
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+ *CYGWIN*|*MINGW*|*MSYS*)
+ if command -v cygpath > /dev/null 2>&1; then
+ basedir=`cygpath -w "$basedir"`
+ fi
+ ;;
+esac
+
+if [ -x "$basedir/node" ]; then
+ exec "$basedir/node" "$basedir/../mime/cli.js" "$@"
+else
+ exec node "$basedir/../mime/cli.js" "$@"
+fi
diff --git a/node_modules/.bin/mime.cmd b/node_modules/.bin/mime.cmd
new file mode 100644
index 0000000..54491f1
--- /dev/null
+++ b/node_modules/.bin/mime.cmd
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+ SET "_prog=%dp0%\node.exe"
+) ELSE (
+ SET "_prog=node"
+ SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %*
diff --git a/node_modules/.bin/mime.ps1 b/node_modules/.bin/mime.ps1
new file mode 100644
index 0000000..2222f40
--- /dev/null
+++ b/node_modules/.bin/mime.ps1
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+ # Fix case when both the Windows and Linux builds of Node
+ # are installed in the same directory
+ $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args
+ } else {
+ & "$basedir/node$exe" "$basedir/../mime/cli.js" $args
+ }
+ $ret=$LASTEXITCODE
+} else {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "node$exe" "$basedir/../mime/cli.js" $args
+ } else {
+ & "node$exe" "$basedir/../mime/cli.js" $args
+ }
+ $ret=$LASTEXITCODE
+}
+exit $ret
diff --git a/node_modules/.bin/nodemon.cmd b/node_modules/.bin/nodemon.cmd
new file mode 100644
index 0000000..55acf8a
--- /dev/null
+++ b/node_modules/.bin/nodemon.cmd
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+ SET "_prog=%dp0%\node.exe"
+) ELSE (
+ SET "_prog=node"
+ SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nodemon\bin\nodemon.js" %*
diff --git a/node_modules/.bin/nodemon.ps1 b/node_modules/.bin/nodemon.ps1
new file mode 100644
index 0000000..d4e3f5d
--- /dev/null
+++ b/node_modules/.bin/nodemon.ps1
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+ # Fix case when both the Windows and Linux builds of Node
+ # are installed in the same directory
+ $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args
+ } else {
+ & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args
+ }
+ $ret=$LASTEXITCODE
+} else {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args
+ } else {
+ & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args
+ }
+ $ret=$LASTEXITCODE
+}
+exit $ret
diff --git a/node_modules/.bin/nodetouch.cmd b/node_modules/.bin/nodetouch.cmd
new file mode 100644
index 0000000..8298b91
--- /dev/null
+++ b/node_modules/.bin/nodetouch.cmd
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+ SET "_prog=%dp0%\node.exe"
+) ELSE (
+ SET "_prog=node"
+ SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\touch\bin\nodetouch.js" %*
diff --git a/node_modules/.bin/nodetouch.ps1 b/node_modules/.bin/nodetouch.ps1
new file mode 100644
index 0000000..5f68b4c
--- /dev/null
+++ b/node_modules/.bin/nodetouch.ps1
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+ # Fix case when both the Windows and Linux builds of Node
+ # are installed in the same directory
+ $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args
+ } else {
+ & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args
+ }
+ $ret=$LASTEXITCODE
+} else {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args
+ } else {
+ & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args
+ }
+ $ret=$LASTEXITCODE
+}
+exit $ret
diff --git a/node_modules/.bin/semver.cmd b/node_modules/.bin/semver.cmd
new file mode 100644
index 0000000..9913fa9
--- /dev/null
+++ b/node_modules/.bin/semver.cmd
@@ -0,0 +1,17 @@
+@ECHO off
+GOTO start
+:find_dp0
+SET dp0=%~dp0
+EXIT /b
+:start
+SETLOCAL
+CALL :find_dp0
+
+IF EXIST "%dp0%\node.exe" (
+ SET "_prog=%dp0%\node.exe"
+) ELSE (
+ SET "_prog=node"
+ SET PATHEXT=%PATHEXT:;.JS;=;%
+)
+
+endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\semver\bin\semver.js" %*
diff --git a/node_modules/.bin/semver.ps1 b/node_modules/.bin/semver.ps1
new file mode 100644
index 0000000..314717a
--- /dev/null
+++ b/node_modules/.bin/semver.ps1
@@ -0,0 +1,28 @@
+#!/usr/bin/env pwsh
+$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
+
+$exe=""
+if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
+ # Fix case when both the Windows and Linux builds of Node
+ # are installed in the same directory
+ $exe=".exe"
+}
+$ret=0
+if (Test-Path "$basedir/node$exe") {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args
+ } else {
+ & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args
+ }
+ $ret=$LASTEXITCODE
+} else {
+ # Support pipeline input
+ if ($MyInvocation.ExpectingInput) {
+ $input | & "node$exe" "$basedir/../semver/bin/semver.js" $args
+ } else {
+ & "node$exe" "$basedir/../semver/bin/semver.js" $args
+ }
+ $ret=$LASTEXITCODE
+}
+exit $ret
diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json
new file mode 100644
index 0000000..e5c532b
--- /dev/null
+++ b/node_modules/.package-lock.json
@@ -0,0 +1,1864 @@
+{
+ "name": "eaglertiers",
+ "version": "1.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "node_modules/@discordjs/builders": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.13.1.tgz",
+ "integrity": "sha512-cOU0UDHc3lp/5nKByDxkmRiNZBpdp0kx55aarbiAfakfKJHlxv/yFW1zmIqCAmwH5CRlrH9iMFKJMpvW4DPB+w==",
+ "dependencies": {
+ "@discordjs/formatters": "^0.6.2",
+ "@discordjs/util": "^1.2.0",
+ "@sapphire/shapeshift": "^4.0.0",
+ "discord-api-types": "^0.38.33",
+ "fast-deep-equal": "^3.1.3",
+ "ts-mixer": "^6.0.4",
+ "tslib": "^2.6.3"
+ },
+ "engines": {
+ "node": ">=16.11.0"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@discordjs/collection": {
+ "version": "1.5.3",
+ "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz",
+ "integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==",
+ "engines": {
+ "node": ">=16.11.0"
+ }
+ },
+ "node_modules/@discordjs/formatters": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.6.2.tgz",
+ "integrity": "sha512-y4UPwWhH6vChKRkGdMB4odasUbHOUwy7KL+OVwF86PvT6QVOwElx+TiI1/6kcmcEe+g5YRXJFiXSXUdabqZOvQ==",
+ "dependencies": {
+ "discord-api-types": "^0.38.33"
+ },
+ "engines": {
+ "node": ">=16.11.0"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@discordjs/rest": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-2.6.0.tgz",
+ "integrity": "sha512-RDYrhmpB7mTvmCKcpj+pc5k7POKszS4E2O9TYc+U+Y4iaCP+r910QdO43qmpOja8LRr1RJ0b3U+CqVsnPqzf4w==",
+ "dependencies": {
+ "@discordjs/collection": "^2.1.1",
+ "@discordjs/util": "^1.1.1",
+ "@sapphire/async-queue": "^1.5.3",
+ "@sapphire/snowflake": "^3.5.3",
+ "@vladfrangu/async_event_emitter": "^2.4.6",
+ "discord-api-types": "^0.38.16",
+ "magic-bytes.js": "^1.10.0",
+ "tslib": "^2.6.3",
+ "undici": "6.21.3"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@discordjs/rest/node_modules/@discordjs/collection": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.1.tgz",
+ "integrity": "sha512-LiSusze9Tc7qF03sLCujF5iZp7K+vRNEDBZ86FT9aQAv3vxMLihUvKvpsCWiQ2DJq1tVckopKm1rxomgNUc9hg==",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@discordjs/util": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.2.0.tgz",
+ "integrity": "sha512-3LKP7F2+atl9vJFhaBjn4nOaSWahZ/yWjOvA4e5pnXkt2qyXRCHLxoBQy81GFtLGCq7K9lPm9R517M1U+/90Qg==",
+ "dependencies": {
+ "discord-api-types": "^0.38.33"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@discordjs/ws": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/@discordjs/ws/-/ws-1.2.3.tgz",
+ "integrity": "sha512-wPlQDxEmlDg5IxhJPuxXr3Vy9AjYq5xCvFWGJyD7w7Np8ZGu+Mc+97LCoEc/+AYCo2IDpKioiH0/c/mj5ZR9Uw==",
+ "dependencies": {
+ "@discordjs/collection": "^2.1.0",
+ "@discordjs/rest": "^2.5.1",
+ "@discordjs/util": "^1.1.0",
+ "@sapphire/async-queue": "^1.5.2",
+ "@types/ws": "^8.5.10",
+ "@vladfrangu/async_event_emitter": "^2.2.4",
+ "discord-api-types": "^0.38.1",
+ "tslib": "^2.6.2",
+ "ws": "^8.17.0"
+ },
+ "engines": {
+ "node": ">=16.11.0"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@discordjs/ws/node_modules/@discordjs/collection": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.1.tgz",
+ "integrity": "sha512-LiSusze9Tc7qF03sLCujF5iZp7K+vRNEDBZ86FT9aQAv3vxMLihUvKvpsCWiQ2DJq1tVckopKm1rxomgNUc9hg==",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/@hapi/address": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@hapi/address/-/address-5.1.1.tgz",
+ "integrity": "sha512-A+po2d/dVoY7cYajycYI43ZbYMXukuopIsqCjh5QzsBCipDtdofHntljDlpccMjIfTy6UOkg+5KPriwYch2bXA==",
+ "dependencies": {
+ "@hapi/hoek": "^11.0.2"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@hapi/formula": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@hapi/formula/-/formula-3.0.2.tgz",
+ "integrity": "sha512-hY5YPNXzw1He7s0iqkRQi+uMGh383CGdyyIGYtB+W5N3KHPXoqychklvHhKCC9M3Xtv0OCs/IHw+r4dcHtBYWw=="
+ },
+ "node_modules/@hapi/hoek": {
+ "version": "11.0.7",
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.7.tgz",
+ "integrity": "sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ=="
+ },
+ "node_modules/@hapi/pinpoint": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-2.0.1.tgz",
+ "integrity": "sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q=="
+ },
+ "node_modules/@hapi/tlds": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/@hapi/tlds/-/tlds-1.1.6.tgz",
+ "integrity": "sha512-xdi7A/4NZokvV0ewovme3aUO5kQhW9pQ2YD1hRqZGhhSi5rBv4usHYidVocXSi9eihYsznZxLtAiEYYUL6VBGw==",
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@hapi/topo": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-6.0.2.tgz",
+ "integrity": "sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==",
+ "dependencies": {
+ "@hapi/hoek": "^11.0.2"
+ }
+ },
+ "node_modules/@sapphire/async-queue": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.5.tgz",
+ "integrity": "sha512-cvGzxbba6sav2zZkH8GPf2oGk9yYoD5qrNWdu9fRehifgnFZJMV+nuy2nON2roRO4yQQ+v7MK/Pktl/HgfsUXg==",
+ "engines": {
+ "node": ">=v14.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/@sapphire/shapeshift": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-4.0.0.tgz",
+ "integrity": "sha512-d9dUmWVA7MMiKobL3VpLF8P2aeanRTu6ypG2OIaEv/ZHH/SUQ2iHOVyi5wAPjQ+HmnMuL0whK9ez8I/raWbtIg==",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "lodash": "^4.17.21"
+ },
+ "engines": {
+ "node": ">=v16"
+ }
+ },
+ "node_modules/@sapphire/snowflake": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.3.tgz",
+ "integrity": "sha512-jjmJywLAFoWeBi1W7994zZyiNWPIiqRRNAmSERxyg93xRGzNYvGjlZ0gR6x0F4gPRi2+0O6S71kOZYyr3cxaIQ==",
+ "engines": {
+ "node": ">=v14.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/@standard-schema/spec": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="
+ },
+ "node_modules/@types/node": {
+ "version": "25.3.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.3.0.tgz",
+ "integrity": "sha512-4K3bqJpXpqfg2XKGK9bpDTc6xO/xoUP/RBWS7AtRMug6zZFaRekiLzjVtAoZMquxoAbzBvy5nxQ7veS5eYzf8A==",
+ "dependencies": {
+ "undici-types": "~7.18.0"
+ }
+ },
+ "node_modules/@types/ws": {
+ "version": "8.18.1",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
+ "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@vladfrangu/async_event_emitter": {
+ "version": "2.4.7",
+ "resolved": "https://registry.npmjs.org/@vladfrangu/async_event_emitter/-/async_event_emitter-2.4.7.tgz",
+ "integrity": "sha512-Xfe6rpCTxSxfbswi/W/Pz7zp1WWSNn4A0eW4mLkQUewCrXXtMj31lCg+iQyTkh/CkusZSq9eDflu7tjEDXUY6g==",
+ "engines": {
+ "node": ">=v14.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
+ "license": "MIT"
+ },
+ "node_modules/aws-ssl-profiles": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/aws-ssl-profiles/-/aws-ssl-profiles-1.1.2.tgz",
+ "integrity": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.3.tgz",
+ "integrity": "sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==",
+ "dev": true,
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
+ "node_modules/bcrypt": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-6.0.0.tgz",
+ "integrity": "sha512-cU8v/EGSrnH+HnxV2z0J7/blxH8gq7Xh2JFT6Aroax7UohdmiJJlxApMxtKfuI7z68NvvVcmR78k2LbT6efhRg==",
+ "hasInstallScript": true,
+ "dependencies": {
+ "node-addon-api": "^8.3.0",
+ "node-gyp-build": "^4.8.4"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.4",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz",
+ "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "~3.1.2",
+ "content-type": "~1.0.5",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "~1.2.0",
+ "http-errors": "~2.0.1",
+ "iconv-lite": "~0.4.24",
+ "on-finished": "~2.4.1",
+ "qs": "~6.14.0",
+ "raw-body": "~2.5.3",
+ "type-is": "~1.6.18",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.2.tgz",
+ "integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/buffer-equal-constant-time": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
+ },
+ "node_modules/bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/chokidar": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": ">= 1.43.0 < 2"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/compression": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz",
+ "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "compressible": "~2.0.18",
+ "debug": "2.6.9",
+ "negotiator": "~0.6.4",
+ "on-headers": "~1.1.0",
+ "safe-buffer": "5.2.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/compression/node_modules/negotiator": {
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
+ "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-type": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
+ "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
+ "license": "MIT"
+ },
+ "node_modules/cors": {
+ "version": "2.8.6",
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
+ "license": "MIT",
+ "dependencies": {
+ "object-assign": "^4",
+ "vary": "^1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/denque": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/discord-api-types": {
+ "version": "0.38.39",
+ "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.38.39.tgz",
+ "integrity": "sha512-XRdDQvZvID1XvcFftjSmd4dcmMi/RL/jSy5sduBDAvCGFcNFHThdIQXCEBDZFe52lCNEzuIL0QJoKYAmRmxLUA=="
+ },
+ "node_modules/discord.js": {
+ "version": "14.25.1",
+ "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.25.1.tgz",
+ "integrity": "sha512-2l0gsPOLPs5t6GFZfQZKnL1OJNYFcuC/ETWsW4VtKVD/tg4ICa9x+jb9bkPffkMdRpRpuUaO/fKkHCBeiCKh8g==",
+ "dependencies": {
+ "@discordjs/builders": "^1.13.0",
+ "@discordjs/collection": "1.5.3",
+ "@discordjs/formatters": "^0.6.2",
+ "@discordjs/rest": "^2.6.0",
+ "@discordjs/util": "^1.2.0",
+ "@discordjs/ws": "^1.2.3",
+ "@sapphire/snowflake": "3.5.3",
+ "discord-api-types": "^0.38.33",
+ "fast-deep-equal": "3.1.3",
+ "lodash.snakecase": "4.1.1",
+ "magic-bytes.js": "^1.10.0",
+ "tslib": "^2.6.3",
+ "undici": "6.21.3"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/discordjs/discord.js?sponsor"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.6.1",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
+ "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/ecdsa-sig-formatter": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.22.1",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
+ "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
+ "license": "MIT",
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "~1.20.3",
+ "content-disposition": "~0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "~0.7.1",
+ "cookie-signature": "~1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.3.1",
+ "fresh": "~0.5.2",
+ "http-errors": "~2.0.0",
+ "merge-descriptors": "1.0.3",
+ "methods": "~1.1.2",
+ "on-finished": "~2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "~0.1.12",
+ "proxy-addr": "~2.0.7",
+ "qs": "~6.14.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "~0.19.0",
+ "serve-static": "~1.16.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "~2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/express-rate-limit": {
+ "version": "8.2.1",
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.1.tgz",
+ "integrity": "sha512-PCZEIEIxqwhzw4KF0n7QF4QqruVTcF73O5kFKUnGOyjbCCgizBBiFaYpd/fnBLUMPw/BWw9OsiN7GgrNYr7j6g==",
+ "dependencies": {
+ "ip-address": "10.0.1"
+ },
+ "engines": {
+ "node": ">= 16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/express-rate-limit"
+ },
+ "peerDependencies": {
+ "express": ">= 4.11"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
+ "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "~2.0.2",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/generate-function": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz",
+ "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==",
+ "license": "MIT",
+ "dependencies": {
+ "is-property": "^1.0.2"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/helmet": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.1.0.tgz",
+ "integrity": "sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==",
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "~2.0.0",
+ "inherits": "~2.0.4",
+ "setprototypeof": "~1.2.0",
+ "statuses": "~2.0.2",
+ "toidentifier": "~1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ignore-by-default": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
+ "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/ip-address": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz",
+ "integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==",
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-property": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
+ "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==",
+ "license": "MIT"
+ },
+ "node_modules/joi": {
+ "version": "18.0.2",
+ "resolved": "https://registry.npmjs.org/joi/-/joi-18.0.2.tgz",
+ "integrity": "sha512-RuCOQMIt78LWnktPoeBL0GErkNaJPTBGcYuyaBvUOQSpcpcLfWrHPPihYdOGbV5pam9VTWbeoF7TsGiHugcjGA==",
+ "dependencies": {
+ "@hapi/address": "^5.1.1",
+ "@hapi/formula": "^3.0.2",
+ "@hapi/hoek": "^11.0.7",
+ "@hapi/pinpoint": "^2.0.1",
+ "@hapi/tlds": "^1.1.1",
+ "@hapi/topo": "^6.0.2",
+ "@standard-schema/spec": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/jsonwebtoken": {
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz",
+ "integrity": "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==",
+ "dependencies": {
+ "jws": "^4.0.1",
+ "lodash.includes": "^4.3.0",
+ "lodash.isboolean": "^3.0.3",
+ "lodash.isinteger": "^4.0.4",
+ "lodash.isnumber": "^3.0.3",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.isstring": "^4.0.1",
+ "lodash.once": "^4.0.0",
+ "ms": "^2.1.1",
+ "semver": "^7.5.4"
+ },
+ "engines": {
+ "node": ">=12",
+ "npm": ">=6"
+ }
+ },
+ "node_modules/jsonwebtoken/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/jwa": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
+ "dependencies": {
+ "buffer-equal-constant-time": "^1.0.1",
+ "ecdsa-sig-formatter": "1.0.11",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/jws": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
+ "dependencies": {
+ "jwa": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.23",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
+ "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w=="
+ },
+ "node_modules/lodash.includes": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
+ "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="
+ },
+ "node_modules/lodash.isboolean": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
+ "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
+ },
+ "node_modules/lodash.isinteger": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
+ "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="
+ },
+ "node_modules/lodash.isnumber": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
+ "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="
+ },
+ "node_modules/lodash.isplainobject": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
+ },
+ "node_modules/lodash.isstring": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
+ "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="
+ },
+ "node_modules/lodash.once": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
+ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="
+ },
+ "node_modules/lodash.snakecase": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz",
+ "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw=="
+ },
+ "node_modules/long": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/lru.min": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/lru.min/-/lru.min-1.1.4.tgz",
+ "integrity": "sha512-DqC6n3QQ77zdFpCMASA1a3Jlb64Hv2N2DciFGkO/4L9+q/IpIAuRlKOvCXabtRW6cQf8usbmM6BE/TOPysCdIA==",
+ "license": "MIT",
+ "engines": {
+ "bun": ">=1.0.0",
+ "deno": ">=1.30.0",
+ "node": ">=8.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wellwelwel"
+ }
+ },
+ "node_modules/magic-bytes.js": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.13.0.tgz",
+ "integrity": "sha512-afO2mnxW7GDTXMm5/AoN1WuOcdoKhtgXjIvHmobqTD1grNplhGdv3PFOyjCVmrnOZBIT/gD/koDKpYG+0mvHcg=="
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.2.tgz",
+ "integrity": "sha512-+G4CpNBxa5MprY+04MbgOw1v7So6n5JY166pFi9KfYwT78fxScCeSNQSNzp6dpPSW2rONOps6Ocam1wFhCgoVw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^5.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/mysql2": {
+ "version": "3.17.3",
+ "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.17.3.tgz",
+ "integrity": "sha512-uCLmQMe1l96Sb6J3Ii8YJTOWJkhRmxlLJFdOfhD68jPpGTzK2fxEkFMpf5gewyHgUB0FJKzuAuPhYS+oPB0/vA==",
+ "dependencies": {
+ "aws-ssl-profiles": "^1.1.2",
+ "denque": "^2.1.0",
+ "generate-function": "^2.3.1",
+ "iconv-lite": "^0.7.2",
+ "long": "^5.3.2",
+ "lru.min": "^1.1.4",
+ "named-placeholders": "^1.1.6",
+ "sql-escaper": "^1.3.3"
+ },
+ "engines": {
+ "node": ">= 8.0"
+ }
+ },
+ "node_modules/mysql2/node_modules/iconv-lite": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/named-placeholders": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.6.tgz",
+ "integrity": "sha512-Tz09sEL2EEuv5fFowm419c1+a/jSMiBjI9gHxVLrVdbUkkNUUfjsVYs9pVZu5oCon/kmRh9TfLEObFtkVxmY0w==",
+ "license": "MIT",
+ "dependencies": {
+ "lru.min": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/node-addon-api": {
+ "version": "8.5.0",
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.5.0.tgz",
+ "integrity": "sha512-/bRZty2mXUIFY/xU5HLvveNHlswNJej+RnxBjOMkidWfwZzgTbPG1E3K5TOxRLOR+5hX7bSofy8yf1hZevMS8A==",
+ "engines": {
+ "node": "^18 || ^20 || >= 21"
+ }
+ },
+ "node_modules/node-gyp-build": {
+ "version": "4.8.4",
+ "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
+ "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
+ "bin": {
+ "node-gyp-build": "bin.js",
+ "node-gyp-build-optional": "optional.js",
+ "node-gyp-build-test": "build-test.js"
+ }
+ },
+ "node_modules/nodemon": {
+ "version": "3.1.13",
+ "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.13.tgz",
+ "integrity": "sha512-nPN6L7A9cTA3BnJ3zZIibH5FiDh3GbmibeS17bl5YEU1IRO2mcfvR0ZJXH3ndoeKItjUcaX81FSKc/Kq/IiG6g==",
+ "dev": true,
+ "dependencies": {
+ "chokidar": "^3.5.2",
+ "debug": "^4",
+ "ignore-by-default": "^1.0.1",
+ "minimatch": "^10.2.1",
+ "pstree.remy": "^1.1.8",
+ "semver": "^7.5.3",
+ "simple-update-notifier": "^2.0.0",
+ "supports-color": "^5.5.0",
+ "touch": "^3.1.0",
+ "undefsafe": "^2.0.5"
+ },
+ "bin": {
+ "nodemon": "bin/nodemon.js"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/nodemon"
+ }
+ },
+ "node_modules/nodemon/node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/nodemon/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/on-headers": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz",
+ "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
+ "license": "MIT"
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "license": "MIT",
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/pstree.remy": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
+ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/qs": {
+ "version": "6.14.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
+ "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
+ "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "~3.1.2",
+ "http-errors": "~2.0.1",
+ "iconv-lite": "~0.4.24",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "license": "MIT"
+ },
+ "node_modules/semver": {
+ "version": "7.7.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/send": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
+ "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "~0.5.2",
+ "http-errors": "~2.0.1",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "~2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "~2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/serve-static": {
+ "version": "1.16.3",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
+ "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
+ "license": "MIT",
+ "dependencies": {
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "~0.19.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "license": "ISC"
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/simple-update-notifier": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/sql-escaper": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/sql-escaper/-/sql-escaper-1.3.3.tgz",
+ "integrity": "sha512-BsTCV265VpTp8tm1wyIm1xqQCS+Q9NHx2Sr+WcnUrgLrQ6yiDIvHYJV5gHxsj1lMBy2zm5twLaZao8Jd+S8JJw==",
+ "engines": {
+ "bun": ">=1.0.0",
+ "deno": ">=2.0.0",
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/mysqljs/sql-escaper?sponsor=1"
+ }
+ },
+ "node_modules/statuses": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/touch": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
+ "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "nodetouch": "bin/nodetouch.js"
+ }
+ },
+ "node_modules/ts-mixer": {
+ "version": "6.0.4",
+ "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.4.tgz",
+ "integrity": "sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA=="
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "license": "MIT",
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/undefsafe": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
+ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/undici": {
+ "version": "6.21.3",
+ "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz",
+ "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==",
+ "engines": {
+ "node": ">=18.17"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "7.18.2",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
+ "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w=="
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/ws": {
+ "version": "8.19.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
+ "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ }
+ }
+}
diff --git a/node_modules/@discordjs/builders/LICENSE b/node_modules/@discordjs/builders/LICENSE
new file mode 100644
index 0000000..cbe9c65
--- /dev/null
+++ b/node_modules/@discordjs/builders/LICENSE
@@ -0,0 +1,191 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2021 Noel Buechler
+ Copyright 2021 Vlad Frangu
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/node_modules/@discordjs/builders/README.md b/node_modules/@discordjs/builders/README.md
new file mode 100644
index 0000000..626d709
--- /dev/null
+++ b/node_modules/@discordjs/builders/README.md
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## About
+
+`@discordjs/builders` is a utility package for easily building Discord API payloads.
+
+## Installation
+
+**Node.js 16.11.0 or newer is required.**
+
+```sh
+npm install @discordjs/builders
+yarn add @discordjs/builders
+pnpm add @discordjs/builders
+```
+
+## Examples
+
+You can find examples of how to use the builders in the [Slash Command Builders][example] examples.
+
+## Links
+
+- [Website][website] ([source][website-source])
+- [Documentation][documentation]
+- [Guide][guide] ([source][guide-source])
+ Also see the v13 to v14 [Update Guide][guide-update], which includes updated and removed items from the library.
+- [discord.js Discord server][discord]
+- [Discord API Discord server][discord-api]
+- [GitHub][source]
+- [npm][npm]
+- [Related libraries][related-libs]
+
+## Contributing
+
+Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the
+[documentation][documentation].
+See [the contribution guide][contributing] if you'd like to submit a PR.
+
+## Help
+
+If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official [discord.js Server][discord].
+
+[example]: https://github.com/discordjs/discord.js/blob/main/packages/builders/docs/examples/Slash%20Command%20Builders.md
+[website]: https://discord.js.org
+[website-source]: https://github.com/discordjs/discord.js/tree/main/apps/website
+[documentation]: https://discord.js.org/docs/packages/builders/stable
+[guide]: https://discordjs.guide/
+[guide-source]: https://github.com/discordjs/guide
+[guide-update]: https://discordjs.guide/additional-info/changes-in-v14.html
+[discord]: https://discord.gg/djs
+[discord-api]: https://discord.gg/discord-api
+[source]: https://github.com/discordjs/discord.js/tree/main/packages/builders
+[npm]: https://www.npmjs.com/package/@discordjs/builders
+[related-libs]: https://discord.com/developers/docs/topics/community-resources#libraries
+[contributing]: https://github.com/discordjs/discord.js/blob/main/.github/CONTRIBUTING.md
diff --git a/node_modules/@discordjs/builders/dist/index.d.mts b/node_modules/@discordjs/builders/dist/index.d.mts
new file mode 100644
index 0000000..ed32ea0
--- /dev/null
+++ b/node_modules/@discordjs/builders/dist/index.d.mts
@@ -0,0 +1,14826 @@
+import * as _sapphire_shapeshift from '@sapphire/shapeshift';
+import { APIEmbedField, APIEmbedAuthor, APIEmbedFooter, APIEmbedImage, APIEmbed, APISelectMenuOption, APIMessageComponentEmoji, ButtonStyle, ChannelType, APIBaseComponent, ComponentType, APIActionRowComponent, APIComponentInActionRow, APIMessageComponent, APIModalComponent, APIButtonComponent, Snowflake, APISelectMenuComponent, APIChannelSelectComponent, APIMentionableSelectComponent, APISelectMenuDefaultValue, SelectMenuDefaultValueType, APIRoleSelectComponent, APIStringSelectComponent, APIUserSelectComponent, APITextInputComponent, TextInputStyle, APIComponentInMessageActionRow, APIComponentInModalActionRow, APIFileUploadComponent, APILabelComponent, APIFileComponent, APISeparatorComponent, SeparatorSpacingSize, APITextDisplayComponent, APIContainerComponent, APIMediaGalleryComponent, APISectionComponent, APIComponentInContainer, APIMediaGalleryItem, APIThumbnailComponent, APIModalInteractionResponseCallbackData, LocalizationMap, LocaleString, InteractionContextType, Permissions, ApplicationIntegrationType, RESTPostAPIChatInputApplicationCommandsJSONBody, ApplicationCommandOptionType, APIApplicationCommandBasicOption, APIApplicationCommandAttachmentOption, APIApplicationCommandBooleanOption, APIApplicationCommandChannelOption, APIApplicationCommandOptionChoice, APIApplicationCommandIntegerOption, APIApplicationCommandMentionableOption, APIApplicationCommandNumberOption, APIApplicationCommandRoleOption, APIApplicationCommandStringOption, APIApplicationCommandUserOption, APIApplicationCommandSubcommandOption, APIApplicationCommandSubcommandGroupOption, APIApplicationCommandOption, Locale, ApplicationCommandType, RESTPostAPIContextMenuApplicationCommandsJSONBody } from 'discord-api-types/v10';
+export * from '@discordjs/formatters';
+import { JSONEncodable, Equatable } from '@discordjs/util';
+
+declare const fieldNamePredicate: _sapphire_shapeshift.StringValidator;
+declare const fieldValuePredicate: _sapphire_shapeshift.StringValidator;
+declare const fieldInlinePredicate: _sapphire_shapeshift.UnionValidator;
+declare const embedFieldPredicate: _sapphire_shapeshift.ObjectValidator<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}>>;
+declare const embedFieldsArrayPredicate: _sapphire_shapeshift.ArrayValidator<_sapphire_shapeshift.UndefinedToOptional<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}>[], _sapphire_shapeshift.UndefinedToOptional<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}>>;
+declare const fieldLengthPredicate: _sapphire_shapeshift.NumberValidator;
+declare function validateFieldLength(amountAdding: number, fields?: APIEmbedField[]): void;
+declare const authorNamePredicate: _sapphire_shapeshift.UnionValidator;
+declare const imageURLPredicate: _sapphire_shapeshift.UnionValidator;
+declare const urlPredicate: _sapphire_shapeshift.UnionValidator;
+declare const embedAuthorPredicate: _sapphire_shapeshift.ObjectValidator<{
+ name: string | null;
+ iconURL: string | null | undefined;
+ url: string | null | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ name: string | null;
+ iconURL: string | null | undefined;
+ url: string | null | undefined;
+}>>;
+declare const RGBPredicate: _sapphire_shapeshift.NumberValidator;
+declare const colorPredicate: _sapphire_shapeshift.UnionValidator;
+declare const descriptionPredicate$1: _sapphire_shapeshift.UnionValidator;
+declare const footerTextPredicate: _sapphire_shapeshift.UnionValidator;
+declare const embedFooterPredicate: _sapphire_shapeshift.ObjectValidator<{
+ text: string | null;
+ iconURL: string | null | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ text: string | null;
+ iconURL: string | null | undefined;
+}>>;
+declare const timestampPredicate: _sapphire_shapeshift.UnionValidator;
+declare const titlePredicate: _sapphire_shapeshift.UnionValidator;
+
+declare const Assertions$9_RGBPredicate: typeof RGBPredicate;
+declare const Assertions$9_authorNamePredicate: typeof authorNamePredicate;
+declare const Assertions$9_colorPredicate: typeof colorPredicate;
+declare const Assertions$9_embedAuthorPredicate: typeof embedAuthorPredicate;
+declare const Assertions$9_embedFieldPredicate: typeof embedFieldPredicate;
+declare const Assertions$9_embedFieldsArrayPredicate: typeof embedFieldsArrayPredicate;
+declare const Assertions$9_embedFooterPredicate: typeof embedFooterPredicate;
+declare const Assertions$9_fieldInlinePredicate: typeof fieldInlinePredicate;
+declare const Assertions$9_fieldLengthPredicate: typeof fieldLengthPredicate;
+declare const Assertions$9_fieldNamePredicate: typeof fieldNamePredicate;
+declare const Assertions$9_fieldValuePredicate: typeof fieldValuePredicate;
+declare const Assertions$9_footerTextPredicate: typeof footerTextPredicate;
+declare const Assertions$9_imageURLPredicate: typeof imageURLPredicate;
+declare const Assertions$9_timestampPredicate: typeof timestampPredicate;
+declare const Assertions$9_titlePredicate: typeof titlePredicate;
+declare const Assertions$9_urlPredicate: typeof urlPredicate;
+declare const Assertions$9_validateFieldLength: typeof validateFieldLength;
+declare namespace Assertions$9 {
+ export { Assertions$9_RGBPredicate as RGBPredicate, Assertions$9_authorNamePredicate as authorNamePredicate, Assertions$9_colorPredicate as colorPredicate, descriptionPredicate$1 as descriptionPredicate, Assertions$9_embedAuthorPredicate as embedAuthorPredicate, Assertions$9_embedFieldPredicate as embedFieldPredicate, Assertions$9_embedFieldsArrayPredicate as embedFieldsArrayPredicate, Assertions$9_embedFooterPredicate as embedFooterPredicate, Assertions$9_fieldInlinePredicate as fieldInlinePredicate, Assertions$9_fieldLengthPredicate as fieldLengthPredicate, Assertions$9_fieldNamePredicate as fieldNamePredicate, Assertions$9_fieldValuePredicate as fieldValuePredicate, Assertions$9_footerTextPredicate as footerTextPredicate, Assertions$9_imageURLPredicate as imageURLPredicate, Assertions$9_timestampPredicate as timestampPredicate, Assertions$9_titlePredicate as titlePredicate, Assertions$9_urlPredicate as urlPredicate, Assertions$9_validateFieldLength as validateFieldLength };
+}
+
+/**
+ * Normalizes data that is a rest parameter or an array into an array with a depth of 1.
+ *
+ * @typeParam ItemType - The data that must satisfy {@link RestOrArray}.
+ * @param arr - The (possibly variadic) data to normalize
+ */
+declare function normalizeArray(arr: RestOrArray): ItemType[];
+/**
+ * Represents data that may be an array or came from a rest parameter.
+ *
+ * @remarks
+ * This type is used throughout builders to ensure both an array and variadic arguments
+ * may be used. It is normalized with {@link normalizeArray}.
+ */
+type RestOrArray = Type[] | [Type[]];
+
+/**
+ * A tuple satisfying the RGB color model.
+ *
+ * @see {@link https://developer.mozilla.org/docs/Glossary/RGB}
+ */
+type RGBTuple = [red: number, green: number, blue: number];
+/**
+ * The base icon data typically used in payloads.
+ */
+interface IconData {
+ /**
+ * The URL of the icon.
+ */
+ iconURL?: string;
+ /**
+ * The proxy URL of the icon.
+ */
+ proxyIconURL?: string;
+}
+/**
+ * Represents the author data of an embed.
+ */
+interface EmbedAuthorData extends IconData, Omit {
+}
+/**
+ * Represents the author options of an embed.
+ */
+interface EmbedAuthorOptions extends Omit {
+}
+/**
+ * Represents the footer data of an embed.
+ */
+interface EmbedFooterData extends IconData, Omit {
+}
+/**
+ * Represents the footer options of an embed.
+ */
+interface EmbedFooterOptions extends Omit {
+}
+/**
+ * Represents the image data of an embed.
+ */
+interface EmbedImageData extends Omit {
+ /**
+ * The proxy URL for the image.
+ */
+ proxyURL?: string;
+}
+/**
+ * A builder that creates API-compatible JSON data for embeds.
+ */
+declare class EmbedBuilder {
+ /**
+ * The API data associated with this embed.
+ */
+ readonly data: APIEmbed;
+ /**
+ * Creates a new embed from API data.
+ *
+ * @param data - The API data to create this embed with
+ */
+ constructor(data?: APIEmbed);
+ /**
+ * Appends fields to the embed.
+ *
+ * @remarks
+ * This method accepts either an array of fields or a variable number of field parameters.
+ * The maximum amount of fields that can be added is 25.
+ * @example
+ * Using an array:
+ * ```ts
+ * const fields: APIEmbedField[] = ...;
+ * const embed = new EmbedBuilder()
+ * .addFields(fields);
+ * ```
+ * @example
+ * Using rest parameters (variadic):
+ * ```ts
+ * const embed = new EmbedBuilder()
+ * .addFields(
+ * { name: 'Field 1', value: 'Value 1' },
+ * { name: 'Field 2', value: 'Value 2' },
+ * );
+ * ```
+ * @param fields - The fields to add
+ */
+ addFields(...fields: RestOrArray): this;
+ /**
+ * Removes, replaces, or inserts fields for this embed.
+ *
+ * @remarks
+ * This method behaves similarly
+ * to {@link https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/splice | Array.prototype.splice()}.
+ * The maximum amount of fields that can be added is 25.
+ *
+ * It's useful for modifying and adjusting order of the already-existing fields of an embed.
+ * @example
+ * Remove the first field:
+ * ```ts
+ * embed.spliceFields(0, 1);
+ * ```
+ * @example
+ * Remove the first n fields:
+ * ```ts
+ * const n = 4;
+ * embed.spliceFields(0, n);
+ * ```
+ * @example
+ * Remove the last field:
+ * ```ts
+ * embed.spliceFields(-1, 1);
+ * ```
+ * @param index - The index to start at
+ * @param deleteCount - The number of fields to remove
+ * @param fields - The replacing field objects
+ */
+ spliceFields(index: number, deleteCount: number, ...fields: APIEmbedField[]): this;
+ /**
+ * Sets the fields for this embed.
+ *
+ * @remarks
+ * This method is an alias for {@link EmbedBuilder.spliceFields}. More specifically,
+ * it splices the entire array of fields, replacing them with the provided fields.
+ *
+ * You can set a maximum of 25 fields.
+ * @param fields - The fields to set
+ */
+ setFields(...fields: RestOrArray): this;
+ /**
+ * Sets the author of this embed.
+ *
+ * @param options - The options to use
+ */
+ setAuthor(options: EmbedAuthorOptions | null): this;
+ /**
+ * Sets the color of this embed.
+ *
+ * @param color - The color to use
+ */
+ setColor(color: RGBTuple | number | null): this;
+ /**
+ * Sets the description of this embed.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string | null): this;
+ /**
+ * Sets the footer of this embed.
+ *
+ * @param options - The footer to use
+ */
+ setFooter(options: EmbedFooterOptions | null): this;
+ /**
+ * Sets the image of this embed.
+ *
+ * @param url - The image URL to use
+ */
+ setImage(url: string | null): this;
+ /**
+ * Sets the thumbnail of this embed.
+ *
+ * @param url - The thumbnail URL to use
+ */
+ setThumbnail(url: string | null): this;
+ /**
+ * Sets the timestamp of this embed.
+ *
+ * @param timestamp - The timestamp or date to use
+ */
+ setTimestamp(timestamp?: Date | number | null): this;
+ /**
+ * Sets the title for this embed.
+ *
+ * @param title - The title to use
+ */
+ setTitle(title: string | null): this;
+ /**
+ * Sets the URL of this embed.
+ *
+ * @param url - The URL to use
+ */
+ setURL(url: string | null): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): APIEmbed;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for string select menu options.
+ */
+declare class StringSelectMenuOptionBuilder implements JSONEncodable {
+ data: Partial;
+ /**
+ * Creates a new string select menu option from API data.
+ *
+ * @param data - The API data to create this string select menu option with
+ * @example
+ * Creating a string select menu option from an API data object:
+ * ```ts
+ * const selectMenuOption = new SelectMenuOptionBuilder({
+ * label: 'catchy label',
+ * value: '1',
+ * });
+ * ```
+ * @example
+ * Creating a string select menu option using setters and API data:
+ * ```ts
+ * const selectMenuOption = new SelectMenuOptionBuilder({
+ * default: true,
+ * value: '1',
+ * })
+ * .setLabel('woah');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the label for this option.
+ *
+ * @param label - The label to use
+ */
+ setLabel(label: string): this;
+ /**
+ * Sets the value for this option.
+ *
+ * @param value - The value to use
+ */
+ setValue(value: string): this;
+ /**
+ * Sets the description for this option.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string): this;
+ /**
+ * Sets whether this option is selected by default.
+ *
+ * @param isDefault - Whether this option is selected by default
+ */
+ setDefault(isDefault?: boolean): this;
+ /**
+ * Sets the emoji to display for this option.
+ *
+ * @param emoji - The emoji to use
+ */
+ setEmoji(emoji: APIMessageComponentEmoji): this;
+ /**
+ * {@inheritDoc BaseSelectMenuBuilder.toJSON}
+ */
+ toJSON(): APISelectMenuOption;
+}
+
+declare const idValidator: _sapphire_shapeshift.NumberValidator;
+declare const customIdValidator: _sapphire_shapeshift.StringValidator;
+declare const emojiValidator: _sapphire_shapeshift.ObjectValidator<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+}>>;
+declare const disabledValidator: _sapphire_shapeshift.BooleanValidator;
+declare const buttonLabelValidator: _sapphire_shapeshift.StringValidator;
+declare const buttonStyleValidator: _sapphire_shapeshift.NativeEnumValidator;
+declare const placeholderValidator$1: _sapphire_shapeshift.StringValidator;
+declare const minMaxValidator: _sapphire_shapeshift.NumberValidator;
+declare const labelValueDescriptionValidator: _sapphire_shapeshift.StringValidator;
+/**
+ * @deprecated Replaced with selectMenuStringOptionPredicate.
+ */
+declare const jsonOptionValidator: _sapphire_shapeshift.ObjectValidator<{
+ label: string;
+ value: string;
+ description: string | undefined;
+ emoji: _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+ }> | undefined;
+ default: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ label: string;
+ value: string;
+ description: string | undefined;
+ emoji: _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+ }> | undefined;
+ default: boolean | undefined;
+}>>;
+declare const optionValidator: _sapphire_shapeshift.InstanceValidator;
+declare const optionsValidator: _sapphire_shapeshift.ArrayValidator;
+declare const optionsLengthValidator: _sapphire_shapeshift.NumberValidator;
+declare function validateRequiredSelectMenuParameters(options: StringSelectMenuOptionBuilder[], customId?: string): void;
+declare const defaultValidator: _sapphire_shapeshift.BooleanValidator;
+declare function validateRequiredSelectMenuOptionParameters(label?: string, value?: string): void;
+declare const channelTypesValidator: _sapphire_shapeshift.ArrayValidator;
+declare const urlValidator: _sapphire_shapeshift.StringValidator;
+declare function validateRequiredButtonParameters(style?: ButtonStyle, label?: string, emoji?: APIMessageComponentEmoji, customId?: string, skuId?: string, url?: string): void;
+
+declare const Assertions$8_buttonLabelValidator: typeof buttonLabelValidator;
+declare const Assertions$8_buttonStyleValidator: typeof buttonStyleValidator;
+declare const Assertions$8_channelTypesValidator: typeof channelTypesValidator;
+declare const Assertions$8_customIdValidator: typeof customIdValidator;
+declare const Assertions$8_defaultValidator: typeof defaultValidator;
+declare const Assertions$8_disabledValidator: typeof disabledValidator;
+declare const Assertions$8_emojiValidator: typeof emojiValidator;
+declare const Assertions$8_idValidator: typeof idValidator;
+declare const Assertions$8_jsonOptionValidator: typeof jsonOptionValidator;
+declare const Assertions$8_labelValueDescriptionValidator: typeof labelValueDescriptionValidator;
+declare const Assertions$8_minMaxValidator: typeof minMaxValidator;
+declare const Assertions$8_optionValidator: typeof optionValidator;
+declare const Assertions$8_optionsLengthValidator: typeof optionsLengthValidator;
+declare const Assertions$8_optionsValidator: typeof optionsValidator;
+declare const Assertions$8_urlValidator: typeof urlValidator;
+declare const Assertions$8_validateRequiredButtonParameters: typeof validateRequiredButtonParameters;
+declare const Assertions$8_validateRequiredSelectMenuOptionParameters: typeof validateRequiredSelectMenuOptionParameters;
+declare const Assertions$8_validateRequiredSelectMenuParameters: typeof validateRequiredSelectMenuParameters;
+declare namespace Assertions$8 {
+ export { Assertions$8_buttonLabelValidator as buttonLabelValidator, Assertions$8_buttonStyleValidator as buttonStyleValidator, Assertions$8_channelTypesValidator as channelTypesValidator, Assertions$8_customIdValidator as customIdValidator, Assertions$8_defaultValidator as defaultValidator, Assertions$8_disabledValidator as disabledValidator, Assertions$8_emojiValidator as emojiValidator, Assertions$8_idValidator as idValidator, Assertions$8_jsonOptionValidator as jsonOptionValidator, Assertions$8_labelValueDescriptionValidator as labelValueDescriptionValidator, Assertions$8_minMaxValidator as minMaxValidator, Assertions$8_optionValidator as optionValidator, Assertions$8_optionsLengthValidator as optionsLengthValidator, Assertions$8_optionsValidator as optionsValidator, placeholderValidator$1 as placeholderValidator, Assertions$8_urlValidator as urlValidator, Assertions$8_validateRequiredButtonParameters as validateRequiredButtonParameters, Assertions$8_validateRequiredSelectMenuOptionParameters as validateRequiredSelectMenuOptionParameters, Assertions$8_validateRequiredSelectMenuParameters as validateRequiredSelectMenuParameters };
+}
+
+/**
+ * Any action row component data represented as an object.
+ */
+type AnyAPIActionRowComponent = APIActionRowComponent | APIComponentInActionRow | APIMessageComponent | APIModalComponent;
+/**
+ * The base component builder that contains common symbols for all sorts of components.
+ *
+ * @typeParam DataType - The type of internal API data that is stored within the component
+ */
+declare abstract class ComponentBuilder> = APIBaseComponent> implements JSONEncodable {
+ /**
+ * The API data associated with this component.
+ */
+ readonly data: Partial;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ abstract toJSON(): AnyAPIActionRowComponent;
+ /**
+ * Constructs a new kind of component.
+ *
+ * @param data - The data to construct a component out of
+ */
+ constructor(data: Partial);
+ /**
+ * Sets the id (not the custom id) for this component.
+ *
+ * @param id - The id for this component
+ */
+ setId(id: number): this;
+ /**
+ * Clears the id of this component, defaulting to a default incremented id.
+ */
+ clearId(): this;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for buttons.
+ */
+declare class ButtonBuilder extends ComponentBuilder {
+ /**
+ * Creates a new button from API data.
+ *
+ * @param data - The API data to create this button with
+ * @example
+ * Creating a button from an API data object:
+ * ```ts
+ * const button = new ButtonBuilder({
+ * custom_id: 'a cool button',
+ * style: ButtonStyle.Primary,
+ * label: 'Click Me',
+ * emoji: {
+ * name: 'smile',
+ * id: '123456789012345678',
+ * },
+ * });
+ * ```
+ * @example
+ * Creating a button using setters and API data:
+ * ```ts
+ * const button = new ButtonBuilder({
+ * style: ButtonStyle.Secondary,
+ * label: 'Click Me',
+ * })
+ * .setEmoji({ name: '🙂' })
+ * .setCustomId('another cool button');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the style of this button.
+ *
+ * @param style - The style to use
+ */
+ setStyle(style: ButtonStyle): this;
+ /**
+ * Sets the URL for this button.
+ *
+ * @remarks
+ * This method is only available to buttons using the `Link` button style.
+ * Only three types of URL schemes are currently supported: `https://`, `http://`, and `discord://`.
+ * @param url - The URL to use
+ */
+ setURL(url: string): this;
+ /**
+ * Sets the custom id for this button.
+ *
+ * @remarks
+ * This method is only applicable to buttons that are not using the `Link` button style.
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Sets the SKU id that represents a purchasable SKU for this button.
+ *
+ * @remarks Only available when using premium-style buttons.
+ * @param skuId - The SKU id to use
+ */
+ setSKUId(skuId: Snowflake): this;
+ /**
+ * Sets the emoji to display on this button.
+ *
+ * @param emoji - The emoji to use
+ */
+ setEmoji(emoji: APIMessageComponentEmoji): this;
+ /**
+ * Sets whether this button is disabled.
+ *
+ * @param disabled - Whether to disable this button
+ */
+ setDisabled(disabled?: boolean): this;
+ /**
+ * Sets the label for this button.
+ *
+ * @param label - The label to use
+ */
+ setLabel(label: string): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIButtonComponent;
+}
+
+/**
+ * The base select menu builder that contains common symbols for select menu builders.
+ *
+ * @typeParam SelectMenuType - The type of select menu this would be instantiated for.
+ */
+declare abstract class BaseSelectMenuBuilder extends ComponentBuilder {
+ /**
+ * Sets the placeholder for this select menu.
+ *
+ * @param placeholder - The placeholder to use
+ */
+ setPlaceholder(placeholder: string): this;
+ /**
+ * Sets the minimum values that must be selected in the select menu.
+ *
+ * @param minValues - The minimum values that must be selected
+ */
+ setMinValues(minValues: number): this;
+ /**
+ * Sets the maximum values that can be selected in the select menu.
+ *
+ * @param maxValues - The maximum values that can be selected
+ */
+ setMaxValues(maxValues: number): this;
+ /**
+ * Sets the custom id for this select menu.
+ *
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Sets whether this select menu is disabled.
+ *
+ * @param disabled - Whether this select menu is disabled
+ */
+ setDisabled(disabled?: boolean): this;
+ /**
+ * Sets whether this select menu is required.
+ *
+ * @remarks Only for use in modals.
+ * @param required - Whether this select menu is required
+ */
+ setRequired(required?: boolean): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): SelectMenuType;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for channel select menus.
+ */
+declare class ChannelSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new ChannelSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new ChannelSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .addChannelTypes(ChannelType.GuildText, ChannelType.GuildAnnouncement)
+ * .setMinValues(2);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds channel types to this select menu.
+ *
+ * @param types - The channel types to use
+ */
+ addChannelTypes(...types: RestOrArray): this;
+ /**
+ * Sets channel types for this select menu.
+ *
+ * @param types - The channel types to use
+ */
+ setChannelTypes(...types: RestOrArray): this;
+ /**
+ * Adds default channels to this auto populated select menu.
+ *
+ * @param channels - The channels to add
+ */
+ addDefaultChannels(...channels: RestOrArray): this;
+ /**
+ * Sets default channels for this auto populated select menu.
+ *
+ * @param channels - The channels to set
+ */
+ setDefaultChannels(...channels: RestOrArray): this;
+ /**
+ * {@inheritDoc BaseSelectMenuBuilder.toJSON}
+ */
+ toJSON(): APIChannelSelectComponent;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for mentionable select menus.
+ */
+declare class MentionableSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new MentionableSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new MentionableSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .setMinValues(1);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds default roles to this auto populated select menu.
+ *
+ * @param roles - The roles to add
+ */
+ addDefaultRoles(...roles: RestOrArray): this;
+ /**
+ * Adds default users to this auto populated select menu.
+ *
+ * @param users - The users to add
+ */
+ addDefaultUsers(...users: RestOrArray): this;
+ /**
+ * Adds default values to this auto populated select menu.
+ *
+ * @param values - The values to add
+ */
+ addDefaultValues(...values: RestOrArray | APISelectMenuDefaultValue>): this;
+ /**
+ * Sets default values for this auto populated select menu.
+ *
+ * @param values - The values to set
+ */
+ setDefaultValues(...values: RestOrArray | APISelectMenuDefaultValue>): this;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for role select menus.
+ */
+declare class RoleSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new RoleSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new RoleSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .setMinValues(1);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds default roles to this auto populated select menu.
+ *
+ * @param roles - The roles to add
+ */
+ addDefaultRoles(...roles: RestOrArray): this;
+ /**
+ * Sets default roles for this auto populated select menu.
+ *
+ * @param roles - The roles to set
+ */
+ setDefaultRoles(...roles: RestOrArray): this;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for string select menus.
+ */
+declare class StringSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * The options within this select menu.
+ */
+ readonly options: StringSelectMenuOptionBuilder[];
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new StringSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * options: [
+ * { label: 'option 1', value: '1' },
+ * { label: 'option 2', value: '2' },
+ * { label: 'option 3', value: '3' },
+ * ],
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new StringSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .setMinValues(1)
+ * .addOptions({
+ * label: 'Catchy',
+ * value: 'catch',
+ * });
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds options to this select menu.
+ *
+ * @param options - The options to add
+ */
+ addOptions(...options: RestOrArray): this;
+ /**
+ * Sets the options for this select menu.
+ *
+ * @param options - The options to set
+ */
+ setOptions(...options: RestOrArray): this;
+ /**
+ * Removes, replaces, or inserts options for this select menu.
+ *
+ * @remarks
+ * This method behaves similarly
+ * to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice | Array.prototype.splice()}.
+ * It's useful for modifying and adjusting the order of existing options.
+ * @example
+ * Remove the first option:
+ * ```ts
+ * selectMenu.spliceOptions(0, 1);
+ * ```
+ * @example
+ * Remove the first n option:
+ * ```ts
+ * const n = 4;
+ * selectMenu.spliceOptions(0, n);
+ * ```
+ * @example
+ * Remove the last option:
+ * ```ts
+ * selectMenu.spliceOptions(-1, 1);
+ * ```
+ * @param index - The index to start at
+ * @param deleteCount - The number of options to remove
+ * @param options - The replacing option objects or builders
+ */
+ spliceOptions(index: number, deleteCount: number, ...options: RestOrArray): this;
+ /**
+ * {@inheritDoc BaseSelectMenuBuilder.toJSON}
+ */
+ toJSON(): APIStringSelectComponent;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for user select menus.
+ */
+declare class UserSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new UserSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new UserSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .setMinValues(1);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds default users to this auto populated select menu.
+ *
+ * @param users - The users to add
+ */
+ addDefaultUsers(...users: RestOrArray): this;
+ /**
+ * Sets default users for this auto populated select menu.
+ *
+ * @param users - The users to set
+ */
+ setDefaultUsers(...users: RestOrArray): this;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for text inputs.
+ */
+declare class TextInputBuilder extends ComponentBuilder implements Equatable> {
+ /**
+ * Creates a new text input from API data.
+ *
+ * @param data - The API data to create this text input with
+ * @example
+ * Creating a text input from an API data object:
+ * ```ts
+ * const textInput = new TextInputBuilder({
+ * custom_id: 'a cool text input',
+ * placeholder: 'Type something',
+ * style: TextInputStyle.Short,
+ * });
+ * ```
+ * @example
+ * Creating a text input using setters and API data:
+ * ```ts
+ * const textInput = new TextInputBuilder({
+ * placeholder: 'Type something else',
+ * })
+ * .setCustomId('woah')
+ * .setStyle(TextInputStyle.Paragraph);
+ * ```
+ */
+ constructor(data?: APITextInputComponent & {
+ type?: ComponentType.TextInput;
+ });
+ /**
+ * Sets the custom id for this text input.
+ *
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Sets the label for this text input.
+ *
+ * @param label - The label to use
+ * @deprecated Use a label builder to create a label (and optionally a description) instead.
+ */
+ setLabel(label: string): this;
+ /**
+ * Sets the style for this text input.
+ *
+ * @param style - The style to use
+ */
+ setStyle(style: TextInputStyle): this;
+ /**
+ * Sets the minimum length of text for this text input.
+ *
+ * @param minLength - The minimum length of text for this text input
+ */
+ setMinLength(minLength: number): this;
+ /**
+ * Sets the maximum length of text for this text input.
+ *
+ * @param maxLength - The maximum length of text for this text input
+ */
+ setMaxLength(maxLength: number): this;
+ /**
+ * Sets the placeholder for this text input.
+ *
+ * @param placeholder - The placeholder to use
+ */
+ setPlaceholder(placeholder: string): this;
+ /**
+ * Sets the value for this text input.
+ *
+ * @param value - The value to use
+ */
+ setValue(value: string): this;
+ /**
+ * Sets whether this text input is required.
+ *
+ * @param required - Whether this text input is required
+ */
+ setRequired(required?: boolean): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APITextInputComponent;
+ /**
+ * Whether this is equal to another structure.
+ */
+ equals(other: APITextInputComponent | JSONEncodable): boolean;
+}
+
+/**
+ * The builders that may be used for modals.
+ */
+type ModalComponentBuilder = ActionRowBuilder | ModalActionRowComponentBuilder;
+/**
+ * The builders that may be used within an action row for messages.
+ */
+type MessageActionRowComponentBuilder = ButtonBuilder | ChannelSelectMenuBuilder | MentionableSelectMenuBuilder | RoleSelectMenuBuilder | StringSelectMenuBuilder | UserSelectMenuBuilder;
+/**
+ * The builders that may be used within an action row for modals.
+ */
+type ModalActionRowComponentBuilder = TextInputBuilder;
+/**
+ * Any builder.
+ */
+type AnyComponentBuilder = MessageActionRowComponentBuilder | ModalActionRowComponentBuilder;
+/**
+ * A builder that creates API-compatible JSON data for action rows.
+ *
+ * @typeParam ComponentType - The types of components this action row holds
+ */
+declare class ActionRowBuilder extends ComponentBuilder> {
+ /**
+ * The components within this action row.
+ */
+ readonly components: ComponentType[];
+ /**
+ * Creates a new action row from API data.
+ *
+ * @param data - The API data to create this action row with
+ * @example
+ * Creating an action row from an API data object:
+ * ```ts
+ * const actionRow = new ActionRowBuilder({
+ * components: [
+ * {
+ * custom_id: "custom id",
+ * label: "Type something",
+ * style: TextInputStyle.Short,
+ * type: ComponentType.TextInput,
+ * },
+ * ],
+ * });
+ * ```
+ * @example
+ * Creating an action row using setters and API data:
+ * ```ts
+ * const actionRow = new ActionRowBuilder({
+ * components: [
+ * {
+ * custom_id: "custom id",
+ * label: "Click me",
+ * style: ButtonStyle.Primary,
+ * type: ComponentType.Button,
+ * },
+ * ],
+ * })
+ * .addComponents(button2, button3);
+ * ```
+ */
+ constructor({ components, ...data }?: Partial>);
+ /**
+ * Adds components to this action row.
+ *
+ * @param components - The components to add
+ */
+ addComponents(...components: RestOrArray): this;
+ /**
+ * Sets components for this action row.
+ *
+ * @param components - The components to set
+ */
+ setComponents(...components: RestOrArray): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIActionRowComponent>;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for file uploads.
+ */
+declare class FileUploadBuilder extends ComponentBuilder {
+ /**
+ * Creates a new file upload.
+ *
+ * @param data - The API data to create this file upload with
+ * @example
+ * Creating a file upload from an API data object:
+ * ```ts
+ * const fileUpload = new FileUploadBuilder({
+ * custom_id: "file_upload",
+ * min_values: 2,
+ * max_values: 5,
+ * });
+ * ```
+ * @example
+ * Creating a file upload using setters and API data:
+ * ```ts
+ * const fileUpload = new FileUploadBuilder({
+ * custom_id: "file_upload",
+ * min_values: 2,
+ * max_values: 5,
+ * }).setRequired();
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the custom id for this file upload.
+ *
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Sets the minimum number of file uploads required.
+ *
+ * @param minValues - The minimum values that must be uploaded
+ */
+ setMinValues(minValues: number): this;
+ /**
+ * Clears the minimum values.
+ */
+ clearMinValues(): this;
+ /**
+ * Sets the maximum number of file uploads required.
+ *
+ * @param maxValues - The maximum values that can be uploaded
+ */
+ setMaxValues(maxValues: number): this;
+ /**
+ * Clears the maximum values.
+ */
+ clearMaxValues(): this;
+ /**
+ * Sets whether this file upload is required.
+ *
+ * @param required - Whether this file upload is required
+ */
+ setRequired(required?: boolean): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIFileUploadComponent;
+}
+
+interface LabelBuilderData extends Partial> {
+ component?: ChannelSelectMenuBuilder | FileUploadBuilder | MentionableSelectMenuBuilder | RoleSelectMenuBuilder | StringSelectMenuBuilder | TextInputBuilder | UserSelectMenuBuilder;
+}
+/**
+ * A builder that creates API-compatible JSON data for labels.
+ */
+declare class LabelBuilder extends ComponentBuilder {
+ /**
+ * @internal
+ */
+ readonly data: LabelBuilderData;
+ /**
+ * Creates a new label.
+ *
+ * @param data - The API data to create this label with
+ * @example
+ * Creating a label from an API data object:
+ * ```ts
+ * const label = new LabelBuilder({
+ * label: "label",
+ * component,
+ * });
+ * ```
+ * @example
+ * Creating a label using setters and API data:
+ * ```ts
+ * const label = new LabelBuilder({
+ * label: 'label',
+ * component,
+ * }).setLabel('new text');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the label for this label.
+ *
+ * @param label - The label to use
+ */
+ setLabel(label: string): this;
+ /**
+ * Sets the description for this label.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string): this;
+ /**
+ * Clears the description for this label.
+ */
+ clearDescription(): this;
+ /**
+ * Sets a string select menu component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setStringSelectMenuComponent(input: APIStringSelectComponent | StringSelectMenuBuilder | ((builder: StringSelectMenuBuilder) => StringSelectMenuBuilder)): this;
+ /**
+ * Sets a user select menu component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setUserSelectMenuComponent(input: APIUserSelectComponent | UserSelectMenuBuilder | ((builder: UserSelectMenuBuilder) => UserSelectMenuBuilder)): this;
+ /**
+ * Sets a role select menu component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setRoleSelectMenuComponent(input: APIRoleSelectComponent | RoleSelectMenuBuilder | ((builder: RoleSelectMenuBuilder) => RoleSelectMenuBuilder)): this;
+ /**
+ * Sets a mentionable select menu component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setMentionableSelectMenuComponent(input: APIMentionableSelectComponent | MentionableSelectMenuBuilder | ((builder: MentionableSelectMenuBuilder) => MentionableSelectMenuBuilder)): this;
+ /**
+ * Sets a channel select menu component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setChannelSelectMenuComponent(input: APIChannelSelectComponent | ChannelSelectMenuBuilder | ((builder: ChannelSelectMenuBuilder) => ChannelSelectMenuBuilder)): this;
+ /**
+ * Sets a text input component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setTextInputComponent(input: APITextInputComponent | TextInputBuilder | ((builder: TextInputBuilder) => TextInputBuilder)): this;
+ /**
+ * Sets a file upload component to this label.
+ *
+ * @param input - A function that returns a component builder or an already built builder
+ */
+ setFileUploadComponent(input: APIFileUploadComponent | FileUploadBuilder | ((builder: FileUploadBuilder) => FileUploadBuilder)): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APILabelComponent;
+}
+
+declare class FileBuilder extends ComponentBuilder {
+ /**
+ * Creates a new file from API data.
+ *
+ * @param data - The API data to create this file with
+ * @example
+ * Creating a file from an API data object:
+ * ```ts
+ * const file = new FileBuilder({
+ * spoiler: true,
+ * file: {
+ * url: 'attachment://file.png',
+ * },
+ * });
+ * ```
+ * @example
+ * Creating a file using setters and API data:
+ * ```ts
+ * const file = new FileBuilder({
+ * file: {
+ * url: 'attachment://image.jpg',
+ * },
+ * })
+ * .setSpoiler(false);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the spoiler status of this file.
+ *
+ * @param spoiler - The spoiler status to use
+ */
+ setSpoiler(spoiler?: boolean): this;
+ /**
+ * Sets the media URL of this file.
+ *
+ * @param url - The URL to use
+ */
+ setURL(url: string): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIFileComponent;
+}
+
+declare class SeparatorBuilder extends ComponentBuilder {
+ /**
+ * Creates a new separator from API data.
+ *
+ * @param data - The API data to create this separator with
+ * @example
+ * Creating a separator from an API data object:
+ * ```ts
+ * const separator = new SeparatorBuilder({
+ * spacing: SeparatorSpacingSize.Small,
+ * divider: true,
+ * });
+ * ```
+ * @example
+ * Creating a separator using setters and API data:
+ * ```ts
+ * const separator = new SeparatorBuilder({
+ * spacing: SeparatorSpacingSize.Large,
+ * })
+ * .setDivider(false);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets whether this separator should show a divider line.
+ *
+ * @param divider - Whether to show a divider line
+ */
+ setDivider(divider?: boolean): this;
+ /**
+ * Sets the spacing of this separator.
+ *
+ * @param spacing - The spacing to use
+ */
+ setSpacing(spacing: SeparatorSpacingSize): this;
+ /**
+ * Clears the spacing of this separator.
+ */
+ clearSpacing(): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APISeparatorComponent;
+}
+
+declare class TextDisplayBuilder extends ComponentBuilder {
+ /**
+ * Creates a new text display from API data.
+ *
+ * @param data - The API data to create this text display with
+ * @example
+ * Creating a text display from an API data object:
+ * ```ts
+ * const textDisplay = new TextDisplayBuilder({
+ * content: 'some text',
+ * });
+ * ```
+ * @example
+ * Creating a text display using setters and API data:
+ * ```ts
+ * const textDisplay = new TextDisplayBuilder({
+ * content: 'old text',
+ * })
+ * .setContent('new text');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the text of this text display.
+ *
+ * @param content - The text to use
+ */
+ setContent(content: string): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APITextDisplayComponent;
+}
+
+/**
+ * The builders that may be used within a container.
+ */
+type ContainerComponentBuilder = ActionRowBuilder | FileBuilder | MediaGalleryBuilder | SectionBuilder | SeparatorBuilder | TextDisplayBuilder;
+/**
+ * A builder that creates API-compatible JSON data for a container.
+ */
+declare class ContainerBuilder extends ComponentBuilder {
+ /**
+ * The components within this container.
+ */
+ readonly components: ContainerComponentBuilder[];
+ /**
+ * Creates a new container from API data.
+ *
+ * @param data - The API data to create this container with
+ * @example
+ * Creating a container from an API data object:
+ * ```ts
+ * const container = new ContainerBuilder({
+ * components: [
+ * {
+ * content: "Some text here",
+ * type: ComponentType.TextDisplay,
+ * },
+ * ],
+ * });
+ * ```
+ * @example
+ * Creating a container using setters and API data:
+ * ```ts
+ * const container = new ContainerBuilder({
+ * components: [
+ * {
+ * content: "# Heading",
+ * type: ComponentType.TextDisplay,
+ * },
+ * ],
+ * })
+ * .addSeparatorComponents(separator)
+ * .addSectionComponents(section);
+ * ```
+ */
+ constructor({ components, ...data }?: Partial);
+ /**
+ * Sets the accent color of this container.
+ *
+ * @param color - The color to use
+ */
+ setAccentColor(color?: RGBTuple | number): this;
+ /**
+ * Clears the accent color of this container.
+ */
+ clearAccentColor(): this;
+ /**
+ * Adds action row components to this container.
+ *
+ * @param components - The action row components to add
+ */
+ addActionRowComponents(...components: RestOrArray | APIActionRowComponent | ((builder: ActionRowBuilder) => ActionRowBuilder)>): this;
+ /**
+ * Adds file components to this container.
+ *
+ * @param components - The file components to add
+ */
+ addFileComponents(...components: RestOrArray FileBuilder)>): this;
+ /**
+ * Adds media gallery components to this container.
+ *
+ * @param components - The media gallery components to add
+ */
+ addMediaGalleryComponents(...components: RestOrArray MediaGalleryBuilder)>): this;
+ /**
+ * Adds section components to this container.
+ *
+ * @param components - The section components to add
+ */
+ addSectionComponents(...components: RestOrArray SectionBuilder)>): this;
+ /**
+ * Adds separator components to this container.
+ *
+ * @param components - The separator components to add
+ */
+ addSeparatorComponents(...components: RestOrArray SeparatorBuilder)>): this;
+ /**
+ * Adds text display components to this container.
+ *
+ * @param components - The text display components to add
+ */
+ addTextDisplayComponents(...components: RestOrArray TextDisplayBuilder)>): this;
+ /**
+ * Removes, replaces, or inserts components for this container.
+ *
+ * @param index - The index to start removing, replacing or inserting components
+ * @param deleteCount - The amount of components to remove
+ * @param components - The components to set
+ */
+ spliceComponents(index: number, deleteCount: number, ...components: RestOrArray): this;
+ /**
+ * Sets the spoiler status of this container.
+ *
+ * @param spoiler - The spoiler status to use
+ */
+ setSpoiler(spoiler?: boolean): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIContainerComponent;
+}
+
+declare class MediaGalleryItemBuilder implements JSONEncodable {
+ /**
+ * The API data associated with this media gallery item.
+ */
+ readonly data: Partial;
+ /**
+ * Creates a new media gallery item from API data.
+ *
+ * @param data - The API data to create this media gallery item with
+ * @example
+ * Creating a media gallery item from an API data object:
+ * ```ts
+ * const item = new MediaGalleryItemBuilder({
+ * description: "Some text here",
+ * media: {
+ * url: 'https://cdn.discordapp.com/embed/avatars/2.png',
+ * },
+ * });
+ * ```
+ * @example
+ * Creating a media gallery item using setters and API data:
+ * ```ts
+ * const item = new MediaGalleryItemBuilder({
+ * media: {
+ * url: 'https://cdn.discordapp.com/embed/avatars/5.png',
+ * },
+ * })
+ * .setDescription("alt text");
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the description of this media gallery item.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string): this;
+ /**
+ * Clears the description of this media gallery item.
+ */
+ clearDescription(): this;
+ /**
+ * Sets the spoiler status of this media gallery item.
+ *
+ * @param spoiler - The spoiler status to use
+ */
+ setSpoiler(spoiler?: boolean): this;
+ /**
+ * Sets the media URL of this media gallery item.
+ *
+ * @param url - The URL to use
+ */
+ setURL(url: string): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): APIMediaGalleryItem;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for a container.
+ */
+declare class MediaGalleryBuilder extends ComponentBuilder {
+ /**
+ * The components within this container.
+ */
+ readonly items: MediaGalleryItemBuilder[];
+ /**
+ * Creates a new media gallery from API data.
+ *
+ * @param data - The API data to create this media gallery with
+ * @example
+ * Creating a media gallery from an API data object:
+ * ```ts
+ * const mediaGallery = new MediaGalleryBuilder({
+ * items: [
+ * {
+ * description: "Some text here",
+ * media: {
+ * url: 'https://cdn.discordapp.com/embed/avatars/2.png',
+ * },
+ * },
+ * ],
+ * });
+ * ```
+ * @example
+ * Creating a media gallery using setters and API data:
+ * ```ts
+ * const mediaGallery = new MediaGalleryBuilder({
+ * items: [
+ * {
+ * description: "alt text",
+ * media: {
+ * url: 'https://cdn.discordapp.com/embed/avatars/5.png',
+ * },
+ * },
+ * ],
+ * })
+ * .addItems(item2, item3);
+ * ```
+ */
+ constructor({ items, ...data }?: Partial);
+ /**
+ * Adds items to this media gallery.
+ *
+ * @param items - The items to add
+ */
+ addItems(...items: RestOrArray MediaGalleryItemBuilder)>): this;
+ /**
+ * Removes, replaces, or inserts media gallery items for this media gallery.
+ *
+ * @param index - The index to start removing, replacing or inserting items
+ * @param deleteCount - The amount of items to remove
+ * @param items - The items to insert
+ */
+ spliceItems(index: number, deleteCount: number, ...items: RestOrArray MediaGalleryItemBuilder)>): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIMediaGalleryComponent;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for a section.
+ */
+declare class SectionBuilder extends ComponentBuilder {
+ /**
+ * The components within this section.
+ */
+ readonly components: ComponentBuilder[];
+ /**
+ * The accessory of this section.
+ */
+ readonly accessory?: ButtonBuilder | ThumbnailBuilder;
+ /**
+ * Creates a new section from API data.
+ *
+ * @param data - The API data to create this section with
+ * @example
+ * Creating a section from an API data object:
+ * ```ts
+ * const section = new SectionBuilder({
+ * components: [
+ * {
+ * content: "Some text here",
+ * type: ComponentType.TextDisplay,
+ * },
+ * ],
+ * accessory: {
+ * media: {
+ * url: 'https://cdn.discordapp.com/embed/avatars/3.png',
+ * },
+ * }
+ * });
+ * ```
+ * @example
+ * Creating a section using setters and API data:
+ * ```ts
+ * const section = new SectionBuilder({
+ * components: [
+ * {
+ * content: "# Heading",
+ * type: ComponentType.TextDisplay,
+ * },
+ * ],
+ * })
+ * .setPrimaryButtonAccessory(button);
+ * ```
+ */
+ constructor({ components, accessory, ...data }?: Partial);
+ /**
+ * Sets the accessory of this section to a button.
+ *
+ * @param accessory - The accessory to use
+ */
+ setButtonAccessory(accessory: APIButtonComponent | ButtonBuilder | ((builder: ButtonBuilder) => ButtonBuilder)): this;
+ /**
+ * Sets the accessory of this section to a thumbnail.
+ *
+ * @param accessory - The accessory to use
+ */
+ setThumbnailAccessory(accessory: APIThumbnailComponent | ThumbnailBuilder | ((builder: ThumbnailBuilder) => ThumbnailBuilder)): this;
+ /**
+ * Adds text display components to this section.
+ *
+ * @param components - The text display components to add
+ */
+ addTextDisplayComponents(...components: RestOrArray TextDisplayBuilder)>): this;
+ /**
+ * Removes, replaces, or inserts text display components for this section.
+ *
+ * @param index - The index to start removing, replacing or inserting text display components
+ * @param deleteCount - The amount of text display components to remove
+ * @param components - The text display components to insert
+ */
+ spliceTextDisplayComponents(index: number, deleteCount: number, ...components: RestOrArray TextDisplayBuilder)>): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APISectionComponent;
+}
+
+declare class ThumbnailBuilder extends ComponentBuilder {
+ /**
+ * Creates a new thumbnail from API data.
+ *
+ * @param data - The API data to create this thumbnail with
+ * @example
+ * Creating a thumbnail from an API data object:
+ * ```ts
+ * const thumbnail = new ThumbnailBuilder({
+ * description: 'some text',
+ * media: {
+ * url: 'https://cdn.discordapp.com/embed/avatars/4.png',
+ * },
+ * });
+ * ```
+ * @example
+ * Creating a thumbnail using setters and API data:
+ * ```ts
+ * const thumbnail = new ThumbnailBuilder({
+ * media: {
+ * url: 'attachment://image.png',
+ * },
+ * })
+ * .setDescription('alt text');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the description of this thumbnail.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string): this;
+ /**
+ * Clears the description of this thumbnail.
+ */
+ clearDescription(): this;
+ /**
+ * Sets the spoiler status of this thumbnail.
+ *
+ * @param spoiler - The spoiler status to use
+ */
+ setSpoiler(spoiler?: boolean): this;
+ /**
+ * Sets the media URL of this thumbnail.
+ *
+ * @param url - The URL to use
+ */
+ setURL(url: string): this;
+ /**
+ * {@inheritdoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIThumbnailComponent;
+}
+
+/**
+ * The builders that may be used for messages.
+ */
+type MessageComponentBuilder = ActionRowBuilder | ContainerBuilder | FileBuilder | MediaGalleryBuilder | MessageActionRowComponentBuilder | SectionBuilder | SeparatorBuilder | TextDisplayBuilder | ThumbnailBuilder;
+/**
+ * Components here are mapped to their respective builder.
+ */
+interface MappedComponentTypes {
+ /**
+ * The action row component type is associated with an {@link ActionRowBuilder}.
+ */
+ [ComponentType.ActionRow]: ActionRowBuilder;
+ /**
+ * The button component type is associated with a {@link ButtonBuilder}.
+ */
+ [ComponentType.Button]: ButtonBuilder;
+ /**
+ * The string select component type is associated with a {@link StringSelectMenuBuilder}.
+ */
+ [ComponentType.StringSelect]: StringSelectMenuBuilder;
+ /**
+ * The text input component type is associated with a {@link TextInputBuilder}.
+ */
+ [ComponentType.TextInput]: TextInputBuilder;
+ /**
+ * The user select component type is associated with a {@link UserSelectMenuBuilder}.
+ */
+ [ComponentType.UserSelect]: UserSelectMenuBuilder;
+ /**
+ * The role select component type is associated with a {@link RoleSelectMenuBuilder}.
+ */
+ [ComponentType.RoleSelect]: RoleSelectMenuBuilder;
+ /**
+ * The mentionable select component type is associated with a {@link MentionableSelectMenuBuilder}.
+ */
+ [ComponentType.MentionableSelect]: MentionableSelectMenuBuilder;
+ /**
+ * The channel select component type is associated with a {@link ChannelSelectMenuBuilder}.
+ */
+ [ComponentType.ChannelSelect]: ChannelSelectMenuBuilder;
+ /**
+ * The file component type is associated with a {@link FileBuilder}.
+ */
+ [ComponentType.File]: FileBuilder;
+ /**
+ * The separator component type is associated with a {@link SeparatorBuilder}.
+ */
+ [ComponentType.Separator]: SeparatorBuilder;
+ /**
+ * The container component type is associated with a {@link ContainerBuilder}.
+ */
+ [ComponentType.Container]: ContainerBuilder;
+ /**
+ * The text display component type is associated with a {@link TextDisplayBuilder}.
+ */
+ [ComponentType.TextDisplay]: TextDisplayBuilder;
+ /**
+ * The thumbnail component type is associated with a {@link ThumbnailBuilder}.
+ */
+ [ComponentType.Thumbnail]: ThumbnailBuilder;
+ /**
+ * The section component type is associated with a {@link SectionBuilder}.
+ */
+ [ComponentType.Section]: SectionBuilder;
+ /**
+ * The media gallery component type is associated with a {@link MediaGalleryBuilder}.
+ */
+ [ComponentType.MediaGallery]: MediaGalleryBuilder;
+ /**
+ * The label component type is associated with a {@link LabelBuilder}.
+ */
+ [ComponentType.Label]: LabelBuilder;
+ /**
+ * The file upload component type is associated with a {@link FileUploadBuilder}.
+ */
+ [ComponentType.FileUpload]: FileUploadBuilder;
+}
+/**
+ * Factory for creating components from API data.
+ *
+ * @typeParam ComponentType - The type of component to use
+ * @param data - The API data to transform to a component class
+ */
+declare function createComponentBuilder(data: (APIModalComponent | APIMessageComponent) & {
+ type: ComponentType;
+}): MappedComponentTypes[ComponentType];
+/**
+ * Factory for creating components from API data.
+ *
+ * @typeParam ComponentBuilder - The type of component to use
+ * @param data - The API data to transform to a component class
+ */
+declare function createComponentBuilder(data: ComponentBuilder): ComponentBuilder;
+declare function resolveBuilder, Builder extends JSONEncodable>(builder: Builder | ComponentType | ((builder: Builder) => Builder), Constructor: new (data?: ComponentType) => Builder): Builder;
+
+declare const textInputStyleValidator: _sapphire_shapeshift.NativeEnumValidator;
+declare const minLengthValidator: _sapphire_shapeshift.NumberValidator;
+declare const maxLengthValidator: _sapphire_shapeshift.NumberValidator;
+declare const requiredValidator: _sapphire_shapeshift.BooleanValidator;
+declare const valueValidator: _sapphire_shapeshift.StringValidator;
+declare const placeholderValidator: _sapphire_shapeshift.StringValidator;
+declare const labelValidator: _sapphire_shapeshift.StringValidator;
+declare const textInputPredicate: _sapphire_shapeshift.ObjectValidator<{
+ type: ComponentType;
+ custom_id: string;
+ style: TextInputStyle;
+ id: number | undefined;
+ min_length: number | undefined;
+ max_length: number | undefined;
+ placeholder: string | undefined;
+ value: string | undefined;
+ required: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ type: ComponentType;
+ custom_id: string;
+ style: TextInputStyle;
+ id: number | undefined;
+ min_length: number | undefined;
+ max_length: number | undefined;
+ placeholder: string | undefined;
+ value: string | undefined;
+ required: boolean | undefined;
+}>>;
+declare function validateRequiredParameters$3(customId?: string, style?: TextInputStyle): void;
+
+declare const Assertions$7_labelValidator: typeof labelValidator;
+declare const Assertions$7_maxLengthValidator: typeof maxLengthValidator;
+declare const Assertions$7_minLengthValidator: typeof minLengthValidator;
+declare const Assertions$7_placeholderValidator: typeof placeholderValidator;
+declare const Assertions$7_requiredValidator: typeof requiredValidator;
+declare const Assertions$7_textInputPredicate: typeof textInputPredicate;
+declare const Assertions$7_textInputStyleValidator: typeof textInputStyleValidator;
+declare const Assertions$7_valueValidator: typeof valueValidator;
+declare namespace Assertions$7 {
+ export { Assertions$7_labelValidator as labelValidator, Assertions$7_maxLengthValidator as maxLengthValidator, Assertions$7_minLengthValidator as minLengthValidator, Assertions$7_placeholderValidator as placeholderValidator, Assertions$7_requiredValidator as requiredValidator, Assertions$7_textInputPredicate as textInputPredicate, Assertions$7_textInputStyleValidator as textInputStyleValidator, validateRequiredParameters$3 as validateRequiredParameters, Assertions$7_valueValidator as valueValidator };
+}
+
+/**
+ * A builder that creates API-compatible JSON data for modals.
+ */
+declare class ModalBuilder implements JSONEncodable {
+ /**
+ * The API data associated with this modal.
+ */
+ readonly data: Partial;
+ /**
+ * The components within this modal.
+ */
+ readonly components: (ActionRowBuilder | LabelBuilder | TextDisplayBuilder)[];
+ /**
+ * Creates a new modal from API data.
+ *
+ * @param data - The API data to create this modal with
+ */
+ constructor({ components, ...data }?: Partial);
+ /**
+ * Sets the title of this modal.
+ *
+ * @param title - The title to use
+ */
+ setTitle(title: string): this;
+ /**
+ * Sets the custom id of this modal.
+ *
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Adds components to this modal.
+ *
+ * @param components - The components to add
+ * @deprecated Use {@link ModalBuilder.addLabelComponents} or {@link ModalBuilder.addTextDisplayComponents} instead
+ */
+ addComponents(...components: RestOrArray | APIActionRowComponent | APILabelComponent | APITextDisplayComponent | APITextInputComponent | LabelBuilder | TextDisplayBuilder | TextInputBuilder>): this;
+ /**
+ * Adds label components to this modal.
+ *
+ * @param components - The components to add
+ */
+ addLabelComponents(...components: RestOrArray LabelBuilder)>): this;
+ /**
+ * Adds text display components to this modal.
+ *
+ * @param components - The components to add
+ */
+ addTextDisplayComponents(...components: RestOrArray TextDisplayBuilder)>): this;
+ /**
+ * Adds action rows to this modal.
+ *
+ * @param components - The components to add
+ * @deprecated Use {@link ModalBuilder.addLabelComponents} instead
+ */
+ addActionRowComponents(...components: RestOrArray | APIActionRowComponent | ((builder: ActionRowBuilder) => ActionRowBuilder)>): this;
+ /**
+ * Sets the labels for this modal.
+ *
+ * @param components - The components to set
+ */
+ setLabelComponents(...components: RestOrArray LabelBuilder)>): this;
+ /**
+ * Removes, replaces, or inserts labels for this modal.
+ *
+ * @remarks
+ * This method behaves similarly
+ * to {@link https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/splice | Array.prototype.splice()}.
+ * The maximum amount of labels that can be added is 5.
+ *
+ * It's useful for modifying and adjusting order of the already-existing labels of a modal.
+ * @example
+ * Remove the first label:
+ * ```ts
+ * modal.spliceLabelComponents(0, 1);
+ * ```
+ * @example
+ * Remove the first n labels:
+ * ```ts
+ * const n = 4;
+ * modal.spliceLabelComponents(0, n);
+ * ```
+ * @example
+ * Remove the last label:
+ * ```ts
+ * modal.spliceLabelComponents(-1, 1);
+ * ```
+ * @param index - The index to start at
+ * @param deleteCount - The number of labels to remove
+ * @param labels - The replacing label objects
+ */
+ spliceLabelComponents(index: number, deleteCount: number, ...labels: (APILabelComponent | LabelBuilder | ((builder: LabelBuilder) => LabelBuilder))[]): this;
+ /**
+ * Sets components for this modal.
+ *
+ * @param components - The components to set
+ * @deprecated Use {@link ModalBuilder.setLabelComponents} instead
+ */
+ setComponents(...components: RestOrArray | LabelBuilder | TextDisplayBuilder>): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIModalInteractionResponseCallbackData;
+}
+
+declare const titleValidator: _sapphire_shapeshift.StringValidator;
+declare const componentsValidator: _sapphire_shapeshift.ArrayValidator<[LabelBuilder | ActionRowBuilder | TextDisplayBuilder, ...(LabelBuilder | ActionRowBuilder | TextDisplayBuilder)[]], LabelBuilder | ActionRowBuilder | TextDisplayBuilder>;
+declare function validateRequiredParameters$2(customId?: string, title?: string, components?: (ActionRowBuilder | LabelBuilder | TextDisplayBuilder)[]): void;
+
+declare const Assertions$6_componentsValidator: typeof componentsValidator;
+declare const Assertions$6_titleValidator: typeof titleValidator;
+declare namespace Assertions$6 {
+ export { Assertions$6_componentsValidator as componentsValidator, Assertions$6_titleValidator as titleValidator, validateRequiredParameters$2 as validateRequiredParameters };
+}
+
+declare const selectMenuChannelPredicate: _sapphire_shapeshift.ObjectValidator<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ channel_types: ChannelType[] | undefined;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ channel_types: ChannelType[] | undefined;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}>>;
+declare const selectMenuMentionablePredicate: _sapphire_shapeshift.ObjectValidator<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}>>;
+declare const selectMenuRolePredicate: _sapphire_shapeshift.ObjectValidator<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}>>;
+declare const selectMenuUserPredicate: _sapphire_shapeshift.ObjectValidator<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ default_values: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ type: any;
+ }>] | undefined;
+}>>;
+declare const selectMenuStringOptionPredicate: _sapphire_shapeshift.ObjectValidator<{
+ label: string;
+ value: string;
+ description: string | undefined;
+ emoji: _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+ }> | undefined;
+ default: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ label: string;
+ value: string;
+ description: string | undefined;
+ emoji: _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+ }> | undefined;
+ default: boolean | undefined;
+}>>;
+declare const selectMenuStringPredicate: _sapphire_shapeshift.ObjectValidator<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ options: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>];
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ id: number | undefined;
+ placeholder: string | undefined;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ custom_id: string;
+ disabled: boolean | undefined;
+} & {
+ type: ComponentType;
+ options: [] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>] | [_sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>, _sapphire_shapeshift.UndefinedToOptional<{
+ label: any;
+ value: any;
+ description: any;
+ emoji: any;
+ default: any;
+ }>];
+}>>;
+
+declare const Assertions$5_selectMenuChannelPredicate: typeof selectMenuChannelPredicate;
+declare const Assertions$5_selectMenuMentionablePredicate: typeof selectMenuMentionablePredicate;
+declare const Assertions$5_selectMenuRolePredicate: typeof selectMenuRolePredicate;
+declare const Assertions$5_selectMenuStringOptionPredicate: typeof selectMenuStringOptionPredicate;
+declare const Assertions$5_selectMenuStringPredicate: typeof selectMenuStringPredicate;
+declare const Assertions$5_selectMenuUserPredicate: typeof selectMenuUserPredicate;
+declare namespace Assertions$5 {
+ export { Assertions$5_selectMenuChannelPredicate as selectMenuChannelPredicate, Assertions$5_selectMenuMentionablePredicate as selectMenuMentionablePredicate, Assertions$5_selectMenuRolePredicate as selectMenuRolePredicate, Assertions$5_selectMenuStringOptionPredicate as selectMenuStringOptionPredicate, Assertions$5_selectMenuStringPredicate as selectMenuStringPredicate, Assertions$5_selectMenuUserPredicate as selectMenuUserPredicate };
+}
+
+declare const fileUploadPredicate: _sapphire_shapeshift.ObjectValidator<{
+ type: ComponentType;
+ id: number | undefined;
+ custom_id: string;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ required: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ type: ComponentType;
+ id: number | undefined;
+ custom_id: string;
+ min_values: number | undefined;
+ max_values: number | undefined;
+ required: boolean | undefined;
+}>>;
+
+declare const Assertions$4_fileUploadPredicate: typeof fileUploadPredicate;
+declare namespace Assertions$4 {
+ export { Assertions$4_fileUploadPredicate as fileUploadPredicate };
+}
+
+declare const labelPredicate: _sapphire_shapeshift.ObjectValidator<{
+ id: number | undefined;
+ type: ComponentType;
+ label: string;
+ description: string | undefined;
+ component: _sapphire_shapeshift.UndefinedToOptional<{
+ type: any;
+ id: any;
+ custom_id: any;
+ min_values: any;
+ max_values: any;
+ required: any;
+ }> | _sapphire_shapeshift.UndefinedToOptional<{
+ type: any;
+ custom_id: any;
+ style: any;
+ id: any;
+ min_length: any;
+ max_length: any;
+ placeholder: any;
+ value: any;
+ required: any;
+ }> | _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ placeholder: any;
+ min_values: any;
+ max_values: any;
+ custom_id: any;
+ disabled: any;
+ } & {
+ type: any;
+ default_values: any;
+ }> | _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ placeholder: any;
+ min_values: any;
+ max_values: any;
+ custom_id: any;
+ disabled: any;
+ } & {
+ type: any;
+ options: any;
+ }>;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ id: number | undefined;
+ type: ComponentType;
+ label: string;
+ description: string | undefined;
+ component: _sapphire_shapeshift.UndefinedToOptional<{
+ type: any;
+ id: any;
+ custom_id: any;
+ min_values: any;
+ max_values: any;
+ required: any;
+ }> | _sapphire_shapeshift.UndefinedToOptional<{
+ type: any;
+ custom_id: any;
+ style: any;
+ id: any;
+ min_length: any;
+ max_length: any;
+ placeholder: any;
+ value: any;
+ required: any;
+ }> | _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ placeholder: any;
+ min_values: any;
+ max_values: any;
+ custom_id: any;
+ disabled: any;
+ } & {
+ type: any;
+ default_values: any;
+ }> | _sapphire_shapeshift.UndefinedToOptional<{
+ id: any;
+ placeholder: any;
+ min_values: any;
+ max_values: any;
+ custom_id: any;
+ disabled: any;
+ } & {
+ type: any;
+ options: any;
+ }>;
+}>>;
+
+declare const Assertions$3_labelPredicate: typeof labelPredicate;
+declare namespace Assertions$3 {
+ export { Assertions$3_labelPredicate as labelPredicate };
+}
+
+declare const unfurledMediaItemPredicate: _sapphire_shapeshift.ObjectValidator<{
+ url: string;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ url: string;
+}>>;
+declare const descriptionPredicate: _sapphire_shapeshift.StringValidator;
+declare const filePredicate: _sapphire_shapeshift.ObjectValidator<{
+ url: string;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ url: string;
+}>>;
+declare const spoilerPredicate: _sapphire_shapeshift.BooleanValidator;
+declare const dividerPredicate: _sapphire_shapeshift.BooleanValidator;
+declare const spacingPredicate: _sapphire_shapeshift.NativeEnumValidator;
+declare const textDisplayContentPredicate: _sapphire_shapeshift.StringValidator;
+declare const accessoryPredicate: _sapphire_shapeshift.UnionValidator;
+declare const containerColorPredicate: _sapphire_shapeshift.UnionValidator;
+declare function assertReturnOfBuilder$1(input: unknown, ExpectedInstanceOf: new () => ReturnType): asserts input is ReturnType;
+declare function validateComponentArray(input: unknown, min: number, max: number, ExpectedInstanceOf?: new () => ReturnType): asserts input is ReturnType[];
+
+declare const Assertions$2_accessoryPredicate: typeof accessoryPredicate;
+declare const Assertions$2_containerColorPredicate: typeof containerColorPredicate;
+declare const Assertions$2_descriptionPredicate: typeof descriptionPredicate;
+declare const Assertions$2_dividerPredicate: typeof dividerPredicate;
+declare const Assertions$2_filePredicate: typeof filePredicate;
+declare const Assertions$2_spacingPredicate: typeof spacingPredicate;
+declare const Assertions$2_spoilerPredicate: typeof spoilerPredicate;
+declare const Assertions$2_textDisplayContentPredicate: typeof textDisplayContentPredicate;
+declare const Assertions$2_unfurledMediaItemPredicate: typeof unfurledMediaItemPredicate;
+declare const Assertions$2_validateComponentArray: typeof validateComponentArray;
+declare namespace Assertions$2 {
+ export { Assertions$2_accessoryPredicate as accessoryPredicate, assertReturnOfBuilder$1 as assertReturnOfBuilder, Assertions$2_containerColorPredicate as containerColorPredicate, Assertions$2_descriptionPredicate as descriptionPredicate, Assertions$2_dividerPredicate as dividerPredicate, Assertions$2_filePredicate as filePredicate, Assertions$2_spacingPredicate as spacingPredicate, Assertions$2_spoilerPredicate as spoilerPredicate, Assertions$2_textDisplayContentPredicate as textDisplayContentPredicate, Assertions$2_unfurledMediaItemPredicate as unfurledMediaItemPredicate, Assertions$2_validateComponentArray as validateComponentArray };
+}
+
+/**
+ * This mixin holds name and description symbols for slash commands.
+ */
+declare class SharedNameAndDescription {
+ /**
+ * The name of this command.
+ */
+ readonly name: string;
+ /**
+ * The name localizations of this command.
+ */
+ readonly name_localizations?: LocalizationMap;
+ /**
+ * The description of this command.
+ */
+ readonly description: string;
+ /**
+ * The description localizations of this command.
+ */
+ readonly description_localizations?: LocalizationMap;
+ /**
+ * Sets the name of this command.
+ *
+ * @param name - The name to use
+ */
+ setName(name: string): this;
+ /**
+ * Sets the description of this command.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string): this;
+ /**
+ * Sets a name localization for this command.
+ *
+ * @param locale - The locale to set
+ * @param localizedName - The localized name for the given `locale`
+ */
+ setNameLocalization(locale: LocaleString, localizedName: string | null): this;
+ /**
+ * Sets the name localizations for this command.
+ *
+ * @param localizedNames - The object of localized names to set
+ */
+ setNameLocalizations(localizedNames: LocalizationMap | null): this;
+ /**
+ * Sets a description localization for this command.
+ *
+ * @param locale - The locale to set
+ * @param localizedDescription - The localized description for the given locale
+ */
+ setDescriptionLocalization(locale: LocaleString, localizedDescription: string | null): this;
+ /**
+ * Sets the description localizations for this command.
+ *
+ * @param localizedDescriptions - The object of localized descriptions to set
+ */
+ setDescriptionLocalizations(localizedDescriptions: LocalizationMap | null): this;
+}
+
+/**
+ * This mixin holds symbols that can be shared in slashcommands independent of options or subcommands.
+ */
+declare class SharedSlashCommand {
+ readonly name: string;
+ readonly name_localizations?: LocalizationMap;
+ readonly description: string;
+ readonly description_localizations?: LocalizationMap;
+ readonly options: ToAPIApplicationCommandOptions[];
+ readonly contexts?: InteractionContextType[];
+ /**
+ * @deprecated Use {@link SharedSlashCommand.setDefaultMemberPermissions} or {@link SharedSlashCommand.setDMPermission} instead.
+ */
+ readonly default_permission: boolean | undefined;
+ readonly default_member_permissions: Permissions | null | undefined;
+ /**
+ * @deprecated Use {@link SharedSlashCommand.contexts} instead.
+ */
+ readonly dm_permission: boolean | undefined;
+ readonly integration_types?: ApplicationIntegrationType[];
+ readonly nsfw: boolean | undefined;
+ /**
+ * Sets the contexts of this command.
+ *
+ * @param contexts - The contexts
+ */
+ setContexts(...contexts: RestOrArray): this;
+ /**
+ * Sets the integration types of this command.
+ *
+ * @param integrationTypes - The integration types
+ */
+ setIntegrationTypes(...integrationTypes: RestOrArray): this;
+ /**
+ * Sets whether the command is enabled by default when the application is added to a guild.
+ *
+ * @remarks
+ * If set to `false`, you will have to later `PUT` the permissions for this command.
+ * @param value - Whether or not to enable this command by default
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#permissions}
+ * @deprecated Use {@link SharedSlashCommand.setDefaultMemberPermissions} or {@link SharedSlashCommand.setDMPermission} instead.
+ */
+ setDefaultPermission(value: boolean): this;
+ /**
+ * Sets the default permissions a member should have in order to run the command.
+ *
+ * @remarks
+ * You can set this to `'0'` to disable the command by default.
+ * @param permissions - The permissions bit field to set
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#permissions}
+ */
+ setDefaultMemberPermissions(permissions: Permissions | bigint | number | null | undefined): this;
+ /**
+ * Sets if the command is available in direct messages with the application.
+ *
+ * @remarks
+ * By default, commands are visible. This method is only for global commands.
+ * @param enabled - Whether the command should be enabled in direct messages
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#permissions}
+ * @deprecated
+ * Use {@link SharedSlashCommand.setContexts} instead.
+ */
+ setDMPermission(enabled: boolean | null | undefined): this;
+ /**
+ * Sets whether this command is NSFW.
+ *
+ * @param nsfw - Whether this command is NSFW
+ */
+ setNSFW(nsfw?: boolean): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): RESTPostAPIChatInputApplicationCommandsJSONBody;
+}
+
+/**
+ * The base application command option builder that contains common symbols for application command builders.
+ */
+declare abstract class ApplicationCommandOptionBase extends SharedNameAndDescription {
+ /**
+ * The type of this option.
+ */
+ abstract readonly type: ApplicationCommandOptionType;
+ /**
+ * Whether this option is required.
+ *
+ * @defaultValue `false`
+ */
+ readonly required: boolean;
+ /**
+ * Sets whether this option is required.
+ *
+ * @param required - Whether this option should be required
+ */
+ setRequired(required: boolean): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ abstract toJSON(): APIApplicationCommandBasicOption;
+ /**
+ * This method runs required validators on this builder.
+ */
+ protected runRequiredValidations(): void;
+}
+
+/**
+ * A slash command attachment option.
+ */
+declare class SlashCommandAttachmentOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Attachment;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandAttachmentOption;
+}
+
+/**
+ * A slash command boolean option.
+ */
+declare class SlashCommandBooleanOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Boolean;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandBooleanOption;
+}
+
+/**
+ * The allowed channel types used for a channel option in a slash command builder.
+ *
+ * @privateRemarks This can't be dynamic because const enums are erased at runtime.
+ * @internal
+ */
+declare const allowedChannelTypes: readonly [ChannelType.GuildText, ChannelType.GuildVoice, ChannelType.GuildCategory, ChannelType.GuildAnnouncement, ChannelType.AnnouncementThread, ChannelType.PublicThread, ChannelType.PrivateThread, ChannelType.GuildStageVoice, ChannelType.GuildForum, ChannelType.GuildMedia];
+/**
+ * The type of allowed channel types used for a channel option.
+ */
+type ApplicationCommandOptionAllowedChannelTypes = (typeof allowedChannelTypes)[number];
+/**
+ * This mixin holds channel type symbols used for options.
+ */
+declare class ApplicationCommandOptionChannelTypesMixin {
+ /**
+ * The channel types of this option.
+ */
+ readonly channel_types?: ApplicationCommandOptionAllowedChannelTypes[];
+ /**
+ * Adds channel types to this option.
+ *
+ * @param channelTypes - The channel types
+ */
+ addChannelTypes(...channelTypes: RestOrArray): this;
+}
+
+/**
+ * A slash command channel option.
+ */
+declare class SlashCommandChannelOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Channel;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandChannelOption;
+}
+interface SlashCommandChannelOption extends ApplicationCommandOptionChannelTypesMixin {
+}
+
+/**
+ * This mixin holds minimum and maximum symbols used for options.
+ */
+declare abstract class ApplicationCommandNumericOptionMinMaxValueMixin {
+ /**
+ * The maximum value of this option.
+ */
+ readonly max_value?: number;
+ /**
+ * The minimum value of this option.
+ */
+ readonly min_value?: number;
+ /**
+ * Sets the maximum number value of this option.
+ *
+ * @param max - The maximum value this option can be
+ */
+ abstract setMaxValue(max: number): this;
+ /**
+ * Sets the minimum number value of this option.
+ *
+ * @param min - The minimum value this option can be
+ */
+ abstract setMinValue(min: number): this;
+}
+
+/**
+ * This mixin holds choices and autocomplete symbols used for options.
+ */
+declare class ApplicationCommandOptionWithAutocompleteMixin {
+ /**
+ * Whether this option utilizes autocomplete.
+ */
+ readonly autocomplete?: boolean;
+ /**
+ * The type of this option.
+ *
+ * @privateRemarks Since this is present and this is a mixin, this is needed.
+ */
+ readonly type: ApplicationCommandOptionType;
+ /**
+ * Whether this option uses autocomplete.
+ *
+ * @param autocomplete - Whether this option should use autocomplete
+ */
+ setAutocomplete(autocomplete: boolean): this;
+}
+
+/**
+ * This mixin holds choices and autocomplete symbols used for options.
+ */
+declare class ApplicationCommandOptionWithChoicesMixin {
+ /**
+ * The choices of this option.
+ */
+ readonly choices?: APIApplicationCommandOptionChoice[];
+ /**
+ * The type of this option.
+ *
+ * @privateRemarks Since this is present and this is a mixin, this is needed.
+ */
+ readonly type: ApplicationCommandOptionType;
+ /**
+ * Adds multiple choices to this option.
+ *
+ * @param choices - The choices to add
+ */
+ addChoices(...choices: RestOrArray>): this;
+ /**
+ * Sets multiple choices for this option.
+ *
+ * @param choices - The choices to set
+ */
+ setChoices>(...choices: RestOrArray): this;
+}
+
+/**
+ * A slash command integer option.
+ */
+declare class SlashCommandIntegerOption extends ApplicationCommandOptionBase implements ApplicationCommandNumericOptionMinMaxValueMixin {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Integer;
+ /**
+ * {@inheritDoc ApplicationCommandNumericOptionMinMaxValueMixin.setMaxValue}
+ */
+ setMaxValue(max: number): this;
+ /**
+ * {@inheritDoc ApplicationCommandNumericOptionMinMaxValueMixin.setMinValue}
+ */
+ setMinValue(min: number): this;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandIntegerOption;
+}
+interface SlashCommandIntegerOption extends ApplicationCommandNumericOptionMinMaxValueMixin, ApplicationCommandOptionWithChoicesMixin, ApplicationCommandOptionWithAutocompleteMixin {
+}
+
+/**
+ * A slash command mentionable option.
+ */
+declare class SlashCommandMentionableOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Mentionable;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandMentionableOption;
+}
+
+/**
+ * A slash command number option.
+ */
+declare class SlashCommandNumberOption extends ApplicationCommandOptionBase implements ApplicationCommandNumericOptionMinMaxValueMixin {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Number;
+ /**
+ * {@inheritDoc ApplicationCommandNumericOptionMinMaxValueMixin.setMaxValue}
+ */
+ setMaxValue(max: number): this;
+ /**
+ * {@inheritDoc ApplicationCommandNumericOptionMinMaxValueMixin.setMinValue}
+ */
+ setMinValue(min: number): this;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandNumberOption;
+}
+interface SlashCommandNumberOption extends ApplicationCommandNumericOptionMinMaxValueMixin, ApplicationCommandOptionWithChoicesMixin, ApplicationCommandOptionWithAutocompleteMixin {
+}
+
+/**
+ * A slash command role option.
+ */
+declare class SlashCommandRoleOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.Role;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandRoleOption;
+}
+
+/**
+ * A slash command string option.
+ */
+declare class SlashCommandStringOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.String;
+ /**
+ * The maximum length of this option.
+ */
+ readonly max_length?: number;
+ /**
+ * The minimum length of this option.
+ */
+ readonly min_length?: number;
+ /**
+ * Sets the maximum length of this string option.
+ *
+ * @param max - The maximum length this option can be
+ */
+ setMaxLength(max: number): this;
+ /**
+ * Sets the minimum length of this string option.
+ *
+ * @param min - The minimum length this option can be
+ */
+ setMinLength(min: number): this;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandStringOption;
+}
+interface SlashCommandStringOption extends ApplicationCommandOptionWithChoicesMixin, ApplicationCommandOptionWithAutocompleteMixin {
+}
+
+/**
+ * A slash command user option.
+ */
+declare class SlashCommandUserOption extends ApplicationCommandOptionBase {
+ /**
+ * The type of this option.
+ */
+ readonly type: ApplicationCommandOptionType.User;
+ /**
+ * {@inheritDoc ApplicationCommandOptionBase.toJSON}
+ */
+ toJSON(): APIApplicationCommandUserOption;
+}
+
+/**
+ * This mixin holds symbols that can be shared in slash command options.
+ *
+ * @typeParam TypeAfterAddingOptions - The type this class should return after adding an option.
+ */
+declare class SharedSlashCommandOptions> {
+ readonly options: ToAPIApplicationCommandOptions[];
+ /**
+ * Adds a boolean option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addBooleanOption(input: SlashCommandBooleanOption | ((builder: SlashCommandBooleanOption) => SlashCommandBooleanOption)): TypeAfterAddingOptions;
+ /**
+ * Adds a user option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addUserOption(input: SlashCommandUserOption | ((builder: SlashCommandUserOption) => SlashCommandUserOption)): TypeAfterAddingOptions;
+ /**
+ * Adds a channel option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addChannelOption(input: SlashCommandChannelOption | ((builder: SlashCommandChannelOption) => SlashCommandChannelOption)): TypeAfterAddingOptions;
+ /**
+ * Adds a role option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addRoleOption(input: SlashCommandRoleOption | ((builder: SlashCommandRoleOption) => SlashCommandRoleOption)): TypeAfterAddingOptions;
+ /**
+ * Adds an attachment option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addAttachmentOption(input: SlashCommandAttachmentOption | ((builder: SlashCommandAttachmentOption) => SlashCommandAttachmentOption)): TypeAfterAddingOptions;
+ /**
+ * Adds a mentionable option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addMentionableOption(input: SlashCommandMentionableOption | ((builder: SlashCommandMentionableOption) => SlashCommandMentionableOption)): TypeAfterAddingOptions;
+ /**
+ * Adds a string option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addStringOption(input: SlashCommandStringOption | ((builder: SlashCommandStringOption) => SlashCommandStringOption)): TypeAfterAddingOptions;
+ /**
+ * Adds an integer option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addIntegerOption(input: SlashCommandIntegerOption | ((builder: SlashCommandIntegerOption) => SlashCommandIntegerOption)): TypeAfterAddingOptions;
+ /**
+ * Adds a number option.
+ *
+ * @param input - A function that returns an option builder or an already built builder
+ */
+ addNumberOption(input: SlashCommandNumberOption | ((builder: SlashCommandNumberOption) => SlashCommandNumberOption)): TypeAfterAddingOptions;
+ /**
+ * Where the actual adding magic happens. ✨
+ *
+ * @param input - The input. What else?
+ * @param Instance - The instance of whatever is being added
+ * @internal
+ */
+ private _sharedAddOptionMethod;
+}
+
+/**
+ * Represents a folder for subcommands.
+ *
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#subcommands-and-subcommand-groups}
+ */
+declare class SlashCommandSubcommandGroupBuilder implements ToAPIApplicationCommandOptions {
+ /**
+ * The name of this subcommand group.
+ */
+ readonly name: string;
+ /**
+ * The description of this subcommand group.
+ */
+ readonly description: string;
+ /**
+ * The subcommands within this subcommand group.
+ */
+ readonly options: SlashCommandSubcommandBuilder[];
+ /**
+ * Adds a new subcommand to this group.
+ *
+ * @param input - A function that returns a subcommand builder or an already built builder
+ */
+ addSubcommand(input: SlashCommandSubcommandBuilder | ((subcommandGroup: SlashCommandSubcommandBuilder) => SlashCommandSubcommandBuilder)): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): APIApplicationCommandSubcommandGroupOption;
+}
+interface SlashCommandSubcommandGroupBuilder extends SharedNameAndDescription {
+}
+/**
+ * A builder that creates API-compatible JSON data for slash command subcommands.
+ *
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#subcommands-and-subcommand-groups}
+ */
+declare class SlashCommandSubcommandBuilder implements ToAPIApplicationCommandOptions {
+ /**
+ * The name of this subcommand.
+ */
+ readonly name: string;
+ /**
+ * The description of this subcommand.
+ */
+ readonly description: string;
+ /**
+ * The options within this subcommand.
+ */
+ readonly options: ApplicationCommandOptionBase[];
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): APIApplicationCommandSubcommandOption;
+}
+interface SlashCommandSubcommandBuilder extends SharedNameAndDescription, SharedSlashCommandOptions {
+}
+
+/**
+ * This mixin holds symbols that can be shared in slash subcommands.
+ *
+ * @typeParam TypeAfterAddingSubcommands - The type this class should return after adding a subcommand or subcommand group.
+ */
+declare class SharedSlashCommandSubcommands> {
+ readonly options: ToAPIApplicationCommandOptions[];
+ /**
+ * Adds a new subcommand group to this command.
+ *
+ * @param input - A function that returns a subcommand group builder or an already built builder
+ */
+ addSubcommandGroup(input: SlashCommandSubcommandGroupBuilder | ((subcommandGroup: SlashCommandSubcommandGroupBuilder) => SlashCommandSubcommandGroupBuilder)): TypeAfterAddingSubcommands;
+ /**
+ * Adds a new subcommand to this command.
+ *
+ * @param input - A function that returns a subcommand builder or an already built builder
+ */
+ addSubcommand(input: SlashCommandSubcommandBuilder | ((subcommandGroup: SlashCommandSubcommandBuilder) => SlashCommandSubcommandBuilder)): TypeAfterAddingSubcommands;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for slash commands.
+ */
+declare class SlashCommandBuilder {
+ /**
+ * The name of this command.
+ */
+ readonly name: string;
+ /**
+ * The name localizations of this command.
+ */
+ readonly name_localizations?: LocalizationMap;
+ /**
+ * The description of this command.
+ */
+ readonly description: string;
+ /**
+ * The description localizations of this command.
+ */
+ readonly description_localizations?: LocalizationMap;
+ /**
+ * The options of this command.
+ */
+ readonly options: ToAPIApplicationCommandOptions[];
+ /**
+ * The contexts for this command.
+ */
+ readonly contexts?: InteractionContextType[];
+ /**
+ * Whether this command is enabled by default when the application is added to a guild.
+ *
+ * @deprecated Use {@link SharedSlashCommand.setDefaultMemberPermissions} or {@link SharedSlashCommand.setDMPermission} instead.
+ */
+ readonly default_permission: boolean | undefined;
+ /**
+ * The set of permissions represented as a bit set for the command.
+ */
+ readonly default_member_permissions: Permissions | null | undefined;
+ /**
+ * Indicates whether the command is available in direct messages with the application.
+ *
+ * @remarks
+ * By default, commands are visible. This property is only for global commands.
+ * @deprecated
+ * Use {@link SlashCommandBuilder.contexts} instead.
+ */
+ readonly dm_permission: boolean | undefined;
+ /**
+ * The integration types for this command.
+ */
+ readonly integration_types?: ApplicationIntegrationType[];
+ /**
+ * Whether this command is NSFW.
+ */
+ readonly nsfw: boolean | undefined;
+}
+interface SlashCommandBuilder extends SharedNameAndDescription, SharedSlashCommandOptions, SharedSlashCommandSubcommands, SharedSlashCommand {
+}
+/**
+ * An interface specifically for slash command subcommands.
+ */
+interface SlashCommandSubcommandsOnlyBuilder extends SharedNameAndDescription, SharedSlashCommandSubcommands, SharedSlashCommand {
+}
+/**
+ * An interface specifically for slash command options.
+ */
+interface SlashCommandOptionsOnlyBuilder extends SharedNameAndDescription, SharedSlashCommandOptions, SharedSlashCommand {
+}
+/**
+ * An interface that ensures the `toJSON()` call will return something
+ * that can be serialized into API-compatible data.
+ */
+interface ToAPIApplicationCommandOptions {
+ toJSON(): APIApplicationCommandOption;
+}
+
+declare function validateName$1(name: unknown): asserts name is string;
+declare function validateDescription(description: unknown): asserts description is string;
+declare function validateLocale(locale: unknown): Locale;
+declare function validateMaxOptionsLength(options: unknown): asserts options is ToAPIApplicationCommandOptions[];
+declare function validateRequiredParameters$1(name: string, description: string, options: ToAPIApplicationCommandOptions[]): void;
+declare function validateDefaultPermission$1(value: unknown): asserts value is boolean;
+declare function validateRequired(required: unknown): asserts required is boolean;
+declare function validateChoicesLength(amountAdding: number, choices?: APIApplicationCommandOptionChoice[]): void;
+declare function assertReturnOfBuilder(input: unknown, ExpectedInstanceOf: new () => ReturnType): asserts input is ReturnType;
+declare const localizationMapPredicate: _sapphire_shapeshift.UnionValidator<_sapphire_shapeshift.UndefinedToOptional>> | null | undefined>;
+declare function validateLocalizationMap(value: unknown): asserts value is LocalizationMap;
+declare function validateDMPermission$1(value: unknown): asserts value is boolean | null | undefined;
+declare function validateDefaultMemberPermissions$1(permissions: unknown): string | null | undefined;
+declare function validateNSFW(value: unknown): asserts value is boolean;
+declare const contextsPredicate$1: _sapphire_shapeshift.ArrayValidator;
+declare const integrationTypesPredicate$1: _sapphire_shapeshift.ArrayValidator;
+
+declare const Assertions$1_assertReturnOfBuilder: typeof assertReturnOfBuilder;
+declare const Assertions$1_localizationMapPredicate: typeof localizationMapPredicate;
+declare const Assertions$1_validateChoicesLength: typeof validateChoicesLength;
+declare const Assertions$1_validateDescription: typeof validateDescription;
+declare const Assertions$1_validateLocale: typeof validateLocale;
+declare const Assertions$1_validateLocalizationMap: typeof validateLocalizationMap;
+declare const Assertions$1_validateMaxOptionsLength: typeof validateMaxOptionsLength;
+declare const Assertions$1_validateNSFW: typeof validateNSFW;
+declare const Assertions$1_validateRequired: typeof validateRequired;
+declare namespace Assertions$1 {
+ export { Assertions$1_assertReturnOfBuilder as assertReturnOfBuilder, contextsPredicate$1 as contextsPredicate, integrationTypesPredicate$1 as integrationTypesPredicate, Assertions$1_localizationMapPredicate as localizationMapPredicate, Assertions$1_validateChoicesLength as validateChoicesLength, validateDMPermission$1 as validateDMPermission, validateDefaultMemberPermissions$1 as validateDefaultMemberPermissions, validateDefaultPermission$1 as validateDefaultPermission, Assertions$1_validateDescription as validateDescription, Assertions$1_validateLocale as validateLocale, Assertions$1_validateLocalizationMap as validateLocalizationMap, Assertions$1_validateMaxOptionsLength as validateMaxOptionsLength, Assertions$1_validateNSFW as validateNSFW, validateName$1 as validateName, Assertions$1_validateRequired as validateRequired, validateRequiredParameters$1 as validateRequiredParameters };
+}
+
+/**
+ * The type a context menu command can be.
+ */
+type ContextMenuCommandType = ApplicationCommandType.Message | ApplicationCommandType.User;
+/**
+ * A builder that creates API-compatible JSON data for context menu commands.
+ */
+declare class ContextMenuCommandBuilder {
+ /**
+ * The name of this command.
+ */
+ readonly name: string;
+ /**
+ * The name localizations of this command.
+ */
+ readonly name_localizations?: LocalizationMap;
+ /**
+ * The type of this command.
+ */
+ readonly type: ContextMenuCommandType;
+ /**
+ * The contexts for this command.
+ */
+ readonly contexts?: InteractionContextType[];
+ /**
+ * Whether this command is enabled by default when the application is added to a guild.
+ *
+ * @deprecated Use {@link ContextMenuCommandBuilder.setDefaultMemberPermissions} or {@link ContextMenuCommandBuilder.setDMPermission} instead.
+ */
+ readonly default_permission: boolean | undefined;
+ /**
+ * The set of permissions represented as a bit set for the command.
+ */
+ readonly default_member_permissions: Permissions | null | undefined;
+ /**
+ * Indicates whether the command is available in direct messages with the application.
+ *
+ * @remarks
+ * By default, commands are visible. This property is only for global commands.
+ * @deprecated
+ * Use {@link ContextMenuCommandBuilder.contexts} instead.
+ */
+ readonly dm_permission: boolean | undefined;
+ /**
+ * The integration types for this command.
+ */
+ readonly integration_types?: ApplicationIntegrationType[];
+ /**
+ * Sets the contexts of this command.
+ *
+ * @param contexts - The contexts
+ */
+ setContexts(...contexts: RestOrArray): this;
+ /**
+ * Sets integration types of this command.
+ *
+ * @param integrationTypes - The integration types
+ */
+ setIntegrationTypes(...integrationTypes: RestOrArray): this;
+ /**
+ * Sets the name of this command.
+ *
+ * @param name - The name to use
+ */
+ setName(name: string): this;
+ /**
+ * Sets the type of this command.
+ *
+ * @param type - The type to use
+ */
+ setType(type: ContextMenuCommandType): this;
+ /**
+ * Sets whether the command is enabled by default when the application is added to a guild.
+ *
+ * @remarks
+ * If set to `false`, you will have to later `PUT` the permissions for this command.
+ * @param value - Whether to enable this command by default
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#permissions}
+ * @deprecated Use {@link ContextMenuCommandBuilder.setDefaultMemberPermissions} or {@link ContextMenuCommandBuilder.setDMPermission} instead.
+ */
+ setDefaultPermission(value: boolean): this;
+ /**
+ * Sets the default permissions a member should have in order to run this command.
+ *
+ * @remarks
+ * You can set this to `'0'` to disable the command by default.
+ * @param permissions - The permissions bit field to set
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#permissions}
+ */
+ setDefaultMemberPermissions(permissions: Permissions | bigint | number | null | undefined): this;
+ /**
+ * Sets if the command is available in direct messages with the application.
+ *
+ * @remarks
+ * By default, commands are visible. This method is only for global commands.
+ * @param enabled - Whether the command should be enabled in direct messages
+ * @see {@link https://discord.com/developers/docs/interactions/application-commands#permissions}
+ * @deprecated Use {@link ContextMenuCommandBuilder.setContexts} instead.
+ */
+ setDMPermission(enabled: boolean | null | undefined): this;
+ /**
+ * Sets a name localization for this command.
+ *
+ * @param locale - The locale to set
+ * @param localizedName - The localized name for the given `locale`
+ */
+ setNameLocalization(locale: LocaleString, localizedName: string | null): this;
+ /**
+ * Sets the name localizations for this command.
+ *
+ * @param localizedNames - The object of localized names to set
+ */
+ setNameLocalizations(localizedNames: LocalizationMap | null): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): RESTPostAPIContextMenuApplicationCommandsJSONBody;
+}
+
+declare function validateDefaultPermission(value: unknown): asserts value is boolean;
+declare function validateName(name: unknown): asserts name is string;
+declare function validateType(type: unknown): asserts type is ContextMenuCommandType;
+declare function validateRequiredParameters(name: string, type: number): void;
+declare function validateDMPermission(value: unknown): asserts value is boolean | null | undefined;
+declare function validateDefaultMemberPermissions(permissions: unknown): string | null | undefined;
+declare const contextsPredicate: _sapphire_shapeshift.ArrayValidator;
+declare const integrationTypesPredicate: _sapphire_shapeshift.ArrayValidator;
+
+declare const Assertions_contextsPredicate: typeof contextsPredicate;
+declare const Assertions_integrationTypesPredicate: typeof integrationTypesPredicate;
+declare const Assertions_validateDMPermission: typeof validateDMPermission;
+declare const Assertions_validateDefaultMemberPermissions: typeof validateDefaultMemberPermissions;
+declare const Assertions_validateDefaultPermission: typeof validateDefaultPermission;
+declare const Assertions_validateName: typeof validateName;
+declare const Assertions_validateRequiredParameters: typeof validateRequiredParameters;
+declare const Assertions_validateType: typeof validateType;
+declare namespace Assertions {
+ export { Assertions_contextsPredicate as contextsPredicate, Assertions_integrationTypesPredicate as integrationTypesPredicate, Assertions_validateDMPermission as validateDMPermission, Assertions_validateDefaultMemberPermissions as validateDefaultMemberPermissions, Assertions_validateDefaultPermission as validateDefaultPermission, Assertions_validateName as validateName, Assertions_validateRequiredParameters as validateRequiredParameters, Assertions_validateType as validateType };
+}
+
+/**
+ * Calculates the length of the embed.
+ *
+ * @param data - The embed data to check
+ */
+declare function embedLength(data: APIEmbed): number;
+
+/**
+ * Enables validators.
+ *
+ * @returns Whether validation is occurring.
+ */
+declare function enableValidators(): boolean;
+/**
+ * Disables validators.
+ *
+ * @returns Whether validation is occurring.
+ */
+declare function disableValidators(): boolean;
+/**
+ * Checks whether validation is occurring.
+ */
+declare function isValidationEnabled(): boolean;
+
+/**
+ * The {@link https://github.com/discordjs/discord.js/blob/main/packages/builders#readme | @discordjs/builders} version
+ * that you are currently using.
+ *
+ * @privateRemarks This needs to explicitly be `string` so it is not typed as a "const string" that gets injected by esbuild.
+ */
+declare const version: string;
+
+export { ActionRowBuilder, type AnyAPIActionRowComponent, type AnyComponentBuilder, ApplicationCommandNumericOptionMinMaxValueMixin, type ApplicationCommandOptionAllowedChannelTypes, ApplicationCommandOptionBase, ApplicationCommandOptionChannelTypesMixin, ApplicationCommandOptionWithAutocompleteMixin, ApplicationCommandOptionWithChoicesMixin, BaseSelectMenuBuilder, ButtonBuilder, ChannelSelectMenuBuilder, Assertions$8 as ComponentAssertions, ComponentBuilder, Assertions$2 as ComponentsV2Assertions, ContainerBuilder, type ContainerComponentBuilder, Assertions as ContextMenuCommandAssertions, ContextMenuCommandBuilder, type ContextMenuCommandType, Assertions$9 as EmbedAssertions, type EmbedAuthorData, type EmbedAuthorOptions, EmbedBuilder, type EmbedFooterData, type EmbedFooterOptions, type EmbedImageData, FileBuilder, Assertions$4 as FileUploadAssertions, FileUploadBuilder, type IconData, Assertions$3 as LabelAssertions, LabelBuilder, type LabelBuilderData, type MappedComponentTypes, MediaGalleryBuilder, MediaGalleryItemBuilder, MentionableSelectMenuBuilder, type MessageActionRowComponentBuilder, type MessageComponentBuilder, type ModalActionRowComponentBuilder, Assertions$6 as ModalAssertions, ModalBuilder, type ModalComponentBuilder, type RGBTuple, type RestOrArray, RoleSelectMenuBuilder, SectionBuilder, Assertions$5 as SelectMenuAssertions, StringSelectMenuBuilder as SelectMenuBuilder, StringSelectMenuOptionBuilder as SelectMenuOptionBuilder, SeparatorBuilder, SharedNameAndDescription, SharedSlashCommand, SharedSlashCommandOptions, SharedSlashCommandSubcommands, Assertions$1 as SlashCommandAssertions, SlashCommandAttachmentOption, SlashCommandBooleanOption, SlashCommandBuilder, SlashCommandChannelOption, SlashCommandIntegerOption, SlashCommandMentionableOption, SlashCommandNumberOption, type SlashCommandOptionsOnlyBuilder, SlashCommandRoleOption, SlashCommandStringOption, SlashCommandSubcommandBuilder, SlashCommandSubcommandGroupBuilder, type SlashCommandSubcommandsOnlyBuilder, SlashCommandUserOption, StringSelectMenuBuilder, StringSelectMenuOptionBuilder, TextDisplayBuilder, Assertions$7 as TextInputAssertions, TextInputBuilder, ThumbnailBuilder, type ToAPIApplicationCommandOptions, UserSelectMenuBuilder, createComponentBuilder, disableValidators, embedLength, enableValidators, isValidationEnabled, normalizeArray, resolveBuilder, version };
diff --git a/node_modules/@discordjs/builders/dist/index.d.ts b/node_modules/@discordjs/builders/dist/index.d.ts
new file mode 100644
index 0000000..ed32ea0
--- /dev/null
+++ b/node_modules/@discordjs/builders/dist/index.d.ts
@@ -0,0 +1,14826 @@
+import * as _sapphire_shapeshift from '@sapphire/shapeshift';
+import { APIEmbedField, APIEmbedAuthor, APIEmbedFooter, APIEmbedImage, APIEmbed, APISelectMenuOption, APIMessageComponentEmoji, ButtonStyle, ChannelType, APIBaseComponent, ComponentType, APIActionRowComponent, APIComponentInActionRow, APIMessageComponent, APIModalComponent, APIButtonComponent, Snowflake, APISelectMenuComponent, APIChannelSelectComponent, APIMentionableSelectComponent, APISelectMenuDefaultValue, SelectMenuDefaultValueType, APIRoleSelectComponent, APIStringSelectComponent, APIUserSelectComponent, APITextInputComponent, TextInputStyle, APIComponentInMessageActionRow, APIComponentInModalActionRow, APIFileUploadComponent, APILabelComponent, APIFileComponent, APISeparatorComponent, SeparatorSpacingSize, APITextDisplayComponent, APIContainerComponent, APIMediaGalleryComponent, APISectionComponent, APIComponentInContainer, APIMediaGalleryItem, APIThumbnailComponent, APIModalInteractionResponseCallbackData, LocalizationMap, LocaleString, InteractionContextType, Permissions, ApplicationIntegrationType, RESTPostAPIChatInputApplicationCommandsJSONBody, ApplicationCommandOptionType, APIApplicationCommandBasicOption, APIApplicationCommandAttachmentOption, APIApplicationCommandBooleanOption, APIApplicationCommandChannelOption, APIApplicationCommandOptionChoice, APIApplicationCommandIntegerOption, APIApplicationCommandMentionableOption, APIApplicationCommandNumberOption, APIApplicationCommandRoleOption, APIApplicationCommandStringOption, APIApplicationCommandUserOption, APIApplicationCommandSubcommandOption, APIApplicationCommandSubcommandGroupOption, APIApplicationCommandOption, Locale, ApplicationCommandType, RESTPostAPIContextMenuApplicationCommandsJSONBody } from 'discord-api-types/v10';
+export * from '@discordjs/formatters';
+import { JSONEncodable, Equatable } from '@discordjs/util';
+
+declare const fieldNamePredicate: _sapphire_shapeshift.StringValidator;
+declare const fieldValuePredicate: _sapphire_shapeshift.StringValidator;
+declare const fieldInlinePredicate: _sapphire_shapeshift.UnionValidator;
+declare const embedFieldPredicate: _sapphire_shapeshift.ObjectValidator<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}>>;
+declare const embedFieldsArrayPredicate: _sapphire_shapeshift.ArrayValidator<_sapphire_shapeshift.UndefinedToOptional<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}>[], _sapphire_shapeshift.UndefinedToOptional<{
+ name: string;
+ value: string;
+ inline: boolean | undefined;
+}>>;
+declare const fieldLengthPredicate: _sapphire_shapeshift.NumberValidator;
+declare function validateFieldLength(amountAdding: number, fields?: APIEmbedField[]): void;
+declare const authorNamePredicate: _sapphire_shapeshift.UnionValidator;
+declare const imageURLPredicate: _sapphire_shapeshift.UnionValidator;
+declare const urlPredicate: _sapphire_shapeshift.UnionValidator;
+declare const embedAuthorPredicate: _sapphire_shapeshift.ObjectValidator<{
+ name: string | null;
+ iconURL: string | null | undefined;
+ url: string | null | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ name: string | null;
+ iconURL: string | null | undefined;
+ url: string | null | undefined;
+}>>;
+declare const RGBPredicate: _sapphire_shapeshift.NumberValidator;
+declare const colorPredicate: _sapphire_shapeshift.UnionValidator;
+declare const descriptionPredicate$1: _sapphire_shapeshift.UnionValidator;
+declare const footerTextPredicate: _sapphire_shapeshift.UnionValidator;
+declare const embedFooterPredicate: _sapphire_shapeshift.ObjectValidator<{
+ text: string | null;
+ iconURL: string | null | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ text: string | null;
+ iconURL: string | null | undefined;
+}>>;
+declare const timestampPredicate: _sapphire_shapeshift.UnionValidator;
+declare const titlePredicate: _sapphire_shapeshift.UnionValidator;
+
+declare const Assertions$9_RGBPredicate: typeof RGBPredicate;
+declare const Assertions$9_authorNamePredicate: typeof authorNamePredicate;
+declare const Assertions$9_colorPredicate: typeof colorPredicate;
+declare const Assertions$9_embedAuthorPredicate: typeof embedAuthorPredicate;
+declare const Assertions$9_embedFieldPredicate: typeof embedFieldPredicate;
+declare const Assertions$9_embedFieldsArrayPredicate: typeof embedFieldsArrayPredicate;
+declare const Assertions$9_embedFooterPredicate: typeof embedFooterPredicate;
+declare const Assertions$9_fieldInlinePredicate: typeof fieldInlinePredicate;
+declare const Assertions$9_fieldLengthPredicate: typeof fieldLengthPredicate;
+declare const Assertions$9_fieldNamePredicate: typeof fieldNamePredicate;
+declare const Assertions$9_fieldValuePredicate: typeof fieldValuePredicate;
+declare const Assertions$9_footerTextPredicate: typeof footerTextPredicate;
+declare const Assertions$9_imageURLPredicate: typeof imageURLPredicate;
+declare const Assertions$9_timestampPredicate: typeof timestampPredicate;
+declare const Assertions$9_titlePredicate: typeof titlePredicate;
+declare const Assertions$9_urlPredicate: typeof urlPredicate;
+declare const Assertions$9_validateFieldLength: typeof validateFieldLength;
+declare namespace Assertions$9 {
+ export { Assertions$9_RGBPredicate as RGBPredicate, Assertions$9_authorNamePredicate as authorNamePredicate, Assertions$9_colorPredicate as colorPredicate, descriptionPredicate$1 as descriptionPredicate, Assertions$9_embedAuthorPredicate as embedAuthorPredicate, Assertions$9_embedFieldPredicate as embedFieldPredicate, Assertions$9_embedFieldsArrayPredicate as embedFieldsArrayPredicate, Assertions$9_embedFooterPredicate as embedFooterPredicate, Assertions$9_fieldInlinePredicate as fieldInlinePredicate, Assertions$9_fieldLengthPredicate as fieldLengthPredicate, Assertions$9_fieldNamePredicate as fieldNamePredicate, Assertions$9_fieldValuePredicate as fieldValuePredicate, Assertions$9_footerTextPredicate as footerTextPredicate, Assertions$9_imageURLPredicate as imageURLPredicate, Assertions$9_timestampPredicate as timestampPredicate, Assertions$9_titlePredicate as titlePredicate, Assertions$9_urlPredicate as urlPredicate, Assertions$9_validateFieldLength as validateFieldLength };
+}
+
+/**
+ * Normalizes data that is a rest parameter or an array into an array with a depth of 1.
+ *
+ * @typeParam ItemType - The data that must satisfy {@link RestOrArray}.
+ * @param arr - The (possibly variadic) data to normalize
+ */
+declare function normalizeArray(arr: RestOrArray): ItemType[];
+/**
+ * Represents data that may be an array or came from a rest parameter.
+ *
+ * @remarks
+ * This type is used throughout builders to ensure both an array and variadic arguments
+ * may be used. It is normalized with {@link normalizeArray}.
+ */
+type RestOrArray = Type[] | [Type[]];
+
+/**
+ * A tuple satisfying the RGB color model.
+ *
+ * @see {@link https://developer.mozilla.org/docs/Glossary/RGB}
+ */
+type RGBTuple = [red: number, green: number, blue: number];
+/**
+ * The base icon data typically used in payloads.
+ */
+interface IconData {
+ /**
+ * The URL of the icon.
+ */
+ iconURL?: string;
+ /**
+ * The proxy URL of the icon.
+ */
+ proxyIconURL?: string;
+}
+/**
+ * Represents the author data of an embed.
+ */
+interface EmbedAuthorData extends IconData, Omit {
+}
+/**
+ * Represents the author options of an embed.
+ */
+interface EmbedAuthorOptions extends Omit {
+}
+/**
+ * Represents the footer data of an embed.
+ */
+interface EmbedFooterData extends IconData, Omit {
+}
+/**
+ * Represents the footer options of an embed.
+ */
+interface EmbedFooterOptions extends Omit {
+}
+/**
+ * Represents the image data of an embed.
+ */
+interface EmbedImageData extends Omit {
+ /**
+ * The proxy URL for the image.
+ */
+ proxyURL?: string;
+}
+/**
+ * A builder that creates API-compatible JSON data for embeds.
+ */
+declare class EmbedBuilder {
+ /**
+ * The API data associated with this embed.
+ */
+ readonly data: APIEmbed;
+ /**
+ * Creates a new embed from API data.
+ *
+ * @param data - The API data to create this embed with
+ */
+ constructor(data?: APIEmbed);
+ /**
+ * Appends fields to the embed.
+ *
+ * @remarks
+ * This method accepts either an array of fields or a variable number of field parameters.
+ * The maximum amount of fields that can be added is 25.
+ * @example
+ * Using an array:
+ * ```ts
+ * const fields: APIEmbedField[] = ...;
+ * const embed = new EmbedBuilder()
+ * .addFields(fields);
+ * ```
+ * @example
+ * Using rest parameters (variadic):
+ * ```ts
+ * const embed = new EmbedBuilder()
+ * .addFields(
+ * { name: 'Field 1', value: 'Value 1' },
+ * { name: 'Field 2', value: 'Value 2' },
+ * );
+ * ```
+ * @param fields - The fields to add
+ */
+ addFields(...fields: RestOrArray): this;
+ /**
+ * Removes, replaces, or inserts fields for this embed.
+ *
+ * @remarks
+ * This method behaves similarly
+ * to {@link https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/splice | Array.prototype.splice()}.
+ * The maximum amount of fields that can be added is 25.
+ *
+ * It's useful for modifying and adjusting order of the already-existing fields of an embed.
+ * @example
+ * Remove the first field:
+ * ```ts
+ * embed.spliceFields(0, 1);
+ * ```
+ * @example
+ * Remove the first n fields:
+ * ```ts
+ * const n = 4;
+ * embed.spliceFields(0, n);
+ * ```
+ * @example
+ * Remove the last field:
+ * ```ts
+ * embed.spliceFields(-1, 1);
+ * ```
+ * @param index - The index to start at
+ * @param deleteCount - The number of fields to remove
+ * @param fields - The replacing field objects
+ */
+ spliceFields(index: number, deleteCount: number, ...fields: APIEmbedField[]): this;
+ /**
+ * Sets the fields for this embed.
+ *
+ * @remarks
+ * This method is an alias for {@link EmbedBuilder.spliceFields}. More specifically,
+ * it splices the entire array of fields, replacing them with the provided fields.
+ *
+ * You can set a maximum of 25 fields.
+ * @param fields - The fields to set
+ */
+ setFields(...fields: RestOrArray): this;
+ /**
+ * Sets the author of this embed.
+ *
+ * @param options - The options to use
+ */
+ setAuthor(options: EmbedAuthorOptions | null): this;
+ /**
+ * Sets the color of this embed.
+ *
+ * @param color - The color to use
+ */
+ setColor(color: RGBTuple | number | null): this;
+ /**
+ * Sets the description of this embed.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string | null): this;
+ /**
+ * Sets the footer of this embed.
+ *
+ * @param options - The footer to use
+ */
+ setFooter(options: EmbedFooterOptions | null): this;
+ /**
+ * Sets the image of this embed.
+ *
+ * @param url - The image URL to use
+ */
+ setImage(url: string | null): this;
+ /**
+ * Sets the thumbnail of this embed.
+ *
+ * @param url - The thumbnail URL to use
+ */
+ setThumbnail(url: string | null): this;
+ /**
+ * Sets the timestamp of this embed.
+ *
+ * @param timestamp - The timestamp or date to use
+ */
+ setTimestamp(timestamp?: Date | number | null): this;
+ /**
+ * Sets the title for this embed.
+ *
+ * @param title - The title to use
+ */
+ setTitle(title: string | null): this;
+ /**
+ * Sets the URL of this embed.
+ *
+ * @param url - The URL to use
+ */
+ setURL(url: string | null): this;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ toJSON(): APIEmbed;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for string select menu options.
+ */
+declare class StringSelectMenuOptionBuilder implements JSONEncodable {
+ data: Partial;
+ /**
+ * Creates a new string select menu option from API data.
+ *
+ * @param data - The API data to create this string select menu option with
+ * @example
+ * Creating a string select menu option from an API data object:
+ * ```ts
+ * const selectMenuOption = new SelectMenuOptionBuilder({
+ * label: 'catchy label',
+ * value: '1',
+ * });
+ * ```
+ * @example
+ * Creating a string select menu option using setters and API data:
+ * ```ts
+ * const selectMenuOption = new SelectMenuOptionBuilder({
+ * default: true,
+ * value: '1',
+ * })
+ * .setLabel('woah');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the label for this option.
+ *
+ * @param label - The label to use
+ */
+ setLabel(label: string): this;
+ /**
+ * Sets the value for this option.
+ *
+ * @param value - The value to use
+ */
+ setValue(value: string): this;
+ /**
+ * Sets the description for this option.
+ *
+ * @param description - The description to use
+ */
+ setDescription(description: string): this;
+ /**
+ * Sets whether this option is selected by default.
+ *
+ * @param isDefault - Whether this option is selected by default
+ */
+ setDefault(isDefault?: boolean): this;
+ /**
+ * Sets the emoji to display for this option.
+ *
+ * @param emoji - The emoji to use
+ */
+ setEmoji(emoji: APIMessageComponentEmoji): this;
+ /**
+ * {@inheritDoc BaseSelectMenuBuilder.toJSON}
+ */
+ toJSON(): APISelectMenuOption;
+}
+
+declare const idValidator: _sapphire_shapeshift.NumberValidator;
+declare const customIdValidator: _sapphire_shapeshift.StringValidator;
+declare const emojiValidator: _sapphire_shapeshift.ObjectValidator<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+}>>;
+declare const disabledValidator: _sapphire_shapeshift.BooleanValidator;
+declare const buttonLabelValidator: _sapphire_shapeshift.StringValidator;
+declare const buttonStyleValidator: _sapphire_shapeshift.NativeEnumValidator;
+declare const placeholderValidator$1: _sapphire_shapeshift.StringValidator;
+declare const minMaxValidator: _sapphire_shapeshift.NumberValidator;
+declare const labelValueDescriptionValidator: _sapphire_shapeshift.StringValidator;
+/**
+ * @deprecated Replaced with selectMenuStringOptionPredicate.
+ */
+declare const jsonOptionValidator: _sapphire_shapeshift.ObjectValidator<{
+ label: string;
+ value: string;
+ description: string | undefined;
+ emoji: _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+ }> | undefined;
+ default: boolean | undefined;
+}, _sapphire_shapeshift.UndefinedToOptional<{
+ label: string;
+ value: string;
+ description: string | undefined;
+ emoji: _sapphire_shapeshift.UndefinedToOptional<{
+ name?: string | undefined;
+ id?: string | undefined;
+ animated?: boolean | undefined;
+ }> | undefined;
+ default: boolean | undefined;
+}>>;
+declare const optionValidator: _sapphire_shapeshift.InstanceValidator;
+declare const optionsValidator: _sapphire_shapeshift.ArrayValidator;
+declare const optionsLengthValidator: _sapphire_shapeshift.NumberValidator;
+declare function validateRequiredSelectMenuParameters(options: StringSelectMenuOptionBuilder[], customId?: string): void;
+declare const defaultValidator: _sapphire_shapeshift.BooleanValidator;
+declare function validateRequiredSelectMenuOptionParameters(label?: string, value?: string): void;
+declare const channelTypesValidator: _sapphire_shapeshift.ArrayValidator;
+declare const urlValidator: _sapphire_shapeshift.StringValidator;
+declare function validateRequiredButtonParameters(style?: ButtonStyle, label?: string, emoji?: APIMessageComponentEmoji, customId?: string, skuId?: string, url?: string): void;
+
+declare const Assertions$8_buttonLabelValidator: typeof buttonLabelValidator;
+declare const Assertions$8_buttonStyleValidator: typeof buttonStyleValidator;
+declare const Assertions$8_channelTypesValidator: typeof channelTypesValidator;
+declare const Assertions$8_customIdValidator: typeof customIdValidator;
+declare const Assertions$8_defaultValidator: typeof defaultValidator;
+declare const Assertions$8_disabledValidator: typeof disabledValidator;
+declare const Assertions$8_emojiValidator: typeof emojiValidator;
+declare const Assertions$8_idValidator: typeof idValidator;
+declare const Assertions$8_jsonOptionValidator: typeof jsonOptionValidator;
+declare const Assertions$8_labelValueDescriptionValidator: typeof labelValueDescriptionValidator;
+declare const Assertions$8_minMaxValidator: typeof minMaxValidator;
+declare const Assertions$8_optionValidator: typeof optionValidator;
+declare const Assertions$8_optionsLengthValidator: typeof optionsLengthValidator;
+declare const Assertions$8_optionsValidator: typeof optionsValidator;
+declare const Assertions$8_urlValidator: typeof urlValidator;
+declare const Assertions$8_validateRequiredButtonParameters: typeof validateRequiredButtonParameters;
+declare const Assertions$8_validateRequiredSelectMenuOptionParameters: typeof validateRequiredSelectMenuOptionParameters;
+declare const Assertions$8_validateRequiredSelectMenuParameters: typeof validateRequiredSelectMenuParameters;
+declare namespace Assertions$8 {
+ export { Assertions$8_buttonLabelValidator as buttonLabelValidator, Assertions$8_buttonStyleValidator as buttonStyleValidator, Assertions$8_channelTypesValidator as channelTypesValidator, Assertions$8_customIdValidator as customIdValidator, Assertions$8_defaultValidator as defaultValidator, Assertions$8_disabledValidator as disabledValidator, Assertions$8_emojiValidator as emojiValidator, Assertions$8_idValidator as idValidator, Assertions$8_jsonOptionValidator as jsonOptionValidator, Assertions$8_labelValueDescriptionValidator as labelValueDescriptionValidator, Assertions$8_minMaxValidator as minMaxValidator, Assertions$8_optionValidator as optionValidator, Assertions$8_optionsLengthValidator as optionsLengthValidator, Assertions$8_optionsValidator as optionsValidator, placeholderValidator$1 as placeholderValidator, Assertions$8_urlValidator as urlValidator, Assertions$8_validateRequiredButtonParameters as validateRequiredButtonParameters, Assertions$8_validateRequiredSelectMenuOptionParameters as validateRequiredSelectMenuOptionParameters, Assertions$8_validateRequiredSelectMenuParameters as validateRequiredSelectMenuParameters };
+}
+
+/**
+ * Any action row component data represented as an object.
+ */
+type AnyAPIActionRowComponent = APIActionRowComponent | APIComponentInActionRow | APIMessageComponent | APIModalComponent;
+/**
+ * The base component builder that contains common symbols for all sorts of components.
+ *
+ * @typeParam DataType - The type of internal API data that is stored within the component
+ */
+declare abstract class ComponentBuilder> = APIBaseComponent> implements JSONEncodable {
+ /**
+ * The API data associated with this component.
+ */
+ readonly data: Partial;
+ /**
+ * Serializes this builder to API-compatible JSON data.
+ *
+ * @remarks
+ * This method runs validations on the data before serializing it.
+ * As such, it may throw an error if the data is invalid.
+ */
+ abstract toJSON(): AnyAPIActionRowComponent;
+ /**
+ * Constructs a new kind of component.
+ *
+ * @param data - The data to construct a component out of
+ */
+ constructor(data: Partial);
+ /**
+ * Sets the id (not the custom id) for this component.
+ *
+ * @param id - The id for this component
+ */
+ setId(id: number): this;
+ /**
+ * Clears the id of this component, defaulting to a default incremented id.
+ */
+ clearId(): this;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for buttons.
+ */
+declare class ButtonBuilder extends ComponentBuilder {
+ /**
+ * Creates a new button from API data.
+ *
+ * @param data - The API data to create this button with
+ * @example
+ * Creating a button from an API data object:
+ * ```ts
+ * const button = new ButtonBuilder({
+ * custom_id: 'a cool button',
+ * style: ButtonStyle.Primary,
+ * label: 'Click Me',
+ * emoji: {
+ * name: 'smile',
+ * id: '123456789012345678',
+ * },
+ * });
+ * ```
+ * @example
+ * Creating a button using setters and API data:
+ * ```ts
+ * const button = new ButtonBuilder({
+ * style: ButtonStyle.Secondary,
+ * label: 'Click Me',
+ * })
+ * .setEmoji({ name: '🙂' })
+ * .setCustomId('another cool button');
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Sets the style of this button.
+ *
+ * @param style - The style to use
+ */
+ setStyle(style: ButtonStyle): this;
+ /**
+ * Sets the URL for this button.
+ *
+ * @remarks
+ * This method is only available to buttons using the `Link` button style.
+ * Only three types of URL schemes are currently supported: `https://`, `http://`, and `discord://`.
+ * @param url - The URL to use
+ */
+ setURL(url: string): this;
+ /**
+ * Sets the custom id for this button.
+ *
+ * @remarks
+ * This method is only applicable to buttons that are not using the `Link` button style.
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Sets the SKU id that represents a purchasable SKU for this button.
+ *
+ * @remarks Only available when using premium-style buttons.
+ * @param skuId - The SKU id to use
+ */
+ setSKUId(skuId: Snowflake): this;
+ /**
+ * Sets the emoji to display on this button.
+ *
+ * @param emoji - The emoji to use
+ */
+ setEmoji(emoji: APIMessageComponentEmoji): this;
+ /**
+ * Sets whether this button is disabled.
+ *
+ * @param disabled - Whether to disable this button
+ */
+ setDisabled(disabled?: boolean): this;
+ /**
+ * Sets the label for this button.
+ *
+ * @param label - The label to use
+ */
+ setLabel(label: string): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): APIButtonComponent;
+}
+
+/**
+ * The base select menu builder that contains common symbols for select menu builders.
+ *
+ * @typeParam SelectMenuType - The type of select menu this would be instantiated for.
+ */
+declare abstract class BaseSelectMenuBuilder extends ComponentBuilder {
+ /**
+ * Sets the placeholder for this select menu.
+ *
+ * @param placeholder - The placeholder to use
+ */
+ setPlaceholder(placeholder: string): this;
+ /**
+ * Sets the minimum values that must be selected in the select menu.
+ *
+ * @param minValues - The minimum values that must be selected
+ */
+ setMinValues(minValues: number): this;
+ /**
+ * Sets the maximum values that can be selected in the select menu.
+ *
+ * @param maxValues - The maximum values that can be selected
+ */
+ setMaxValues(maxValues: number): this;
+ /**
+ * Sets the custom id for this select menu.
+ *
+ * @param customId - The custom id to use
+ */
+ setCustomId(customId: string): this;
+ /**
+ * Sets whether this select menu is disabled.
+ *
+ * @param disabled - Whether this select menu is disabled
+ */
+ setDisabled(disabled?: boolean): this;
+ /**
+ * Sets whether this select menu is required.
+ *
+ * @remarks Only for use in modals.
+ * @param required - Whether this select menu is required
+ */
+ setRequired(required?: boolean): this;
+ /**
+ * {@inheritDoc ComponentBuilder.toJSON}
+ */
+ toJSON(): SelectMenuType;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for channel select menus.
+ */
+declare class ChannelSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new ChannelSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new ChannelSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .addChannelTypes(ChannelType.GuildText, ChannelType.GuildAnnouncement)
+ * .setMinValues(2);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds channel types to this select menu.
+ *
+ * @param types - The channel types to use
+ */
+ addChannelTypes(...types: RestOrArray): this;
+ /**
+ * Sets channel types for this select menu.
+ *
+ * @param types - The channel types to use
+ */
+ setChannelTypes(...types: RestOrArray): this;
+ /**
+ * Adds default channels to this auto populated select menu.
+ *
+ * @param channels - The channels to add
+ */
+ addDefaultChannels(...channels: RestOrArray): this;
+ /**
+ * Sets default channels for this auto populated select menu.
+ *
+ * @param channels - The channels to set
+ */
+ setDefaultChannels(...channels: RestOrArray): this;
+ /**
+ * {@inheritDoc BaseSelectMenuBuilder.toJSON}
+ */
+ toJSON(): APIChannelSelectComponent;
+}
+
+/**
+ * A builder that creates API-compatible JSON data for mentionable select menus.
+ */
+declare class MentionableSelectMenuBuilder extends BaseSelectMenuBuilder {
+ /**
+ * Creates a new select menu from API data.
+ *
+ * @param data - The API data to create this select menu with
+ * @example
+ * Creating a select menu from an API data object:
+ * ```ts
+ * const selectMenu = new MentionableSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * placeholder: 'select an option',
+ * max_values: 2,
+ * });
+ * ```
+ * @example
+ * Creating a select menu using setters and API data:
+ * ```ts
+ * const selectMenu = new MentionableSelectMenuBuilder({
+ * custom_id: 'a cool select menu',
+ * })
+ * .setMinValues(1);
+ * ```
+ */
+ constructor(data?: Partial);
+ /**
+ * Adds default roles to this auto populated select menu.
+ *
+ * @param roles - The roles to add
+ */
+ addDefaultRoles(...roles: RestOrArray): this;
+ /**
+ * Adds default users to this auto populated select menu.
+ *
+ * @param users - The users to add
+ */
+ addDefaultUsers(...users: RestOrArray): this;
+ /**
+ * Adds default values to this auto populated select menu.
+ *
+ * @param values - The values to add
+ */
+ addDefaultValues(...values: RestOrArray | APISelectMenuDefaultValue>): this;
+ /**
+ * Sets default values for this auto populated select menu.
+ *
+ * @param values - The values to set
+ */
+ setDefaultValues(...values: RestOrArray | APISelectMenuDefaultValue