import type { Options } from "@mdx-js/rollup";
import type { ComponentType, ReactNode } from "react";
import type { BundledLanguage, BundledTheme } from "shiki";
import { z } from "zod";
import type { UseAuthReturn } from "../../lib/authentication/hook.js";
import type { AuthState } from "../../lib/authentication/state.js";
import type { SlotType } from "../../lib/components/context/SlotProvider.js";
import type { ApitogoPlugin } from "../../lib/core/plugins.js";
import type { ZudokuContext } from "../../lib/core/ZudokuContext.js";
import type { FilterCatalogItemsFn } from "../../lib/plugins/api-catalog/index.js";
import type { ApiConsumer } from "../../lib/plugins/api-keys/index.js";
import type { GenerateCodeSnippetFn, TransformExamplesFn } from "../../lib/plugins/openapi/interfaces.js";
import type { PagefindSearchFragment } from "../../lib/plugins/search-pagefind/types.js";
import type { MdxComponentsType } from "../../lib/util/MdxComponents.js";
import type { ExposedComponentProps } from "../../lib/util/useExposedProps.js";
import { HeaderNavigationSchema } from "./HeaderNavigationSchema.js";
import { InputNavigationSchema, NavigationRulesSchema } from "./InputNavigationSchema.js";
declare const AiAssistantCustomSchema: z.ZodObject<{
    label: z.ZodString;
    icon: z.ZodOptional<z.ZodCustom<ReactNode, ReactNode>>;
    url: z.ZodUnion<readonly [z.ZodString, z.ZodCustom<(context: {
        pageUrl: string;
        type: "docs" | "openapi";
    }) => string, (context: {
        pageUrl: string;
        type: "docs" | "openapi";
    }) => string>]>;
}, z.core.$strip>;
export type AiAssistantCustom = z.infer<typeof AiAssistantCustomSchema>;
declare const AiAssistantsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodArray<z.ZodUnion<readonly [z.ZodEnum<{
    claude: "claude";
    chatgpt: "chatgpt";
}>, z.ZodObject<{
    label: z.ZodString;
    icon: z.ZodOptional<z.ZodCustom<ReactNode, ReactNode>>;
    url: z.ZodUnion<readonly [z.ZodString, z.ZodCustom<(context: {
        pageUrl: string;
        type: "docs" | "openapi";
    }) => string, (context: {
        pageUrl: string;
        type: "docs" | "openapi";
    }) => string>]>;
}, z.core.$strip>]>>]>>;
export type AiAssistantsConfig = z.infer<typeof AiAssistantsSchema>;
declare const VersionConfigSchema: z.ZodObject<{
    path: z.ZodString;
    input: z.ZodString;
    label: z.ZodOptional<z.ZodString>;
}, z.core.$strip>;
declare const ApiSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
    server: z.ZodOptional<z.ZodString>;
    path: z.ZodOptional<z.ZodString>;
    categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
        label: z.ZodString;
        tags: z.ZodArray<z.ZodString>;
    }, z.core.$strip>>>;
    options: z.ZodOptional<z.ZodObject<{
        examplesLanguage: z.ZodOptional<z.ZodString>;
        supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
            value: z.ZodString;
            label: z.ZodString;
        }, z.core.$strip>>>;
        disablePlayground: z.ZodOptional<z.ZodBoolean>;
        disableSidecar: z.ZodOptional<z.ZodBoolean>;
        showVersionSelect: z.ZodOptional<z.ZodEnum<{
            always: "always";
            hide: "hide";
            "if-available": "if-available";
        }>>;
        expandAllTags: z.ZodOptional<z.ZodBoolean>;
        showInfoPage: z.ZodOptional<z.ZodBoolean>;
        schemaDownload: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
        generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
    }, z.core.$strip>>;
    type: z.ZodLiteral<"url">;
    input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
        path: z.ZodString;
        input: z.ZodString;
        label: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>]>;
}, z.core.$strip>, z.ZodObject<{
    server: z.ZodOptional<z.ZodString>;
    path: z.ZodOptional<z.ZodString>;
    categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
        label: z.ZodString;
        tags: z.ZodArray<z.ZodString>;
    }, z.core.$strip>>>;
    options: z.ZodOptional<z.ZodObject<{
        examplesLanguage: z.ZodOptional<z.ZodString>;
        supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
            value: z.ZodString;
            label: z.ZodString;
        }, z.core.$strip>>>;
        disablePlayground: z.ZodOptional<z.ZodBoolean>;
        disableSidecar: z.ZodOptional<z.ZodBoolean>;
        showVersionSelect: z.ZodOptional<z.ZodEnum<{
            always: "always";
            hide: "hide";
            "if-available": "if-available";
        }>>;
        expandAllTags: z.ZodOptional<z.ZodBoolean>;
        showInfoPage: z.ZodOptional<z.ZodBoolean>;
        schemaDownload: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
        generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
    }, z.core.$strip>>;
    type: z.ZodLiteral<"file">;
    input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
        path: z.ZodString;
        input: z.ZodString;
        label: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>]>>]>;
}, z.core.$strip>, z.ZodObject<{
    server: z.ZodOptional<z.ZodString>;
    path: z.ZodOptional<z.ZodString>;
    categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
        label: z.ZodString;
        tags: z.ZodArray<z.ZodString>;
    }, z.core.$strip>>>;
    options: z.ZodOptional<z.ZodObject<{
        examplesLanguage: z.ZodOptional<z.ZodString>;
        supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
            value: z.ZodString;
            label: z.ZodString;
        }, z.core.$strip>>>;
        disablePlayground: z.ZodOptional<z.ZodBoolean>;
        disableSidecar: z.ZodOptional<z.ZodBoolean>;
        showVersionSelect: z.ZodOptional<z.ZodEnum<{
            always: "always";
            hide: "hide";
            "if-available": "if-available";
        }>>;
        expandAllTags: z.ZodOptional<z.ZodBoolean>;
        showInfoPage: z.ZodOptional<z.ZodBoolean>;
        schemaDownload: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
        generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
    }, z.core.$strip>>;
    type: z.ZodLiteral<"raw">;
    input: z.ZodString;
}, z.core.$strip>], "type">;
declare const ApiKeysSchema: z.ZodObject<{
    enabled: z.ZodBoolean;
    getConsumers: z.ZodOptional<z.ZodCustom<(context: ZudokuContext) => Promise<ApiConsumer[]>, (context: ZudokuContext) => Promise<ApiConsumer[]>>>;
    rollKey: z.ZodOptional<z.ZodCustom<(id: string, context: ZudokuContext) => Promise<void>, (id: string, context: ZudokuContext) => Promise<void>>>;
    deleteKey: z.ZodOptional<z.ZodCustom<(consumerId: string, keyId: string, context: ZudokuContext) => Promise<void>, (consumerId: string, keyId: string, context: ZudokuContext) => Promise<void>>>;
    updateKeyDescription: z.ZodOptional<z.ZodCustom<(apiKey: {
        id: string;
        description: string;
    }, context: ZudokuContext) => Promise<void>, (apiKey: {
        id: string;
        description: string;
    }, context: ZudokuContext) => Promise<void>>>;
    createKey: z.ZodOptional<z.ZodCustom<({ apiKey, context, auth, }: {
        apiKey: {
            description: string;
            expiresOn?: string;
        };
        context: ZudokuContext;
        auth: UseAuthReturn;
    }) => Promise<void>, ({ apiKey, context, auth, }: {
        apiKey: {
            description: string;
            expiresOn?: string;
        };
        context: ZudokuContext;
        auth: UseAuthReturn;
    }) => Promise<void>>>;
}, z.core.$strip>;
export type ApiKeysOptions = z.infer<typeof ApiKeysSchema>;
export declare const FooterSocialIcons: readonly ["reddit", "discord", "github", "x", "linkedin", "facebook", "instagram", "youtube", "tiktok", "twitch", "pinterest", "snapchat", "whatsapp", "telegram"];
export declare const FooterSocialSchema: z.ZodObject<{
    label: z.ZodOptional<z.ZodString>;
    href: z.ZodString;
    icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
        facebook: "facebook";
        github: "github";
        instagram: "instagram";
        linkedin: "linkedin";
        twitch: "twitch";
        x: "x";
        youtube: "youtube";
        reddit: "reddit";
        discord: "discord";
        tiktok: "tiktok";
        pinterest: "pinterest";
        snapchat: "snapchat";
        whatsapp: "whatsapp";
        telegram: "telegram";
    }>, z.ZodCustom<ReactNode, ReactNode>]>>;
}, z.core.$strip>;
export declare const FooterSchema: z.ZodOptional<z.ZodObject<{
    columns: z.ZodOptional<z.ZodArray<z.ZodObject<{
        position: z.ZodOptional<z.ZodEnum<{
            end: "end";
            center: "center";
            start: "start";
        }>>;
        title: z.ZodString;
        links: z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            href: z.ZodString;
        }, z.core.$strip>>;
    }, z.core.$strip>>>;
    social: z.ZodOptional<z.ZodArray<z.ZodObject<{
        label: z.ZodOptional<z.ZodString>;
        href: z.ZodString;
        icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
            facebook: "facebook";
            github: "github";
            instagram: "instagram";
            linkedin: "linkedin";
            twitch: "twitch";
            x: "x";
            youtube: "youtube";
            reddit: "reddit";
            discord: "discord";
            tiktok: "tiktok";
            pinterest: "pinterest";
            snapchat: "snapchat";
            whatsapp: "whatsapp";
            telegram: "telegram";
        }>, z.ZodCustom<ReactNode, ReactNode>]>>;
    }, z.core.$strip>>>;
    copyright: z.ZodOptional<z.ZodString>;
    logo: z.ZodOptional<z.ZodObject<{
        src: z.ZodObject<{
            light: z.ZodString;
            dark: z.ZodString;
        }, z.core.$strip>;
        alt: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        href: z.ZodOptional<z.ZodString>;
        reloadDocument: z.ZodOptional<z.ZodBoolean>;
    }, z.core.$strip>>;
    position: z.ZodOptional<z.ZodEnum<{
        end: "end";
        center: "center";
        start: "start";
    }>>;
}, z.core.$strip>>;
declare const SiteMapSchema: z.ZodOptional<z.ZodObject<{
    siteUrl: z.ZodString;
    changefreq: z.ZodOptional<z.ZodEnum<{
        never: "never";
        always: "always";
        hourly: "hourly";
        daily: "daily";
        weekly: "weekly";
        monthly: "monthly";
        yearly: "yearly";
    }>>;
    priority: z.ZodOptional<z.ZodNumber>;
    outDir: z.ZodOptional<z.ZodString>;
    autoLastmod: z.ZodOptional<z.ZodBoolean>;
    exclude: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<() => Promise<string[]>, () => Promise<string[]>>, z.ZodArray<z.ZodString>]>>;
}, z.core.$strip>>;
declare const LlmsConfigSchema: z.ZodObject<{
    llmsTxt: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
    llmsTxtFull: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
    includeProtected: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
}, z.core.$strip>;
export declare const DocsConfigSchema: z.ZodObject<{
    files: z.ZodDefault<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>, z.ZodTransform<string[], string | string[]>>>;
    publishMarkdown: z.ZodDefault<z.ZodBoolean>;
    defaultOptions: z.ZodOptional<z.ZodObject<{
        toc: z.ZodOptional<z.ZodBoolean>;
        copyPage: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
        disablePager: z.ZodOptional<z.ZodBoolean>;
        showLastModified: z.ZodOptional<z.ZodBoolean>;
        suggestEdit: z.ZodOptional<z.ZodOptional<z.ZodObject<{
            url: z.ZodString;
            text: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>>;
    }, z.core.$strip>>;
    llms: z.ZodOptional<z.ZodObject<{
        llmsTxt: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
        llmsTxtFull: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
        includeProtected: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
    }, z.core.$strip>>;
}, z.core.$strip>;
declare const Redirect: z.ZodObject<{
    from: z.ZodString;
    to: z.ZodString;
}, z.core.$strip>;
declare const AuthenticationSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
    type: z.ZodLiteral<"clerk">;
    clerkPubKey: z.ZodCustom<`pk_test_${string}` | `pk_live_${string}`, `pk_test_${string}` | `pk_live_${string}`>;
    jwtTemplateName: z.ZodDefault<z.ZodOptional<z.ZodString>>;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
}, z.core.$strip>, z.ZodObject<{
    type: z.ZodLiteral<"firebase">;
    apiKey: z.ZodString;
    authDomain: z.ZodString;
    projectId: z.ZodString;
    storageBucket: z.ZodOptional<z.ZodString>;
    messagingSenderId: z.ZodOptional<z.ZodString>;
    appId: z.ZodString;
    measurementId: z.ZodOptional<z.ZodString>;
    providers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
        apple: "apple";
        facebook: "facebook";
        github: "github";
        phone: "phone";
        twitter: "twitter";
        password: "password";
        google: "google";
        microsoft: "microsoft";
        yahoo: "yahoo";
        emailLink: "emailLink";
    }>>>;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
}, z.core.$strip>, z.ZodObject<{
    type: z.ZodLiteral<"openid">;
    basePath: z.ZodOptional<z.ZodString>;
    clientId: z.ZodString;
    issuer: z.ZodString;
    audience: z.ZodOptional<z.ZodString>;
    scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
}, z.core.$strip>, z.ZodObject<{
    type: z.ZodLiteral<"azureb2c">;
    basePath: z.ZodOptional<z.ZodString>;
    clientId: z.ZodString;
    tenantName: z.ZodString;
    policyName: z.ZodString;
    scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
    issuer: z.ZodString;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
}, z.core.$strip>, z.ZodObject<{
    type: z.ZodLiteral<"auth0">;
    clientId: z.ZodString;
    domain: z.ZodString;
    audience: z.ZodOptional<z.ZodString>;
    scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    options: z.ZodOptional<z.ZodObject<{
        alwaysPromptLogin: z.ZodOptional<z.ZodBoolean>;
        prompt: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>;
}, z.core.$strip>, z.ZodObject<{
    type: z.ZodLiteral<"supabase">;
    basePath: z.ZodOptional<z.ZodString>;
    supabaseUrl: z.ZodString;
    supabaseKey: z.ZodString;
    provider: z.ZodOptional<z.ZodString>;
    providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
    onlyThirdPartyProviders: z.ZodOptional<z.ZodBoolean>;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
}, z.core.$strip>, z.ZodObject<{
    type: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"dev-portal">>>;
    apiBaseUrl: z.ZodOptional<z.ZodString>;
    native: z.ZodOptional<z.ZodObject<{
        enabled: z.ZodOptional<z.ZodBoolean>;
    }, z.core.$strip>>;
    email: z.ZodOptional<z.ZodObject<{
        provider: z.ZodOptional<z.ZodString>;
        from: z.ZodOptional<z.ZodString>;
        connectionString: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>;
    providers: z.ZodOptional<z.ZodArray<z.ZodObject<{
        id: z.ZodString;
        displayName: z.ZodOptional<z.ZodString>;
        authority: z.ZodOptional<z.ZodString>;
        clientId: z.ZodOptional<z.ZodString>;
        clientSecret: z.ZodOptional<z.ZodString>;
        scopes: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>>;
    redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
    redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
    redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
}, z.core.$strip>], "type">;
declare const FontConfigSchema: z.ZodUnion<readonly [z.ZodEnum<{
    Inter: "Inter";
    Roboto: "Roboto";
    "Open Sans": "Open Sans";
    Poppins: "Poppins";
    Montserrat: "Montserrat";
    Outfit: "Outfit";
    "Plus Jakarta Sans": "Plus Jakarta Sans";
    "DM Sans": "DM Sans";
    "IBM Plex Sans": "IBM Plex Sans";
    Geist: "Geist";
    Oxanium: "Oxanium";
    "Architects Daughter": "Architects Daughter";
    Merriweather: "Merriweather";
    "Playfair Display": "Playfair Display";
    Lora: "Lora";
    "Source Serif Pro": "Source Serif Pro";
    "Libre Baskerville": "Libre Baskerville";
    "Space Grotesk": "Space Grotesk";
    "JetBrains Mono": "JetBrains Mono";
    "Fira Code": "Fira Code";
    "Source Code Pro": "Source Code Pro";
    "IBM Plex Mono": "IBM Plex Mono";
    "Roboto Mono": "Roboto Mono";
    "Space Mono": "Space Mono";
    "Geist Mono": "Geist Mono";
}>, z.ZodObject<{
    url: z.ZodString;
    fontFamily: z.ZodOptional<z.ZodString>;
}, z.core.$strip>]>;
export type FontConfig = z.infer<typeof FontConfigSchema>;
export declare const CdnUrlSchema: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
    base: z.ZodOptional<z.ZodString>;
    media: z.ZodOptional<z.ZodString>;
}, z.core.$strip>]>, z.ZodTransform<{
    base: string | undefined;
    media: string | undefined;
}, string | {
    base?: string | undefined;
    media?: string | undefined;
}>>>;
export declare const ZudokuConfig: z.ZodObject<{
    slots: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodCustom<SlotType, SlotType>>>;
    UNSAFE_slotlets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodCustom<SlotType, SlotType>>>;
    mdx: z.ZodOptional<z.ZodObject<{
        components: z.ZodOptional<z.ZodCustom<MdxComponentsType, MdxComponentsType>>;
    }, z.core.$strip>>;
    customPages: z.ZodOptional<z.ZodArray<z.ZodObject<{
        path: z.ZodString;
        element: z.ZodOptional<z.ZodCustom<NonNullable<ReactNode>, NonNullable<ReactNode>>>;
        render: z.ZodOptional<z.ZodCustom<ComponentType<ExposedComponentProps>, ComponentType<ExposedComponentProps>>>;
        prose: z.ZodOptional<z.ZodBoolean>;
    }, z.core.$strip>>>;
    plugins: z.ZodOptional<z.ZodArray<z.ZodCustom<ApitogoPlugin, ApitogoPlugin>>>;
    build: z.ZodOptional<z.ZodCustom<{
        remarkPlugins?: Options["remarkPlugins"];
        rehypePlugins?: Options["rehypePlugins"];
    }, {
        remarkPlugins?: Options["remarkPlugins"];
        rehypePlugins?: Options["rehypePlugins"];
    }>>;
    protectedRoutes: z.ZodOptional<import("zod/mini").ZodMiniPipe<import("zod/mini").ZodMiniOptional<import("zod/mini").ZodMiniUnion<readonly [import("zod/mini").ZodMiniArray<import("zod/mini").ZodMiniString<string>>, import("zod/mini").ZodMiniRecord<import("zod/mini").ZodMiniString<string>, import("zod/mini").ZodMiniCustom<(c: import("./ProtectedRoutesSchema.js").CallbackContext) => import("./reason-codes.js").ProtectedRouteResult, (c: import("./ProtectedRoutesSchema.js").CallbackContext) => import("./reason-codes.js").ProtectedRouteResult>>]>>, import("zod/mini").ZodMiniTransform<Record<string, (c: import("./ProtectedRoutesSchema.js").CallbackContext) => import("./reason-codes.js").ProtectedRouteResult> | undefined, string[] | Record<string, (c: import("./ProtectedRoutesSchema.js").CallbackContext) => import("./reason-codes.js").ProtectedRouteResult> | undefined>>>;
    basePath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
    canonicalUrlOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
    cdnUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
        base: z.ZodOptional<z.ZodString>;
        media: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>]>, z.ZodTransform<{
        base: string | undefined;
        media: string | undefined;
    }, string | {
        base?: string | undefined;
        media?: string | undefined;
    }>>>>>;
    port: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
    https: z.ZodOptional<z.ZodOptional<z.ZodObject<{
        key: z.ZodString;
        cert: z.ZodString;
        ca: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>>;
    site: z.ZodOptional<z.ZodObject<{
        title: z.ZodOptional<z.ZodString>;
        showTitleInHeader: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
        logoUrl: z.ZodOptional<z.ZodString>;
        dir: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
            ltr: "ltr";
            rtl: "rtl";
        }>>>;
        logo: z.ZodOptional<z.ZodObject<{
            src: z.ZodObject<{
                light: z.ZodString;
                dark: z.ZodString;
            }, z.core.$strip>;
            alt: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            href: z.ZodOptional<z.ZodString>;
            reloadDocument: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        banner: z.ZodOptional<z.ZodObject<{
            message: z.ZodCustom<NonNullable<ReactNode>, NonNullable<ReactNode>>;
            color: z.ZodOptional<z.ZodCustom<"info" | (string & {}) | "note" | "tip" | "caution" | "danger", "info" | (string & {}) | "note" | "tip" | "caution" | "danger">>;
            dismissible: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        footer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
            columns: z.ZodOptional<z.ZodArray<z.ZodObject<{
                position: z.ZodOptional<z.ZodEnum<{
                    end: "end";
                    center: "center";
                    start: "start";
                }>>;
                title: z.ZodString;
                links: z.ZodArray<z.ZodObject<{
                    label: z.ZodString;
                    href: z.ZodString;
                }, z.core.$strip>>;
            }, z.core.$strip>>>;
            social: z.ZodOptional<z.ZodArray<z.ZodObject<{
                label: z.ZodOptional<z.ZodString>;
                href: z.ZodString;
                icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                    facebook: "facebook";
                    github: "github";
                    instagram: "instagram";
                    linkedin: "linkedin";
                    twitch: "twitch";
                    x: "x";
                    youtube: "youtube";
                    reddit: "reddit";
                    discord: "discord";
                    tiktok: "tiktok";
                    pinterest: "pinterest";
                    snapchat: "snapchat";
                    whatsapp: "whatsapp";
                    telegram: "telegram";
                }>, z.ZodCustom<ReactNode, ReactNode>]>>;
            }, z.core.$strip>>>;
            copyright: z.ZodOptional<z.ZodString>;
            logo: z.ZodOptional<z.ZodObject<{
                src: z.ZodObject<{
                    light: z.ZodString;
                    dark: z.ZodString;
                }, z.core.$strip>;
                alt: z.ZodOptional<z.ZodString>;
                width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                href: z.ZodOptional<z.ZodString>;
                reloadDocument: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            position: z.ZodOptional<z.ZodEnum<{
                end: "end";
                center: "center";
                start: "start";
            }>>;
        }, z.core.$strip>>>;
    }, z.core.$strip>>;
    header: z.ZodOptional<z.ZodOptional<z.ZodObject<{
        navigation: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
            label: z.ZodString;
            icon: z.ZodOptional<z.ZodEnum<{
                info: "info";
                replace: "replace";
                search: "search";
                slice: "slice";
                split: "split";
                repeat: "repeat";
                anchor: "anchor";
                bold: "bold";
                link: "link";
                binary: "binary";
                "a-arrow-down": "a-arrow-down";
                "a-arrow-up": "a-arrow-up";
                "a-large-small": "a-large-small";
                accessibility: "accessibility";
                activity: "activity";
                "activity-square": "activity-square";
                "air-vent": "air-vent";
                airplay: "airplay";
                "alarm-check": "alarm-check";
                "alarm-clock": "alarm-clock";
                "alarm-clock-check": "alarm-clock-check";
                "alarm-clock-minus": "alarm-clock-minus";
                "alarm-clock-off": "alarm-clock-off";
                "alarm-clock-plus": "alarm-clock-plus";
                "alarm-minus": "alarm-minus";
                "alarm-plus": "alarm-plus";
                "alarm-smoke": "alarm-smoke";
                album: "album";
                "alert-circle": "alert-circle";
                "alert-octagon": "alert-octagon";
                "alert-triangle": "alert-triangle";
                "align-center": "align-center";
                "align-center-horizontal": "align-center-horizontal";
                "align-center-vertical": "align-center-vertical";
                "align-end-horizontal": "align-end-horizontal";
                "align-end-vertical": "align-end-vertical";
                "align-horizontal-distribute-center": "align-horizontal-distribute-center";
                "align-horizontal-distribute-end": "align-horizontal-distribute-end";
                "align-horizontal-distribute-start": "align-horizontal-distribute-start";
                "align-horizontal-justify-center": "align-horizontal-justify-center";
                "align-horizontal-justify-end": "align-horizontal-justify-end";
                "align-horizontal-justify-start": "align-horizontal-justify-start";
                "align-horizontal-space-around": "align-horizontal-space-around";
                "align-horizontal-space-between": "align-horizontal-space-between";
                "align-justify": "align-justify";
                "align-left": "align-left";
                "align-right": "align-right";
                "align-start-horizontal": "align-start-horizontal";
                "align-start-vertical": "align-start-vertical";
                "align-vertical-distribute-center": "align-vertical-distribute-center";
                "align-vertical-distribute-end": "align-vertical-distribute-end";
                "align-vertical-distribute-start": "align-vertical-distribute-start";
                "align-vertical-justify-center": "align-vertical-justify-center";
                "align-vertical-justify-end": "align-vertical-justify-end";
                "align-vertical-justify-start": "align-vertical-justify-start";
                "align-vertical-space-around": "align-vertical-space-around";
                "align-vertical-space-between": "align-vertical-space-between";
                ambulance: "ambulance";
                ampersand: "ampersand";
                ampersands: "ampersands";
                amphora: "amphora";
                angry: "angry";
                annoyed: "annoyed";
                antenna: "antenna";
                anvil: "anvil";
                aperture: "aperture";
                "app-window": "app-window";
                "app-window-mac": "app-window-mac";
                apple: "apple";
                archive: "archive";
                "archive-restore": "archive-restore";
                "archive-x": "archive-x";
                "area-chart": "area-chart";
                armchair: "armchair";
                "arrow-big-down": "arrow-big-down";
                "arrow-big-down-dash": "arrow-big-down-dash";
                "arrow-big-left": "arrow-big-left";
                "arrow-big-left-dash": "arrow-big-left-dash";
                "arrow-big-right": "arrow-big-right";
                "arrow-big-right-dash": "arrow-big-right-dash";
                "arrow-big-up": "arrow-big-up";
                "arrow-big-up-dash": "arrow-big-up-dash";
                "arrow-down": "arrow-down";
                "arrow-down-0-1": "arrow-down-0-1";
                "arrow-down-01": "arrow-down-01";
                "arrow-down-1-0": "arrow-down-1-0";
                "arrow-down-10": "arrow-down-10";
                "arrow-down-a-z": "arrow-down-a-z";
                "arrow-down-az": "arrow-down-az";
                "arrow-down-circle": "arrow-down-circle";
                "arrow-down-from-line": "arrow-down-from-line";
                "arrow-down-left": "arrow-down-left";
                "arrow-down-left-from-circle": "arrow-down-left-from-circle";
                "arrow-down-left-from-square": "arrow-down-left-from-square";
                "arrow-down-left-square": "arrow-down-left-square";
                "arrow-down-narrow-wide": "arrow-down-narrow-wide";
                "arrow-down-right": "arrow-down-right";
                "arrow-down-right-from-circle": "arrow-down-right-from-circle";
                "arrow-down-right-from-square": "arrow-down-right-from-square";
                "arrow-down-right-square": "arrow-down-right-square";
                "arrow-down-square": "arrow-down-square";
                "arrow-down-to-dot": "arrow-down-to-dot";
                "arrow-down-to-line": "arrow-down-to-line";
                "arrow-down-up": "arrow-down-up";
                "arrow-down-wide-narrow": "arrow-down-wide-narrow";
                "arrow-down-z-a": "arrow-down-z-a";
                "arrow-down-za": "arrow-down-za";
                "arrow-left": "arrow-left";
                "arrow-left-circle": "arrow-left-circle";
                "arrow-left-from-line": "arrow-left-from-line";
                "arrow-left-right": "arrow-left-right";
                "arrow-left-square": "arrow-left-square";
                "arrow-left-to-line": "arrow-left-to-line";
                "arrow-right": "arrow-right";
                "arrow-right-circle": "arrow-right-circle";
                "arrow-right-from-line": "arrow-right-from-line";
                "arrow-right-left": "arrow-right-left";
                "arrow-right-square": "arrow-right-square";
                "arrow-right-to-line": "arrow-right-to-line";
                "arrow-up": "arrow-up";
                "arrow-up-0-1": "arrow-up-0-1";
                "arrow-up-01": "arrow-up-01";
                "arrow-up-1-0": "arrow-up-1-0";
                "arrow-up-10": "arrow-up-10";
                "arrow-up-a-z": "arrow-up-a-z";
                "arrow-up-az": "arrow-up-az";
                "arrow-up-circle": "arrow-up-circle";
                "arrow-up-down": "arrow-up-down";
                "arrow-up-from-dot": "arrow-up-from-dot";
                "arrow-up-from-line": "arrow-up-from-line";
                "arrow-up-left": "arrow-up-left";
                "arrow-up-left-from-circle": "arrow-up-left-from-circle";
                "arrow-up-left-from-square": "arrow-up-left-from-square";
                "arrow-up-left-square": "arrow-up-left-square";
                "arrow-up-narrow-wide": "arrow-up-narrow-wide";
                "arrow-up-right": "arrow-up-right";
                "arrow-up-right-from-circle": "arrow-up-right-from-circle";
                "arrow-up-right-from-square": "arrow-up-right-from-square";
                "arrow-up-right-square": "arrow-up-right-square";
                "arrow-up-square": "arrow-up-square";
                "arrow-up-to-line": "arrow-up-to-line";
                "arrow-up-wide-narrow": "arrow-up-wide-narrow";
                "arrow-up-z-a": "arrow-up-z-a";
                "arrow-up-za": "arrow-up-za";
                "arrows-up-from-line": "arrows-up-from-line";
                asterisk: "asterisk";
                "asterisk-square": "asterisk-square";
                "at-sign": "at-sign";
                atom: "atom";
                "audio-lines": "audio-lines";
                "audio-waveform": "audio-waveform";
                award: "award";
                axe: "axe";
                "axis-3-d": "axis-3-d";
                "axis-3d": "axis-3d";
                baby: "baby";
                backpack: "backpack";
                badge: "badge";
                "badge-alert": "badge-alert";
                "badge-cent": "badge-cent";
                "badge-check": "badge-check";
                "badge-dollar-sign": "badge-dollar-sign";
                "badge-euro": "badge-euro";
                "badge-help": "badge-help";
                "badge-indian-rupee": "badge-indian-rupee";
                "badge-info": "badge-info";
                "badge-japanese-yen": "badge-japanese-yen";
                "badge-minus": "badge-minus";
                "badge-percent": "badge-percent";
                "badge-plus": "badge-plus";
                "badge-pound-sterling": "badge-pound-sterling";
                "badge-question-mark": "badge-question-mark";
                "badge-russian-ruble": "badge-russian-ruble";
                "badge-swiss-franc": "badge-swiss-franc";
                "badge-turkish-lira": "badge-turkish-lira";
                "badge-x": "badge-x";
                "baggage-claim": "baggage-claim";
                balloon: "balloon";
                ban: "ban";
                banana: "banana";
                bandage: "bandage";
                banknote: "banknote";
                "banknote-arrow-down": "banknote-arrow-down";
                "banknote-arrow-up": "banknote-arrow-up";
                "banknote-x": "banknote-x";
                "bar-chart": "bar-chart";
                "bar-chart-2": "bar-chart-2";
                "bar-chart-3": "bar-chart-3";
                "bar-chart-4": "bar-chart-4";
                "bar-chart-big": "bar-chart-big";
                "bar-chart-horizontal": "bar-chart-horizontal";
                "bar-chart-horizontal-big": "bar-chart-horizontal-big";
                barcode: "barcode";
                barrel: "barrel";
                baseline: "baseline";
                bath: "bath";
                battery: "battery";
                "battery-charging": "battery-charging";
                "battery-full": "battery-full";
                "battery-low": "battery-low";
                "battery-medium": "battery-medium";
                "battery-plus": "battery-plus";
                "battery-warning": "battery-warning";
                beaker: "beaker";
                bean: "bean";
                "bean-off": "bean-off";
                bed: "bed";
                "bed-double": "bed-double";
                "bed-single": "bed-single";
                beef: "beef";
                beer: "beer";
                "beer-off": "beer-off";
                bell: "bell";
                "bell-dot": "bell-dot";
                "bell-electric": "bell-electric";
                "bell-minus": "bell-minus";
                "bell-off": "bell-off";
                "bell-plus": "bell-plus";
                "bell-ring": "bell-ring";
                "between-horizonal-end": "between-horizonal-end";
                "between-horizonal-start": "between-horizonal-start";
                "between-horizontal-end": "between-horizontal-end";
                "between-horizontal-start": "between-horizontal-start";
                "between-vertical-end": "between-vertical-end";
                "between-vertical-start": "between-vertical-start";
                "biceps-flexed": "biceps-flexed";
                bike: "bike";
                binoculars: "binoculars";
                biohazard: "biohazard";
                bird: "bird";
                birdhouse: "birdhouse";
                bitcoin: "bitcoin";
                blend: "blend";
                blinds: "blinds";
                blocks: "blocks";
                bluetooth: "bluetooth";
                "bluetooth-connected": "bluetooth-connected";
                "bluetooth-off": "bluetooth-off";
                "bluetooth-searching": "bluetooth-searching";
                bolt: "bolt";
                bomb: "bomb";
                bone: "bone";
                book: "book";
                "book-a": "book-a";
                "book-alert": "book-alert";
                "book-audio": "book-audio";
                "book-check": "book-check";
                "book-copy": "book-copy";
                "book-dashed": "book-dashed";
                "book-down": "book-down";
                "book-headphones": "book-headphones";
                "book-heart": "book-heart";
                "book-image": "book-image";
                "book-key": "book-key";
                "book-lock": "book-lock";
                "book-marked": "book-marked";
                "book-minus": "book-minus";
                "book-open": "book-open";
                "book-open-check": "book-open-check";
                "book-open-text": "book-open-text";
                "book-plus": "book-plus";
                "book-search": "book-search";
                "book-template": "book-template";
                "book-text": "book-text";
                "book-type": "book-type";
                "book-up": "book-up";
                "book-up-2": "book-up-2";
                "book-user": "book-user";
                "book-x": "book-x";
                bookmark: "bookmark";
                "bookmark-check": "bookmark-check";
                "bookmark-minus": "bookmark-minus";
                "bookmark-plus": "bookmark-plus";
                "bookmark-x": "bookmark-x";
                "boom-box": "boom-box";
                bot: "bot";
                "bot-message-square": "bot-message-square";
                "bot-off": "bot-off";
                "bottle-wine": "bottle-wine";
                "bow-arrow": "bow-arrow";
                box: "box";
                "box-select": "box-select";
                boxes: "boxes";
                braces: "braces";
                brackets: "brackets";
                brain: "brain";
                "brain-circuit": "brain-circuit";
                "brain-cog": "brain-cog";
                "brick-wall": "brick-wall";
                "brick-wall-fire": "brick-wall-fire";
                "brick-wall-shield": "brick-wall-shield";
                briefcase: "briefcase";
                "briefcase-business": "briefcase-business";
                "briefcase-conveyor-belt": "briefcase-conveyor-belt";
                "briefcase-medical": "briefcase-medical";
                "bring-to-front": "bring-to-front";
                brush: "brush";
                "brush-cleaning": "brush-cleaning";
                bubbles: "bubbles";
                bug: "bug";
                "bug-off": "bug-off";
                "bug-play": "bug-play";
                building: "building";
                "building-2": "building-2";
                bus: "bus";
                "bus-front": "bus-front";
                cable: "cable";
                "cable-car": "cable-car";
                cake: "cake";
                "cake-slice": "cake-slice";
                calculator: "calculator";
                calendar: "calendar";
                "calendar-1": "calendar-1";
                "calendar-arrow-down": "calendar-arrow-down";
                "calendar-arrow-up": "calendar-arrow-up";
                "calendar-check": "calendar-check";
                "calendar-check-2": "calendar-check-2";
                "calendar-clock": "calendar-clock";
                "calendar-cog": "calendar-cog";
                "calendar-days": "calendar-days";
                "calendar-fold": "calendar-fold";
                "calendar-heart": "calendar-heart";
                "calendar-minus": "calendar-minus";
                "calendar-minus-2": "calendar-minus-2";
                "calendar-off": "calendar-off";
                "calendar-plus": "calendar-plus";
                "calendar-plus-2": "calendar-plus-2";
                "calendar-range": "calendar-range";
                "calendar-search": "calendar-search";
                "calendar-sync": "calendar-sync";
                "calendar-x": "calendar-x";
                "calendar-x-2": "calendar-x-2";
                calendars: "calendars";
                camera: "camera";
                "camera-off": "camera-off";
                "candlestick-chart": "candlestick-chart";
                candy: "candy";
                "candy-cane": "candy-cane";
                "candy-off": "candy-off";
                cannabis: "cannabis";
                "cannabis-off": "cannabis-off";
                captions: "captions";
                "captions-off": "captions-off";
                car: "car";
                "car-front": "car-front";
                "car-taxi-front": "car-taxi-front";
                caravan: "caravan";
                "card-sim": "card-sim";
                carrot: "carrot";
                "case-lower": "case-lower";
                "case-sensitive": "case-sensitive";
                "case-upper": "case-upper";
                "cassette-tape": "cassette-tape";
                cast: "cast";
                castle: "castle";
                cat: "cat";
                cctv: "cctv";
                "chart-area": "chart-area";
                "chart-bar": "chart-bar";
                "chart-bar-big": "chart-bar-big";
                "chart-bar-decreasing": "chart-bar-decreasing";
                "chart-bar-increasing": "chart-bar-increasing";
                "chart-bar-stacked": "chart-bar-stacked";
                "chart-candlestick": "chart-candlestick";
                "chart-column": "chart-column";
                "chart-column-big": "chart-column-big";
                "chart-column-decreasing": "chart-column-decreasing";
                "chart-column-increasing": "chart-column-increasing";
                "chart-column-stacked": "chart-column-stacked";
                "chart-gantt": "chart-gantt";
                "chart-line": "chart-line";
                "chart-network": "chart-network";
                "chart-no-axes-column": "chart-no-axes-column";
                "chart-no-axes-column-decreasing": "chart-no-axes-column-decreasing";
                "chart-no-axes-column-increasing": "chart-no-axes-column-increasing";
                "chart-no-axes-combined": "chart-no-axes-combined";
                "chart-no-axes-gantt": "chart-no-axes-gantt";
                "chart-pie": "chart-pie";
                "chart-scatter": "chart-scatter";
                "chart-spline": "chart-spline";
                check: "check";
                "check-check": "check-check";
                "check-circle": "check-circle";
                "check-circle-2": "check-circle-2";
                "check-line": "check-line";
                "check-square": "check-square";
                "check-square-2": "check-square-2";
                "chef-hat": "chef-hat";
                cherry: "cherry";
                "chess-bishop": "chess-bishop";
                "chess-king": "chess-king";
                "chess-knight": "chess-knight";
                "chess-pawn": "chess-pawn";
                "chess-queen": "chess-queen";
                "chess-rook": "chess-rook";
                "chevron-down": "chevron-down";
                "chevron-down-circle": "chevron-down-circle";
                "chevron-down-square": "chevron-down-square";
                "chevron-first": "chevron-first";
                "chevron-last": "chevron-last";
                "chevron-left": "chevron-left";
                "chevron-left-circle": "chevron-left-circle";
                "chevron-left-square": "chevron-left-square";
                "chevron-right": "chevron-right";
                "chevron-right-circle": "chevron-right-circle";
                "chevron-right-square": "chevron-right-square";
                "chevron-up": "chevron-up";
                "chevron-up-circle": "chevron-up-circle";
                "chevron-up-square": "chevron-up-square";
                "chevrons-down": "chevrons-down";
                "chevrons-down-up": "chevrons-down-up";
                "chevrons-left": "chevrons-left";
                "chevrons-left-right": "chevrons-left-right";
                "chevrons-left-right-ellipsis": "chevrons-left-right-ellipsis";
                "chevrons-right": "chevrons-right";
                "chevrons-right-left": "chevrons-right-left";
                "chevrons-up": "chevrons-up";
                "chevrons-up-down": "chevrons-up-down";
                chrome: "chrome";
                chromium: "chromium";
                church: "church";
                cigarette: "cigarette";
                "cigarette-off": "cigarette-off";
                circle: "circle";
                "circle-alert": "circle-alert";
                "circle-arrow-down": "circle-arrow-down";
                "circle-arrow-left": "circle-arrow-left";
                "circle-arrow-out-down-left": "circle-arrow-out-down-left";
                "circle-arrow-out-down-right": "circle-arrow-out-down-right";
                "circle-arrow-out-up-left": "circle-arrow-out-up-left";
                "circle-arrow-out-up-right": "circle-arrow-out-up-right";
                "circle-arrow-right": "circle-arrow-right";
                "circle-arrow-up": "circle-arrow-up";
                "circle-check": "circle-check";
                "circle-check-big": "circle-check-big";
                "circle-chevron-down": "circle-chevron-down";
                "circle-chevron-left": "circle-chevron-left";
                "circle-chevron-right": "circle-chevron-right";
                "circle-chevron-up": "circle-chevron-up";
                "circle-dashed": "circle-dashed";
                "circle-divide": "circle-divide";
                "circle-dollar-sign": "circle-dollar-sign";
                "circle-dot": "circle-dot";
                "circle-dot-dashed": "circle-dot-dashed";
                "circle-ellipsis": "circle-ellipsis";
                "circle-equal": "circle-equal";
                "circle-fading-arrow-up": "circle-fading-arrow-up";
                "circle-fading-plus": "circle-fading-plus";
                "circle-gauge": "circle-gauge";
                "circle-help": "circle-help";
                "circle-minus": "circle-minus";
                "circle-off": "circle-off";
                "circle-parking": "circle-parking";
                "circle-parking-off": "circle-parking-off";
                "circle-pause": "circle-pause";
                "circle-percent": "circle-percent";
                "circle-pile": "circle-pile";
                "circle-play": "circle-play";
                "circle-plus": "circle-plus";
                "circle-pound-sterling": "circle-pound-sterling";
                "circle-power": "circle-power";
                "circle-question-mark": "circle-question-mark";
                "circle-slash": "circle-slash";
                "circle-slash-2": "circle-slash-2";
                "circle-slashed": "circle-slashed";
                "circle-small": "circle-small";
                "circle-star": "circle-star";
                "circle-stop": "circle-stop";
                "circle-user": "circle-user";
                "circle-user-round": "circle-user-round";
                "circle-x": "circle-x";
                "circuit-board": "circuit-board";
                citrus: "citrus";
                clapperboard: "clapperboard";
                clipboard: "clipboard";
                "clipboard-check": "clipboard-check";
                "clipboard-clock": "clipboard-clock";
                "clipboard-copy": "clipboard-copy";
                "clipboard-edit": "clipboard-edit";
                "clipboard-list": "clipboard-list";
                "clipboard-minus": "clipboard-minus";
                "clipboard-paste": "clipboard-paste";
                "clipboard-pen": "clipboard-pen";
                "clipboard-pen-line": "clipboard-pen-line";
                "clipboard-plus": "clipboard-plus";
                "clipboard-signature": "clipboard-signature";
                "clipboard-type": "clipboard-type";
                "clipboard-x": "clipboard-x";
                clock: "clock";
                "clock-1": "clock-1";
                "clock-10": "clock-10";
                "clock-11": "clock-11";
                "clock-12": "clock-12";
                "clock-2": "clock-2";
                "clock-3": "clock-3";
                "clock-4": "clock-4";
                "clock-5": "clock-5";
                "clock-6": "clock-6";
                "clock-7": "clock-7";
                "clock-8": "clock-8";
                "clock-9": "clock-9";
                "clock-alert": "clock-alert";
                "clock-arrow-down": "clock-arrow-down";
                "clock-arrow-up": "clock-arrow-up";
                "clock-check": "clock-check";
                "clock-fading": "clock-fading";
                "clock-plus": "clock-plus";
                "closed-caption": "closed-caption";
                cloud: "cloud";
                "cloud-alert": "cloud-alert";
                "cloud-backup": "cloud-backup";
                "cloud-check": "cloud-check";
                "cloud-cog": "cloud-cog";
                "cloud-download": "cloud-download";
                "cloud-drizzle": "cloud-drizzle";
                "cloud-fog": "cloud-fog";
                "cloud-hail": "cloud-hail";
                "cloud-lightning": "cloud-lightning";
                "cloud-moon": "cloud-moon";
                "cloud-moon-rain": "cloud-moon-rain";
                "cloud-off": "cloud-off";
                "cloud-rain": "cloud-rain";
                "cloud-rain-wind": "cloud-rain-wind";
                "cloud-snow": "cloud-snow";
                "cloud-sun": "cloud-sun";
                "cloud-sun-rain": "cloud-sun-rain";
                "cloud-sync": "cloud-sync";
                "cloud-upload": "cloud-upload";
                cloudy: "cloudy";
                clover: "clover";
                club: "club";
                code: "code";
                "code-2": "code-2";
                "code-square": "code-square";
                "code-xml": "code-xml";
                codepen: "codepen";
                codesandbox: "codesandbox";
                coffee: "coffee";
                cog: "cog";
                coins: "coins";
                columns: "columns";
                "columns-2": "columns-2";
                "columns-3": "columns-3";
                "columns-3-cog": "columns-3-cog";
                "columns-4": "columns-4";
                "columns-settings": "columns-settings";
                combine: "combine";
                command: "command";
                compass: "compass";
                component: "component";
                computer: "computer";
                "concierge-bell": "concierge-bell";
                cone: "cone";
                construction: "construction";
                contact: "contact";
                "contact-2": "contact-2";
                "contact-round": "contact-round";
                container: "container";
                contrast: "contrast";
                cookie: "cookie";
                "cooking-pot": "cooking-pot";
                copy: "copy";
                "copy-check": "copy-check";
                "copy-minus": "copy-minus";
                "copy-plus": "copy-plus";
                "copy-slash": "copy-slash";
                "copy-x": "copy-x";
                copyleft: "copyleft";
                copyright: "copyright";
                "corner-down-left": "corner-down-left";
                "corner-down-right": "corner-down-right";
                "corner-left-down": "corner-left-down";
                "corner-left-up": "corner-left-up";
                "corner-right-down": "corner-right-down";
                "corner-right-up": "corner-right-up";
                "corner-up-left": "corner-up-left";
                "corner-up-right": "corner-up-right";
                cpu: "cpu";
                "creative-commons": "creative-commons";
                "credit-card": "credit-card";
                croissant: "croissant";
                crop: "crop";
                cross: "cross";
                crosshair: "crosshair";
                crown: "crown";
                cuboid: "cuboid";
                "cup-soda": "cup-soda";
                "curly-braces": "curly-braces";
                currency: "currency";
                cylinder: "cylinder";
                dam: "dam";
                database: "database";
                "database-backup": "database-backup";
                "database-search": "database-search";
                "database-zap": "database-zap";
                "decimals-arrow-left": "decimals-arrow-left";
                "decimals-arrow-right": "decimals-arrow-right";
                delete: "delete";
                dessert: "dessert";
                diameter: "diameter";
                diamond: "diamond";
                "diamond-minus": "diamond-minus";
                "diamond-percent": "diamond-percent";
                "diamond-plus": "diamond-plus";
                "dice-1": "dice-1";
                "dice-2": "dice-2";
                "dice-3": "dice-3";
                "dice-4": "dice-4";
                "dice-5": "dice-5";
                "dice-6": "dice-6";
                dices: "dices";
                diff: "diff";
                disc: "disc";
                "disc-2": "disc-2";
                "disc-3": "disc-3";
                "disc-album": "disc-album";
                divide: "divide";
                "divide-circle": "divide-circle";
                "divide-square": "divide-square";
                dna: "dna";
                "dna-off": "dna-off";
                dock: "dock";
                dog: "dog";
                "dollar-sign": "dollar-sign";
                donut: "donut";
                "door-closed": "door-closed";
                "door-closed-locked": "door-closed-locked";
                "door-open": "door-open";
                dot: "dot";
                "dot-square": "dot-square";
                download: "download";
                "download-cloud": "download-cloud";
                "drafting-compass": "drafting-compass";
                drama: "drama";
                dribbble: "dribbble";
                drill: "drill";
                drone: "drone";
                droplet: "droplet";
                "droplet-off": "droplet-off";
                droplets: "droplets";
                drum: "drum";
                drumstick: "drumstick";
                dumbbell: "dumbbell";
                ear: "ear";
                "ear-off": "ear-off";
                earth: "earth";
                "earth-lock": "earth-lock";
                eclipse: "eclipse";
                edit: "edit";
                "edit-2": "edit-2";
                "edit-3": "edit-3";
                egg: "egg";
                "egg-fried": "egg-fried";
                "egg-off": "egg-off";
                ellipse: "ellipse";
                ellipsis: "ellipsis";
                "ellipsis-vertical": "ellipsis-vertical";
                equal: "equal";
                "equal-approximately": "equal-approximately";
                "equal-not": "equal-not";
                "equal-square": "equal-square";
                eraser: "eraser";
                "ethernet-port": "ethernet-port";
                euro: "euro";
                "ev-charger": "ev-charger";
                expand: "expand";
                "external-link": "external-link";
                eye: "eye";
                "eye-closed": "eye-closed";
                "eye-off": "eye-off";
                facebook: "facebook";
                factory: "factory";
                fan: "fan";
                "fast-forward": "fast-forward";
                feather: "feather";
                fence: "fence";
                "ferris-wheel": "ferris-wheel";
                figma: "figma";
                file: "file";
                "file-archive": "file-archive";
                "file-audio": "file-audio";
                "file-audio-2": "file-audio-2";
                "file-axis-3-d": "file-axis-3-d";
                "file-axis-3d": "file-axis-3d";
                "file-badge": "file-badge";
                "file-badge-2": "file-badge-2";
                "file-bar-chart": "file-bar-chart";
                "file-bar-chart-2": "file-bar-chart-2";
                "file-box": "file-box";
                "file-braces": "file-braces";
                "file-braces-corner": "file-braces-corner";
                "file-chart-column": "file-chart-column";
                "file-chart-column-increasing": "file-chart-column-increasing";
                "file-chart-line": "file-chart-line";
                "file-chart-pie": "file-chart-pie";
                "file-check": "file-check";
                "file-check-2": "file-check-2";
                "file-check-corner": "file-check-corner";
                "file-clock": "file-clock";
                "file-code": "file-code";
                "file-code-2": "file-code-2";
                "file-code-corner": "file-code-corner";
                "file-cog": "file-cog";
                "file-cog-2": "file-cog-2";
                "file-diff": "file-diff";
                "file-digit": "file-digit";
                "file-down": "file-down";
                "file-edit": "file-edit";
                "file-exclamation-point": "file-exclamation-point";
                "file-headphone": "file-headphone";
                "file-heart": "file-heart";
                "file-image": "file-image";
                "file-input": "file-input";
                "file-json": "file-json";
                "file-json-2": "file-json-2";
                "file-key": "file-key";
                "file-key-2": "file-key-2";
                "file-line-chart": "file-line-chart";
                "file-lock": "file-lock";
                "file-lock-2": "file-lock-2";
                "file-minus": "file-minus";
                "file-minus-2": "file-minus-2";
                "file-minus-corner": "file-minus-corner";
                "file-music": "file-music";
                "file-output": "file-output";
                "file-pen": "file-pen";
                "file-pen-line": "file-pen-line";
                "file-pie-chart": "file-pie-chart";
                "file-play": "file-play";
                "file-plus": "file-plus";
                "file-plus-2": "file-plus-2";
                "file-plus-corner": "file-plus-corner";
                "file-question": "file-question";
                "file-question-mark": "file-question-mark";
                "file-scan": "file-scan";
                "file-search": "file-search";
                "file-search-2": "file-search-2";
                "file-search-corner": "file-search-corner";
                "file-signal": "file-signal";
                "file-signature": "file-signature";
                "file-sliders": "file-sliders";
                "file-spreadsheet": "file-spreadsheet";
                "file-stack": "file-stack";
                "file-symlink": "file-symlink";
                "file-terminal": "file-terminal";
                "file-text": "file-text";
                "file-type": "file-type";
                "file-type-2": "file-type-2";
                "file-type-corner": "file-type-corner";
                "file-up": "file-up";
                "file-user": "file-user";
                "file-video": "file-video";
                "file-video-2": "file-video-2";
                "file-video-camera": "file-video-camera";
                "file-volume": "file-volume";
                "file-volume-2": "file-volume-2";
                "file-warning": "file-warning";
                "file-x": "file-x";
                "file-x-2": "file-x-2";
                "file-x-corner": "file-x-corner";
                files: "files";
                film: "film";
                filter: "filter";
                "filter-x": "filter-x";
                fingerprint: "fingerprint";
                "fingerprint-pattern": "fingerprint-pattern";
                "fire-extinguisher": "fire-extinguisher";
                fish: "fish";
                "fish-off": "fish-off";
                "fish-symbol": "fish-symbol";
                "fishing-hook": "fishing-hook";
                "fishing-rod": "fishing-rod";
                flag: "flag";
                "flag-off": "flag-off";
                "flag-triangle-left": "flag-triangle-left";
                "flag-triangle-right": "flag-triangle-right";
                flame: "flame";
                "flame-kindling": "flame-kindling";
                flashlight: "flashlight";
                "flashlight-off": "flashlight-off";
                "flask-conical": "flask-conical";
                "flask-conical-off": "flask-conical-off";
                "flask-round": "flask-round";
                "flip-horizontal": "flip-horizontal";
                "flip-horizontal-2": "flip-horizontal-2";
                "flip-vertical": "flip-vertical";
                "flip-vertical-2": "flip-vertical-2";
                flower: "flower";
                "flower-2": "flower-2";
                focus: "focus";
                "fold-horizontal": "fold-horizontal";
                "fold-vertical": "fold-vertical";
                folder: "folder";
                "folder-archive": "folder-archive";
                "folder-check": "folder-check";
                "folder-clock": "folder-clock";
                "folder-closed": "folder-closed";
                "folder-code": "folder-code";
                "folder-cog": "folder-cog";
                "folder-cog-2": "folder-cog-2";
                "folder-dot": "folder-dot";
                "folder-down": "folder-down";
                "folder-edit": "folder-edit";
                "folder-git": "folder-git";
                "folder-git-2": "folder-git-2";
                "folder-heart": "folder-heart";
                "folder-input": "folder-input";
                "folder-kanban": "folder-kanban";
                "folder-key": "folder-key";
                "folder-lock": "folder-lock";
                "folder-minus": "folder-minus";
                "folder-open": "folder-open";
                "folder-open-dot": "folder-open-dot";
                "folder-output": "folder-output";
                "folder-pen": "folder-pen";
                "folder-plus": "folder-plus";
                "folder-root": "folder-root";
                "folder-search": "folder-search";
                "folder-search-2": "folder-search-2";
                "folder-symlink": "folder-symlink";
                "folder-sync": "folder-sync";
                "folder-tree": "folder-tree";
                "folder-up": "folder-up";
                "folder-x": "folder-x";
                folders: "folders";
                footprints: "footprints";
                "fork-knife": "fork-knife";
                "fork-knife-crossed": "fork-knife-crossed";
                forklift: "forklift";
                form: "form";
                "form-input": "form-input";
                forward: "forward";
                frame: "frame";
                framer: "framer";
                frown: "frown";
                fuel: "fuel";
                fullscreen: "fullscreen";
                "function-square": "function-square";
                funnel: "funnel";
                "funnel-plus": "funnel-plus";
                "funnel-x": "funnel-x";
                "gallery-horizontal": "gallery-horizontal";
                "gallery-horizontal-end": "gallery-horizontal-end";
                "gallery-thumbnails": "gallery-thumbnails";
                "gallery-vertical": "gallery-vertical";
                "gallery-vertical-end": "gallery-vertical-end";
                gamepad: "gamepad";
                "gamepad-2": "gamepad-2";
                "gamepad-directional": "gamepad-directional";
                "gantt-chart": "gantt-chart";
                "gantt-chart-square": "gantt-chart-square";
                gauge: "gauge";
                "gauge-circle": "gauge-circle";
                gavel: "gavel";
                gem: "gem";
                "georgian-lari": "georgian-lari";
                ghost: "ghost";
                gift: "gift";
                "git-branch": "git-branch";
                "git-branch-minus": "git-branch-minus";
                "git-branch-plus": "git-branch-plus";
                "git-commit": "git-commit";
                "git-commit-horizontal": "git-commit-horizontal";
                "git-commit-vertical": "git-commit-vertical";
                "git-compare": "git-compare";
                "git-compare-arrows": "git-compare-arrows";
                "git-fork": "git-fork";
                "git-graph": "git-graph";
                "git-merge": "git-merge";
                "git-merge-conflict": "git-merge-conflict";
                "git-pull-request": "git-pull-request";
                "git-pull-request-arrow": "git-pull-request-arrow";
                "git-pull-request-closed": "git-pull-request-closed";
                "git-pull-request-create": "git-pull-request-create";
                "git-pull-request-create-arrow": "git-pull-request-create-arrow";
                "git-pull-request-draft": "git-pull-request-draft";
                github: "github";
                gitlab: "gitlab";
                "glass-water": "glass-water";
                glasses: "glasses";
                globe: "globe";
                "globe-2": "globe-2";
                "globe-lock": "globe-lock";
                "globe-off": "globe-off";
                "globe-x": "globe-x";
                goal: "goal";
                gpu: "gpu";
                grab: "grab";
                "graduation-cap": "graduation-cap";
                grape: "grape";
                grid: "grid";
                "grid-2-x-2": "grid-2-x-2";
                "grid-2-x-2-check": "grid-2-x-2-check";
                "grid-2-x-2-plus": "grid-2-x-2-plus";
                "grid-2-x-2-x": "grid-2-x-2-x";
                "grid-2x2": "grid-2x2";
                "grid-2x2-check": "grid-2x2-check";
                "grid-2x2-plus": "grid-2x2-plus";
                "grid-2x2-x": "grid-2x2-x";
                "grid-3-x-3": "grid-3-x-3";
                "grid-3x2": "grid-3x2";
                "grid-3x3": "grid-3x3";
                grip: "grip";
                "grip-horizontal": "grip-horizontal";
                "grip-vertical": "grip-vertical";
                group: "group";
                guitar: "guitar";
                ham: "ham";
                hamburger: "hamburger";
                hammer: "hammer";
                hand: "hand";
                "hand-coins": "hand-coins";
                "hand-fist": "hand-fist";
                "hand-grab": "hand-grab";
                "hand-heart": "hand-heart";
                "hand-helping": "hand-helping";
                "hand-metal": "hand-metal";
                "hand-platter": "hand-platter";
                handbag: "handbag";
                handshake: "handshake";
                "hard-drive": "hard-drive";
                "hard-drive-download": "hard-drive-download";
                "hard-drive-upload": "hard-drive-upload";
                "hard-hat": "hard-hat";
                hash: "hash";
                "hat-glasses": "hat-glasses";
                haze: "haze";
                hd: "hd";
                "hdmi-port": "hdmi-port";
                heading: "heading";
                "heading-1": "heading-1";
                "heading-2": "heading-2";
                "heading-3": "heading-3";
                "heading-4": "heading-4";
                "heading-5": "heading-5";
                "heading-6": "heading-6";
                "headphone-off": "headphone-off";
                headphones: "headphones";
                headset: "headset";
                heart: "heart";
                "heart-crack": "heart-crack";
                "heart-handshake": "heart-handshake";
                "heart-minus": "heart-minus";
                "heart-off": "heart-off";
                "heart-plus": "heart-plus";
                "heart-pulse": "heart-pulse";
                heater: "heater";
                helicopter: "helicopter";
                "help-circle": "help-circle";
                "helping-hand": "helping-hand";
                hexagon: "hexagon";
                highlighter: "highlighter";
                history: "history";
                home: "home";
                hop: "hop";
                "hop-off": "hop-off";
                hospital: "hospital";
                hotel: "hotel";
                hourglass: "hourglass";
                house: "house";
                "house-heart": "house-heart";
                "house-plug": "house-plug";
                "house-plus": "house-plus";
                "house-wifi": "house-wifi";
                "ice-cream": "ice-cream";
                "ice-cream-2": "ice-cream-2";
                "ice-cream-bowl": "ice-cream-bowl";
                "ice-cream-cone": "ice-cream-cone";
                "id-card": "id-card";
                "id-card-lanyard": "id-card-lanyard";
                image: "image";
                "image-down": "image-down";
                "image-minus": "image-minus";
                "image-off": "image-off";
                "image-play": "image-play";
                "image-plus": "image-plus";
                "image-up": "image-up";
                "image-upscale": "image-upscale";
                images: "images";
                import: "import";
                inbox: "inbox";
                indent: "indent";
                "indent-decrease": "indent-decrease";
                "indent-increase": "indent-increase";
                "indian-rupee": "indian-rupee";
                infinity: "infinity";
                inspect: "inspect";
                "inspection-panel": "inspection-panel";
                instagram: "instagram";
                italic: "italic";
                "iteration-ccw": "iteration-ccw";
                "iteration-cw": "iteration-cw";
                "japanese-yen": "japanese-yen";
                joystick: "joystick";
                kanban: "kanban";
                "kanban-square": "kanban-square";
                "kanban-square-dashed": "kanban-square-dashed";
                kayak: "kayak";
                key: "key";
                "key-round": "key-round";
                "key-square": "key-square";
                keyboard: "keyboard";
                "keyboard-music": "keyboard-music";
                "keyboard-off": "keyboard-off";
                lamp: "lamp";
                "lamp-ceiling": "lamp-ceiling";
                "lamp-desk": "lamp-desk";
                "lamp-floor": "lamp-floor";
                "lamp-wall-down": "lamp-wall-down";
                "lamp-wall-up": "lamp-wall-up";
                "land-plot": "land-plot";
                landmark: "landmark";
                languages: "languages";
                laptop: "laptop";
                "laptop-2": "laptop-2";
                "laptop-minimal": "laptop-minimal";
                "laptop-minimal-check": "laptop-minimal-check";
                lasso: "lasso";
                "lasso-select": "lasso-select";
                laugh: "laugh";
                layers: "layers";
                "layers-2": "layers-2";
                "layers-3": "layers-3";
                "layers-plus": "layers-plus";
                layout: "layout";
                "layout-dashboard": "layout-dashboard";
                "layout-grid": "layout-grid";
                "layout-list": "layout-list";
                "layout-panel-left": "layout-panel-left";
                "layout-panel-top": "layout-panel-top";
                "layout-template": "layout-template";
                leaf: "leaf";
                "leafy-green": "leafy-green";
                lectern: "lectern";
                "lens-concave": "lens-concave";
                "lens-convex": "lens-convex";
                "letter-text": "letter-text";
                library: "library";
                "library-big": "library-big";
                "library-square": "library-square";
                "life-buoy": "life-buoy";
                ligature: "ligature";
                lightbulb: "lightbulb";
                "lightbulb-off": "lightbulb-off";
                "line-chart": "line-chart";
                "line-dot-right-horizontal": "line-dot-right-horizontal";
                "line-squiggle": "line-squiggle";
                "link-2": "link-2";
                "link-2-off": "link-2-off";
                linkedin: "linkedin";
                list: "list";
                "list-check": "list-check";
                "list-checks": "list-checks";
                "list-chevrons-down-up": "list-chevrons-down-up";
                "list-chevrons-up-down": "list-chevrons-up-down";
                "list-collapse": "list-collapse";
                "list-end": "list-end";
                "list-filter": "list-filter";
                "list-filter-plus": "list-filter-plus";
                "list-indent-decrease": "list-indent-decrease";
                "list-indent-increase": "list-indent-increase";
                "list-minus": "list-minus";
                "list-music": "list-music";
                "list-ordered": "list-ordered";
                "list-plus": "list-plus";
                "list-restart": "list-restart";
                "list-start": "list-start";
                "list-todo": "list-todo";
                "list-tree": "list-tree";
                "list-video": "list-video";
                "list-x": "list-x";
                loader: "loader";
                "loader-2": "loader-2";
                "loader-circle": "loader-circle";
                "loader-pinwheel": "loader-pinwheel";
                locate: "locate";
                "locate-fixed": "locate-fixed";
                "locate-off": "locate-off";
                "location-edit": "location-edit";
                lock: "lock";
                "lock-keyhole": "lock-keyhole";
                "lock-keyhole-open": "lock-keyhole-open";
                "lock-open": "lock-open";
                "log-in": "log-in";
                "log-out": "log-out";
                logs: "logs";
                lollipop: "lollipop";
                luggage: "luggage";
                "m-square": "m-square";
                magnet: "magnet";
                mail: "mail";
                "mail-check": "mail-check";
                "mail-minus": "mail-minus";
                "mail-open": "mail-open";
                "mail-plus": "mail-plus";
                "mail-question": "mail-question";
                "mail-question-mark": "mail-question-mark";
                "mail-search": "mail-search";
                "mail-warning": "mail-warning";
                "mail-x": "mail-x";
                mailbox: "mailbox";
                mails: "mails";
                map: "map";
                "map-minus": "map-minus";
                "map-pin": "map-pin";
                "map-pin-check": "map-pin-check";
                "map-pin-check-inside": "map-pin-check-inside";
                "map-pin-house": "map-pin-house";
                "map-pin-minus": "map-pin-minus";
                "map-pin-minus-inside": "map-pin-minus-inside";
                "map-pin-off": "map-pin-off";
                "map-pin-pen": "map-pin-pen";
                "map-pin-plus": "map-pin-plus";
                "map-pin-plus-inside": "map-pin-plus-inside";
                "map-pin-x": "map-pin-x";
                "map-pin-x-inside": "map-pin-x-inside";
                "map-pinned": "map-pinned";
                "map-plus": "map-plus";
                mars: "mars";
                "mars-stroke": "mars-stroke";
                martini: "martini";
                maximize: "maximize";
                "maximize-2": "maximize-2";
                medal: "medal";
                megaphone: "megaphone";
                "megaphone-off": "megaphone-off";
                meh: "meh";
                "memory-stick": "memory-stick";
                menu: "menu";
                "menu-square": "menu-square";
                merge: "merge";
                "message-circle": "message-circle";
                "message-circle-check": "message-circle-check";
                "message-circle-code": "message-circle-code";
                "message-circle-dashed": "message-circle-dashed";
                "message-circle-heart": "message-circle-heart";
                "message-circle-more": "message-circle-more";
                "message-circle-off": "message-circle-off";
                "message-circle-plus": "message-circle-plus";
                "message-circle-question": "message-circle-question";
                "message-circle-question-mark": "message-circle-question-mark";
                "message-circle-reply": "message-circle-reply";
                "message-circle-warning": "message-circle-warning";
                "message-circle-x": "message-circle-x";
                "message-square": "message-square";
                "message-square-check": "message-square-check";
                "message-square-code": "message-square-code";
                "message-square-dashed": "message-square-dashed";
                "message-square-diff": "message-square-diff";
                "message-square-dot": "message-square-dot";
                "message-square-heart": "message-square-heart";
                "message-square-lock": "message-square-lock";
                "message-square-more": "message-square-more";
                "message-square-off": "message-square-off";
                "message-square-plus": "message-square-plus";
                "message-square-quote": "message-square-quote";
                "message-square-reply": "message-square-reply";
                "message-square-share": "message-square-share";
                "message-square-text": "message-square-text";
                "message-square-warning": "message-square-warning";
                "message-square-x": "message-square-x";
                "messages-square": "messages-square";
                metronome: "metronome";
                mic: "mic";
                "mic-2": "mic-2";
                "mic-off": "mic-off";
                "mic-vocal": "mic-vocal";
                microchip: "microchip";
                microscope: "microscope";
                microwave: "microwave";
                milestone: "milestone";
                milk: "milk";
                "milk-off": "milk-off";
                minimize: "minimize";
                "minimize-2": "minimize-2";
                minus: "minus";
                "minus-circle": "minus-circle";
                "minus-square": "minus-square";
                "mirror-rectangular": "mirror-rectangular";
                "mirror-round": "mirror-round";
                monitor: "monitor";
                "monitor-check": "monitor-check";
                "monitor-cloud": "monitor-cloud";
                "monitor-cog": "monitor-cog";
                "monitor-dot": "monitor-dot";
                "monitor-down": "monitor-down";
                "monitor-off": "monitor-off";
                "monitor-pause": "monitor-pause";
                "monitor-play": "monitor-play";
                "monitor-smartphone": "monitor-smartphone";
                "monitor-speaker": "monitor-speaker";
                "monitor-stop": "monitor-stop";
                "monitor-up": "monitor-up";
                "monitor-x": "monitor-x";
                moon: "moon";
                "moon-star": "moon-star";
                "more-horizontal": "more-horizontal";
                "more-vertical": "more-vertical";
                motorbike: "motorbike";
                mountain: "mountain";
                "mountain-snow": "mountain-snow";
                mouse: "mouse";
                "mouse-left": "mouse-left";
                "mouse-off": "mouse-off";
                "mouse-pointer": "mouse-pointer";
                "mouse-pointer-2": "mouse-pointer-2";
                "mouse-pointer-2-off": "mouse-pointer-2-off";
                "mouse-pointer-ban": "mouse-pointer-ban";
                "mouse-pointer-click": "mouse-pointer-click";
                "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
                "mouse-right": "mouse-right";
                move: "move";
                "move-3-d": "move-3-d";
                "move-3d": "move-3d";
                "move-diagonal": "move-diagonal";
                "move-diagonal-2": "move-diagonal-2";
                "move-down": "move-down";
                "move-down-left": "move-down-left";
                "move-down-right": "move-down-right";
                "move-horizontal": "move-horizontal";
                "move-left": "move-left";
                "move-right": "move-right";
                "move-up": "move-up";
                "move-up-left": "move-up-left";
                "move-up-right": "move-up-right";
                "move-vertical": "move-vertical";
                music: "music";
                "music-2": "music-2";
                "music-3": "music-3";
                "music-4": "music-4";
                navigation: "navigation";
                "navigation-2": "navigation-2";
                "navigation-2-off": "navigation-2-off";
                "navigation-off": "navigation-off";
                network: "network";
                newspaper: "newspaper";
                nfc: "nfc";
                "non-binary": "non-binary";
                notebook: "notebook";
                "notebook-pen": "notebook-pen";
                "notebook-tabs": "notebook-tabs";
                "notebook-text": "notebook-text";
                "notepad-text": "notepad-text";
                "notepad-text-dashed": "notepad-text-dashed";
                nut: "nut";
                "nut-off": "nut-off";
                octagon: "octagon";
                "octagon-alert": "octagon-alert";
                "octagon-minus": "octagon-minus";
                "octagon-pause": "octagon-pause";
                "octagon-x": "octagon-x";
                omega: "omega";
                option: "option";
                orbit: "orbit";
                origami: "origami";
                outdent: "outdent";
                package: "package";
                "package-2": "package-2";
                "package-check": "package-check";
                "package-minus": "package-minus";
                "package-open": "package-open";
                "package-plus": "package-plus";
                "package-search": "package-search";
                "package-x": "package-x";
                "paint-bucket": "paint-bucket";
                "paint-roller": "paint-roller";
                paintbrush: "paintbrush";
                "paintbrush-2": "paintbrush-2";
                "paintbrush-vertical": "paintbrush-vertical";
                palette: "palette";
                palmtree: "palmtree";
                panda: "panda";
                "panel-bottom": "panel-bottom";
                "panel-bottom-close": "panel-bottom-close";
                "panel-bottom-dashed": "panel-bottom-dashed";
                "panel-bottom-inactive": "panel-bottom-inactive";
                "panel-bottom-open": "panel-bottom-open";
                "panel-left": "panel-left";
                "panel-left-close": "panel-left-close";
                "panel-left-dashed": "panel-left-dashed";
                "panel-left-inactive": "panel-left-inactive";
                "panel-left-open": "panel-left-open";
                "panel-left-right-dashed": "panel-left-right-dashed";
                "panel-right": "panel-right";
                "panel-right-close": "panel-right-close";
                "panel-right-dashed": "panel-right-dashed";
                "panel-right-inactive": "panel-right-inactive";
                "panel-right-open": "panel-right-open";
                "panel-top": "panel-top";
                "panel-top-bottom-dashed": "panel-top-bottom-dashed";
                "panel-top-close": "panel-top-close";
                "panel-top-dashed": "panel-top-dashed";
                "panel-top-inactive": "panel-top-inactive";
                "panel-top-open": "panel-top-open";
                "panels-left-bottom": "panels-left-bottom";
                "panels-left-right": "panels-left-right";
                "panels-right-bottom": "panels-right-bottom";
                "panels-top-bottom": "panels-top-bottom";
                "panels-top-left": "panels-top-left";
                paperclip: "paperclip";
                parentheses: "parentheses";
                "parking-circle": "parking-circle";
                "parking-circle-off": "parking-circle-off";
                "parking-meter": "parking-meter";
                "parking-square": "parking-square";
                "parking-square-off": "parking-square-off";
                "party-popper": "party-popper";
                pause: "pause";
                "pause-circle": "pause-circle";
                "pause-octagon": "pause-octagon";
                "paw-print": "paw-print";
                "pc-case": "pc-case";
                pen: "pen";
                "pen-box": "pen-box";
                "pen-line": "pen-line";
                "pen-off": "pen-off";
                "pen-square": "pen-square";
                "pen-tool": "pen-tool";
                pencil: "pencil";
                "pencil-line": "pencil-line";
                "pencil-off": "pencil-off";
                "pencil-ruler": "pencil-ruler";
                pentagon: "pentagon";
                percent: "percent";
                "percent-circle": "percent-circle";
                "percent-diamond": "percent-diamond";
                "percent-square": "percent-square";
                "person-standing": "person-standing";
                "philippine-peso": "philippine-peso";
                phone: "phone";
                "phone-call": "phone-call";
                "phone-forwarded": "phone-forwarded";
                "phone-incoming": "phone-incoming";
                "phone-missed": "phone-missed";
                "phone-off": "phone-off";
                "phone-outgoing": "phone-outgoing";
                pi: "pi";
                "pi-square": "pi-square";
                piano: "piano";
                pickaxe: "pickaxe";
                "picture-in-picture": "picture-in-picture";
                "picture-in-picture-2": "picture-in-picture-2";
                "pie-chart": "pie-chart";
                "piggy-bank": "piggy-bank";
                pilcrow: "pilcrow";
                "pilcrow-left": "pilcrow-left";
                "pilcrow-right": "pilcrow-right";
                "pilcrow-square": "pilcrow-square";
                pill: "pill";
                "pill-bottle": "pill-bottle";
                pin: "pin";
                "pin-off": "pin-off";
                pipette: "pipette";
                pizza: "pizza";
                plane: "plane";
                "plane-landing": "plane-landing";
                "plane-takeoff": "plane-takeoff";
                play: "play";
                "play-circle": "play-circle";
                "play-square": "play-square";
                plug: "plug";
                "plug-2": "plug-2";
                "plug-zap": "plug-zap";
                "plug-zap-2": "plug-zap-2";
                plus: "plus";
                "plus-circle": "plus-circle";
                "plus-square": "plus-square";
                pocket: "pocket";
                "pocket-knife": "pocket-knife";
                podcast: "podcast";
                pointer: "pointer";
                "pointer-off": "pointer-off";
                popcorn: "popcorn";
                popsicle: "popsicle";
                "pound-sterling": "pound-sterling";
                power: "power";
                "power-circle": "power-circle";
                "power-off": "power-off";
                "power-square": "power-square";
                presentation: "presentation";
                printer: "printer";
                "printer-check": "printer-check";
                "printer-x": "printer-x";
                projector: "projector";
                proportions: "proportions";
                puzzle: "puzzle";
                pyramid: "pyramid";
                "qr-code": "qr-code";
                quote: "quote";
                rabbit: "rabbit";
                radar: "radar";
                radiation: "radiation";
                radical: "radical";
                radio: "radio";
                "radio-receiver": "radio-receiver";
                "radio-tower": "radio-tower";
                radius: "radius";
                "rail-symbol": "rail-symbol";
                rainbow: "rainbow";
                rat: "rat";
                ratio: "ratio";
                receipt: "receipt";
                "receipt-cent": "receipt-cent";
                "receipt-euro": "receipt-euro";
                "receipt-indian-rupee": "receipt-indian-rupee";
                "receipt-japanese-yen": "receipt-japanese-yen";
                "receipt-pound-sterling": "receipt-pound-sterling";
                "receipt-russian-ruble": "receipt-russian-ruble";
                "receipt-swiss-franc": "receipt-swiss-franc";
                "receipt-text": "receipt-text";
                "receipt-turkish-lira": "receipt-turkish-lira";
                "rectangle-circle": "rectangle-circle";
                "rectangle-ellipsis": "rectangle-ellipsis";
                "rectangle-goggles": "rectangle-goggles";
                "rectangle-horizontal": "rectangle-horizontal";
                "rectangle-vertical": "rectangle-vertical";
                recycle: "recycle";
                redo: "redo";
                "redo-2": "redo-2";
                "redo-dot": "redo-dot";
                "refresh-ccw": "refresh-ccw";
                "refresh-ccw-dot": "refresh-ccw-dot";
                "refresh-cw": "refresh-cw";
                "refresh-cw-off": "refresh-cw-off";
                refrigerator: "refrigerator";
                regex: "regex";
                "remove-formatting": "remove-formatting";
                "repeat-1": "repeat-1";
                "repeat-2": "repeat-2";
                "replace-all": "replace-all";
                reply: "reply";
                "reply-all": "reply-all";
                rewind: "rewind";
                ribbon: "ribbon";
                rocket: "rocket";
                "rocking-chair": "rocking-chair";
                "roller-coaster": "roller-coaster";
                rose: "rose";
                "rotate-3-d": "rotate-3-d";
                "rotate-3d": "rotate-3d";
                "rotate-ccw": "rotate-ccw";
                "rotate-ccw-key": "rotate-ccw-key";
                "rotate-ccw-square": "rotate-ccw-square";
                "rotate-cw": "rotate-cw";
                "rotate-cw-square": "rotate-cw-square";
                route: "route";
                "route-off": "route-off";
                router: "router";
                rows: "rows";
                "rows-2": "rows-2";
                "rows-3": "rows-3";
                "rows-4": "rows-4";
                rss: "rss";
                ruler: "ruler";
                "ruler-dimension-line": "ruler-dimension-line";
                "russian-ruble": "russian-ruble";
                sailboat: "sailboat";
                salad: "salad";
                sandwich: "sandwich";
                satellite: "satellite";
                "satellite-dish": "satellite-dish";
                "saudi-riyal": "saudi-riyal";
                save: "save";
                "save-all": "save-all";
                "save-off": "save-off";
                scale: "scale";
                "scale-3-d": "scale-3-d";
                "scale-3d": "scale-3d";
                scaling: "scaling";
                scan: "scan";
                "scan-barcode": "scan-barcode";
                "scan-eye": "scan-eye";
                "scan-face": "scan-face";
                "scan-heart": "scan-heart";
                "scan-line": "scan-line";
                "scan-qr-code": "scan-qr-code";
                "scan-search": "scan-search";
                "scan-text": "scan-text";
                "scatter-chart": "scatter-chart";
                school: "school";
                "school-2": "school-2";
                scissors: "scissors";
                "scissors-line-dashed": "scissors-line-dashed";
                "scissors-square": "scissors-square";
                "scissors-square-dashed-bottom": "scissors-square-dashed-bottom";
                scooter: "scooter";
                "screen-share": "screen-share";
                "screen-share-off": "screen-share-off";
                scroll: "scroll";
                "scroll-text": "scroll-text";
                "search-alert": "search-alert";
                "search-check": "search-check";
                "search-code": "search-code";
                "search-slash": "search-slash";
                "search-x": "search-x";
                section: "section";
                send: "send";
                "send-horizonal": "send-horizonal";
                "send-horizontal": "send-horizontal";
                "send-to-back": "send-to-back";
                "separator-horizontal": "separator-horizontal";
                "separator-vertical": "separator-vertical";
                server: "server";
                "server-cog": "server-cog";
                "server-crash": "server-crash";
                "server-off": "server-off";
                settings: "settings";
                "settings-2": "settings-2";
                shapes: "shapes";
                share: "share";
                "share-2": "share-2";
                sheet: "sheet";
                shell: "shell";
                "shelving-unit": "shelving-unit";
                shield: "shield";
                "shield-alert": "shield-alert";
                "shield-ban": "shield-ban";
                "shield-check": "shield-check";
                "shield-close": "shield-close";
                "shield-ellipsis": "shield-ellipsis";
                "shield-half": "shield-half";
                "shield-minus": "shield-minus";
                "shield-off": "shield-off";
                "shield-plus": "shield-plus";
                "shield-question": "shield-question";
                "shield-question-mark": "shield-question-mark";
                "shield-user": "shield-user";
                "shield-x": "shield-x";
                ship: "ship";
                "ship-wheel": "ship-wheel";
                shirt: "shirt";
                "shopping-bag": "shopping-bag";
                "shopping-basket": "shopping-basket";
                "shopping-cart": "shopping-cart";
                shovel: "shovel";
                "shower-head": "shower-head";
                shredder: "shredder";
                shrimp: "shrimp";
                shrink: "shrink";
                shrub: "shrub";
                shuffle: "shuffle";
                sidebar: "sidebar";
                "sidebar-close": "sidebar-close";
                "sidebar-open": "sidebar-open";
                sigma: "sigma";
                "sigma-square": "sigma-square";
                signal: "signal";
                "signal-high": "signal-high";
                "signal-low": "signal-low";
                "signal-medium": "signal-medium";
                "signal-zero": "signal-zero";
                signature: "signature";
                signpost: "signpost";
                "signpost-big": "signpost-big";
                siren: "siren";
                "skip-back": "skip-back";
                "skip-forward": "skip-forward";
                skull: "skull";
                slack: "slack";
                slash: "slash";
                "slash-square": "slash-square";
                sliders: "sliders";
                "sliders-horizontal": "sliders-horizontal";
                "sliders-vertical": "sliders-vertical";
                smartphone: "smartphone";
                "smartphone-charging": "smartphone-charging";
                "smartphone-nfc": "smartphone-nfc";
                smile: "smile";
                "smile-plus": "smile-plus";
                snail: "snail";
                snowflake: "snowflake";
                "soap-dispenser-droplet": "soap-dispenser-droplet";
                sofa: "sofa";
                "solar-panel": "solar-panel";
                "sort-asc": "sort-asc";
                "sort-desc": "sort-desc";
                soup: "soup";
                space: "space";
                spade: "spade";
                sparkle: "sparkle";
                sparkles: "sparkles";
                speaker: "speaker";
                speech: "speech";
                "spell-check": "spell-check";
                "spell-check-2": "spell-check-2";
                spline: "spline";
                "spline-pointer": "spline-pointer";
                "split-square-horizontal": "split-square-horizontal";
                "split-square-vertical": "split-square-vertical";
                spool: "spool";
                spotlight: "spotlight";
                "spray-can": "spray-can";
                sprout: "sprout";
                square: "square";
                "square-activity": "square-activity";
                "square-arrow-down": "square-arrow-down";
                "square-arrow-down-left": "square-arrow-down-left";
                "square-arrow-down-right": "square-arrow-down-right";
                "square-arrow-left": "square-arrow-left";
                "square-arrow-out-down-left": "square-arrow-out-down-left";
                "square-arrow-out-down-right": "square-arrow-out-down-right";
                "square-arrow-out-up-left": "square-arrow-out-up-left";
                "square-arrow-out-up-right": "square-arrow-out-up-right";
                "square-arrow-right": "square-arrow-right";
                "square-arrow-right-enter": "square-arrow-right-enter";
                "square-arrow-right-exit": "square-arrow-right-exit";
                "square-arrow-up": "square-arrow-up";
                "square-arrow-up-left": "square-arrow-up-left";
                "square-arrow-up-right": "square-arrow-up-right";
                "square-asterisk": "square-asterisk";
                "square-bottom-dashed-scissors": "square-bottom-dashed-scissors";
                "square-centerline-dashed-horizontal": "square-centerline-dashed-horizontal";
                "square-centerline-dashed-vertical": "square-centerline-dashed-vertical";
                "square-chart-gantt": "square-chart-gantt";
                "square-check": "square-check";
                "square-check-big": "square-check-big";
                "square-chevron-down": "square-chevron-down";
                "square-chevron-left": "square-chevron-left";
                "square-chevron-right": "square-chevron-right";
                "square-chevron-up": "square-chevron-up";
                "square-code": "square-code";
                "square-dashed": "square-dashed";
                "square-dashed-bottom": "square-dashed-bottom";
                "square-dashed-bottom-code": "square-dashed-bottom-code";
                "square-dashed-kanban": "square-dashed-kanban";
                "square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
                "square-dashed-top-solid": "square-dashed-top-solid";
                "square-divide": "square-divide";
                "square-dot": "square-dot";
                "square-equal": "square-equal";
                "square-function": "square-function";
                "square-gantt-chart": "square-gantt-chart";
                "square-kanban": "square-kanban";
                "square-library": "square-library";
                "square-m": "square-m";
                "square-menu": "square-menu";
                "square-minus": "square-minus";
                "square-mouse-pointer": "square-mouse-pointer";
                "square-parking": "square-parking";
                "square-parking-off": "square-parking-off";
                "square-pause": "square-pause";
                "square-pen": "square-pen";
                "square-percent": "square-percent";
                "square-pi": "square-pi";
                "square-pilcrow": "square-pilcrow";
                "square-play": "square-play";
                "square-plus": "square-plus";
                "square-power": "square-power";
                "square-radical": "square-radical";
                "square-round-corner": "square-round-corner";
                "square-scissors": "square-scissors";
                "square-sigma": "square-sigma";
                "square-slash": "square-slash";
                "square-split-horizontal": "square-split-horizontal";
                "square-split-vertical": "square-split-vertical";
                "square-square": "square-square";
                "square-stack": "square-stack";
                "square-star": "square-star";
                "square-stop": "square-stop";
                "square-terminal": "square-terminal";
                "square-user": "square-user";
                "square-user-round": "square-user-round";
                "square-x": "square-x";
                "squares-exclude": "squares-exclude";
                "squares-intersect": "squares-intersect";
                "squares-subtract": "squares-subtract";
                "squares-unite": "squares-unite";
                squircle: "squircle";
                "squircle-dashed": "squircle-dashed";
                squirrel: "squirrel";
                stamp: "stamp";
                star: "star";
                "star-half": "star-half";
                "star-off": "star-off";
                stars: "stars";
                "step-back": "step-back";
                "step-forward": "step-forward";
                stethoscope: "stethoscope";
                sticker: "sticker";
                "sticky-note": "sticky-note";
                stone: "stone";
                "stop-circle": "stop-circle";
                store: "store";
                "stretch-horizontal": "stretch-horizontal";
                "stretch-vertical": "stretch-vertical";
                strikethrough: "strikethrough";
                subscript: "subscript";
                subtitles: "subtitles";
                sun: "sun";
                "sun-dim": "sun-dim";
                "sun-medium": "sun-medium";
                "sun-moon": "sun-moon";
                "sun-snow": "sun-snow";
                sunrise: "sunrise";
                sunset: "sunset";
                superscript: "superscript";
                "swatch-book": "swatch-book";
                "swiss-franc": "swiss-franc";
                "switch-camera": "switch-camera";
                sword: "sword";
                swords: "swords";
                syringe: "syringe";
                table: "table";
                "table-2": "table-2";
                "table-cells-merge": "table-cells-merge";
                "table-cells-split": "table-cells-split";
                "table-columns-split": "table-columns-split";
                "table-config": "table-config";
                "table-of-contents": "table-of-contents";
                "table-properties": "table-properties";
                "table-rows-split": "table-rows-split";
                tablet: "tablet";
                "tablet-smartphone": "tablet-smartphone";
                tablets: "tablets";
                tag: "tag";
                tags: "tags";
                "tally-1": "tally-1";
                "tally-2": "tally-2";
                "tally-3": "tally-3";
                "tally-4": "tally-4";
                "tally-5": "tally-5";
                tangent: "tangent";
                target: "target";
                telescope: "telescope";
                tent: "tent";
                "tent-tree": "tent-tree";
                terminal: "terminal";
                "terminal-square": "terminal-square";
                "test-tube": "test-tube";
                "test-tube-2": "test-tube-2";
                "test-tube-diagonal": "test-tube-diagonal";
                "test-tubes": "test-tubes";
                text: "text";
                "text-align-center": "text-align-center";
                "text-align-end": "text-align-end";
                "text-align-justify": "text-align-justify";
                "text-align-start": "text-align-start";
                "text-cursor": "text-cursor";
                "text-cursor-input": "text-cursor-input";
                "text-initial": "text-initial";
                "text-quote": "text-quote";
                "text-search": "text-search";
                "text-select": "text-select";
                "text-selection": "text-selection";
                "text-wrap": "text-wrap";
                theater: "theater";
                thermometer: "thermometer";
                "thermometer-snowflake": "thermometer-snowflake";
                "thermometer-sun": "thermometer-sun";
                "thumbs-down": "thumbs-down";
                "thumbs-up": "thumbs-up";
                ticket: "ticket";
                "ticket-check": "ticket-check";
                "ticket-minus": "ticket-minus";
                "ticket-percent": "ticket-percent";
                "ticket-plus": "ticket-plus";
                "ticket-slash": "ticket-slash";
                "ticket-x": "ticket-x";
                tickets: "tickets";
                "tickets-plane": "tickets-plane";
                timer: "timer";
                "timer-off": "timer-off";
                "timer-reset": "timer-reset";
                "toggle-left": "toggle-left";
                "toggle-right": "toggle-right";
                toilet: "toilet";
                "tool-case": "tool-case";
                toolbox: "toolbox";
                tornado: "tornado";
                torus: "torus";
                touchpad: "touchpad";
                "touchpad-off": "touchpad-off";
                "towel-rack": "towel-rack";
                "tower-control": "tower-control";
                "toy-brick": "toy-brick";
                tractor: "tractor";
                "traffic-cone": "traffic-cone";
                train: "train";
                "train-front": "train-front";
                "train-front-tunnel": "train-front-tunnel";
                "train-track": "train-track";
                "tram-front": "tram-front";
                transgender: "transgender";
                trash: "trash";
                "trash-2": "trash-2";
                "tree-deciduous": "tree-deciduous";
                "tree-palm": "tree-palm";
                "tree-pine": "tree-pine";
                trees: "trees";
                trello: "trello";
                "trending-down": "trending-down";
                "trending-up": "trending-up";
                "trending-up-down": "trending-up-down";
                triangle: "triangle";
                "triangle-alert": "triangle-alert";
                "triangle-dashed": "triangle-dashed";
                "triangle-right": "triangle-right";
                trophy: "trophy";
                truck: "truck";
                "truck-electric": "truck-electric";
                "turkish-lira": "turkish-lira";
                turntable: "turntable";
                turtle: "turtle";
                tv: "tv";
                "tv-2": "tv-2";
                "tv-minimal": "tv-minimal";
                "tv-minimal-play": "tv-minimal-play";
                twitch: "twitch";
                twitter: "twitter";
                type: "type";
                "type-outline": "type-outline";
                umbrella: "umbrella";
                "umbrella-off": "umbrella-off";
                underline: "underline";
                undo: "undo";
                "undo-2": "undo-2";
                "undo-dot": "undo-dot";
                "unfold-horizontal": "unfold-horizontal";
                "unfold-vertical": "unfold-vertical";
                ungroup: "ungroup";
                university: "university";
                unlink: "unlink";
                "unlink-2": "unlink-2";
                unlock: "unlock";
                "unlock-keyhole": "unlock-keyhole";
                unplug: "unplug";
                upload: "upload";
                "upload-cloud": "upload-cloud";
                usb: "usb";
                user: "user";
                "user-2": "user-2";
                "user-check": "user-check";
                "user-check-2": "user-check-2";
                "user-circle": "user-circle";
                "user-circle-2": "user-circle-2";
                "user-cog": "user-cog";
                "user-cog-2": "user-cog-2";
                "user-key": "user-key";
                "user-lock": "user-lock";
                "user-minus": "user-minus";
                "user-minus-2": "user-minus-2";
                "user-pen": "user-pen";
                "user-plus": "user-plus";
                "user-plus-2": "user-plus-2";
                "user-round": "user-round";
                "user-round-check": "user-round-check";
                "user-round-cog": "user-round-cog";
                "user-round-key": "user-round-key";
                "user-round-minus": "user-round-minus";
                "user-round-pen": "user-round-pen";
                "user-round-plus": "user-round-plus";
                "user-round-search": "user-round-search";
                "user-round-x": "user-round-x";
                "user-search": "user-search";
                "user-square": "user-square";
                "user-square-2": "user-square-2";
                "user-star": "user-star";
                "user-x": "user-x";
                "user-x-2": "user-x-2";
                users: "users";
                "users-2": "users-2";
                "users-round": "users-round";
                utensils: "utensils";
                "utensils-crossed": "utensils-crossed";
                "utility-pole": "utility-pole";
                van: "van";
                variable: "variable";
                vault: "vault";
                "vector-square": "vector-square";
                vegan: "vegan";
                "venetian-mask": "venetian-mask";
                venus: "venus";
                "venus-and-mars": "venus-and-mars";
                verified: "verified";
                vibrate: "vibrate";
                "vibrate-off": "vibrate-off";
                video: "video";
                "video-off": "video-off";
                videotape: "videotape";
                view: "view";
                voicemail: "voicemail";
                volleyball: "volleyball";
                volume: "volume";
                "volume-1": "volume-1";
                "volume-2": "volume-2";
                "volume-off": "volume-off";
                "volume-x": "volume-x";
                vote: "vote";
                wallet: "wallet";
                "wallet-2": "wallet-2";
                "wallet-cards": "wallet-cards";
                "wallet-minimal": "wallet-minimal";
                wallpaper: "wallpaper";
                wand: "wand";
                "wand-2": "wand-2";
                "wand-sparkles": "wand-sparkles";
                warehouse: "warehouse";
                "washing-machine": "washing-machine";
                watch: "watch";
                waves: "waves";
                "waves-arrow-down": "waves-arrow-down";
                "waves-arrow-up": "waves-arrow-up";
                "waves-ladder": "waves-ladder";
                waypoints: "waypoints";
                webcam: "webcam";
                webhook: "webhook";
                "webhook-off": "webhook-off";
                weight: "weight";
                "weight-tilde": "weight-tilde";
                wheat: "wheat";
                "wheat-off": "wheat-off";
                "whole-word": "whole-word";
                wifi: "wifi";
                "wifi-cog": "wifi-cog";
                "wifi-high": "wifi-high";
                "wifi-low": "wifi-low";
                "wifi-off": "wifi-off";
                "wifi-pen": "wifi-pen";
                "wifi-sync": "wifi-sync";
                "wifi-zero": "wifi-zero";
                wind: "wind";
                "wind-arrow-down": "wind-arrow-down";
                wine: "wine";
                "wine-off": "wine-off";
                workflow: "workflow";
                worm: "worm";
                "wrap-text": "wrap-text";
                wrench: "wrench";
                x: "x";
                "x-circle": "x-circle";
                "x-line-top": "x-line-top";
                "x-octagon": "x-octagon";
                "x-square": "x-square";
                youtube: "youtube";
                zap: "zap";
                "zap-off": "zap-off";
                "zodiac-aquarius": "zodiac-aquarius";
                "zodiac-aries": "zodiac-aries";
                "zodiac-cancer": "zodiac-cancer";
                "zodiac-capricorn": "zodiac-capricorn";
                "zodiac-gemini": "zodiac-gemini";
                "zodiac-leo": "zodiac-leo";
                "zodiac-libra": "zodiac-libra";
                "zodiac-ophiuchus": "zodiac-ophiuchus";
                "zodiac-pisces": "zodiac-pisces";
                "zodiac-sagittarius": "zodiac-sagittarius";
                "zodiac-scorpio": "zodiac-scorpio";
                "zodiac-taurus": "zodiac-taurus";
                "zodiac-virgo": "zodiac-virgo";
                "zoom-in": "zoom-in";
                "zoom-out": "zoom-out";
            }>>;
            to: z.ZodString;
            target: z.ZodOptional<z.ZodEnum<{
                _self: "_self";
                _blank: "_blank";
            }>>;
            display: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                auth: "auth";
                anon: "anon";
                always: "always";
                hide: "hide";
            }>, z.ZodCustom<(params: {
                context: ZudokuContext;
                auth: UseAuthReturn;
            }) => boolean, (params: {
                context: ZudokuContext;
                auth: UseAuthReturn;
            }) => boolean>]>>;
        }, z.core.$strip>, z.ZodObject<{
            label: z.ZodString;
            items: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
                label: z.ZodString;
                icon: z.ZodOptional<z.ZodEnum<{
                    info: "info";
                    replace: "replace";
                    search: "search";
                    slice: "slice";
                    split: "split";
                    repeat: "repeat";
                    anchor: "anchor";
                    bold: "bold";
                    link: "link";
                    binary: "binary";
                    "a-arrow-down": "a-arrow-down";
                    "a-arrow-up": "a-arrow-up";
                    "a-large-small": "a-large-small";
                    accessibility: "accessibility";
                    activity: "activity";
                    "activity-square": "activity-square";
                    "air-vent": "air-vent";
                    airplay: "airplay";
                    "alarm-check": "alarm-check";
                    "alarm-clock": "alarm-clock";
                    "alarm-clock-check": "alarm-clock-check";
                    "alarm-clock-minus": "alarm-clock-minus";
                    "alarm-clock-off": "alarm-clock-off";
                    "alarm-clock-plus": "alarm-clock-plus";
                    "alarm-minus": "alarm-minus";
                    "alarm-plus": "alarm-plus";
                    "alarm-smoke": "alarm-smoke";
                    album: "album";
                    "alert-circle": "alert-circle";
                    "alert-octagon": "alert-octagon";
                    "alert-triangle": "alert-triangle";
                    "align-center": "align-center";
                    "align-center-horizontal": "align-center-horizontal";
                    "align-center-vertical": "align-center-vertical";
                    "align-end-horizontal": "align-end-horizontal";
                    "align-end-vertical": "align-end-vertical";
                    "align-horizontal-distribute-center": "align-horizontal-distribute-center";
                    "align-horizontal-distribute-end": "align-horizontal-distribute-end";
                    "align-horizontal-distribute-start": "align-horizontal-distribute-start";
                    "align-horizontal-justify-center": "align-horizontal-justify-center";
                    "align-horizontal-justify-end": "align-horizontal-justify-end";
                    "align-horizontal-justify-start": "align-horizontal-justify-start";
                    "align-horizontal-space-around": "align-horizontal-space-around";
                    "align-horizontal-space-between": "align-horizontal-space-between";
                    "align-justify": "align-justify";
                    "align-left": "align-left";
                    "align-right": "align-right";
                    "align-start-horizontal": "align-start-horizontal";
                    "align-start-vertical": "align-start-vertical";
                    "align-vertical-distribute-center": "align-vertical-distribute-center";
                    "align-vertical-distribute-end": "align-vertical-distribute-end";
                    "align-vertical-distribute-start": "align-vertical-distribute-start";
                    "align-vertical-justify-center": "align-vertical-justify-center";
                    "align-vertical-justify-end": "align-vertical-justify-end";
                    "align-vertical-justify-start": "align-vertical-justify-start";
                    "align-vertical-space-around": "align-vertical-space-around";
                    "align-vertical-space-between": "align-vertical-space-between";
                    ambulance: "ambulance";
                    ampersand: "ampersand";
                    ampersands: "ampersands";
                    amphora: "amphora";
                    angry: "angry";
                    annoyed: "annoyed";
                    antenna: "antenna";
                    anvil: "anvil";
                    aperture: "aperture";
                    "app-window": "app-window";
                    "app-window-mac": "app-window-mac";
                    apple: "apple";
                    archive: "archive";
                    "archive-restore": "archive-restore";
                    "archive-x": "archive-x";
                    "area-chart": "area-chart";
                    armchair: "armchair";
                    "arrow-big-down": "arrow-big-down";
                    "arrow-big-down-dash": "arrow-big-down-dash";
                    "arrow-big-left": "arrow-big-left";
                    "arrow-big-left-dash": "arrow-big-left-dash";
                    "arrow-big-right": "arrow-big-right";
                    "arrow-big-right-dash": "arrow-big-right-dash";
                    "arrow-big-up": "arrow-big-up";
                    "arrow-big-up-dash": "arrow-big-up-dash";
                    "arrow-down": "arrow-down";
                    "arrow-down-0-1": "arrow-down-0-1";
                    "arrow-down-01": "arrow-down-01";
                    "arrow-down-1-0": "arrow-down-1-0";
                    "arrow-down-10": "arrow-down-10";
                    "arrow-down-a-z": "arrow-down-a-z";
                    "arrow-down-az": "arrow-down-az";
                    "arrow-down-circle": "arrow-down-circle";
                    "arrow-down-from-line": "arrow-down-from-line";
                    "arrow-down-left": "arrow-down-left";
                    "arrow-down-left-from-circle": "arrow-down-left-from-circle";
                    "arrow-down-left-from-square": "arrow-down-left-from-square";
                    "arrow-down-left-square": "arrow-down-left-square";
                    "arrow-down-narrow-wide": "arrow-down-narrow-wide";
                    "arrow-down-right": "arrow-down-right";
                    "arrow-down-right-from-circle": "arrow-down-right-from-circle";
                    "arrow-down-right-from-square": "arrow-down-right-from-square";
                    "arrow-down-right-square": "arrow-down-right-square";
                    "arrow-down-square": "arrow-down-square";
                    "arrow-down-to-dot": "arrow-down-to-dot";
                    "arrow-down-to-line": "arrow-down-to-line";
                    "arrow-down-up": "arrow-down-up";
                    "arrow-down-wide-narrow": "arrow-down-wide-narrow";
                    "arrow-down-z-a": "arrow-down-z-a";
                    "arrow-down-za": "arrow-down-za";
                    "arrow-left": "arrow-left";
                    "arrow-left-circle": "arrow-left-circle";
                    "arrow-left-from-line": "arrow-left-from-line";
                    "arrow-left-right": "arrow-left-right";
                    "arrow-left-square": "arrow-left-square";
                    "arrow-left-to-line": "arrow-left-to-line";
                    "arrow-right": "arrow-right";
                    "arrow-right-circle": "arrow-right-circle";
                    "arrow-right-from-line": "arrow-right-from-line";
                    "arrow-right-left": "arrow-right-left";
                    "arrow-right-square": "arrow-right-square";
                    "arrow-right-to-line": "arrow-right-to-line";
                    "arrow-up": "arrow-up";
                    "arrow-up-0-1": "arrow-up-0-1";
                    "arrow-up-01": "arrow-up-01";
                    "arrow-up-1-0": "arrow-up-1-0";
                    "arrow-up-10": "arrow-up-10";
                    "arrow-up-a-z": "arrow-up-a-z";
                    "arrow-up-az": "arrow-up-az";
                    "arrow-up-circle": "arrow-up-circle";
                    "arrow-up-down": "arrow-up-down";
                    "arrow-up-from-dot": "arrow-up-from-dot";
                    "arrow-up-from-line": "arrow-up-from-line";
                    "arrow-up-left": "arrow-up-left";
                    "arrow-up-left-from-circle": "arrow-up-left-from-circle";
                    "arrow-up-left-from-square": "arrow-up-left-from-square";
                    "arrow-up-left-square": "arrow-up-left-square";
                    "arrow-up-narrow-wide": "arrow-up-narrow-wide";
                    "arrow-up-right": "arrow-up-right";
                    "arrow-up-right-from-circle": "arrow-up-right-from-circle";
                    "arrow-up-right-from-square": "arrow-up-right-from-square";
                    "arrow-up-right-square": "arrow-up-right-square";
                    "arrow-up-square": "arrow-up-square";
                    "arrow-up-to-line": "arrow-up-to-line";
                    "arrow-up-wide-narrow": "arrow-up-wide-narrow";
                    "arrow-up-z-a": "arrow-up-z-a";
                    "arrow-up-za": "arrow-up-za";
                    "arrows-up-from-line": "arrows-up-from-line";
                    asterisk: "asterisk";
                    "asterisk-square": "asterisk-square";
                    "at-sign": "at-sign";
                    atom: "atom";
                    "audio-lines": "audio-lines";
                    "audio-waveform": "audio-waveform";
                    award: "award";
                    axe: "axe";
                    "axis-3-d": "axis-3-d";
                    "axis-3d": "axis-3d";
                    baby: "baby";
                    backpack: "backpack";
                    badge: "badge";
                    "badge-alert": "badge-alert";
                    "badge-cent": "badge-cent";
                    "badge-check": "badge-check";
                    "badge-dollar-sign": "badge-dollar-sign";
                    "badge-euro": "badge-euro";
                    "badge-help": "badge-help";
                    "badge-indian-rupee": "badge-indian-rupee";
                    "badge-info": "badge-info";
                    "badge-japanese-yen": "badge-japanese-yen";
                    "badge-minus": "badge-minus";
                    "badge-percent": "badge-percent";
                    "badge-plus": "badge-plus";
                    "badge-pound-sterling": "badge-pound-sterling";
                    "badge-question-mark": "badge-question-mark";
                    "badge-russian-ruble": "badge-russian-ruble";
                    "badge-swiss-franc": "badge-swiss-franc";
                    "badge-turkish-lira": "badge-turkish-lira";
                    "badge-x": "badge-x";
                    "baggage-claim": "baggage-claim";
                    balloon: "balloon";
                    ban: "ban";
                    banana: "banana";
                    bandage: "bandage";
                    banknote: "banknote";
                    "banknote-arrow-down": "banknote-arrow-down";
                    "banknote-arrow-up": "banknote-arrow-up";
                    "banknote-x": "banknote-x";
                    "bar-chart": "bar-chart";
                    "bar-chart-2": "bar-chart-2";
                    "bar-chart-3": "bar-chart-3";
                    "bar-chart-4": "bar-chart-4";
                    "bar-chart-big": "bar-chart-big";
                    "bar-chart-horizontal": "bar-chart-horizontal";
                    "bar-chart-horizontal-big": "bar-chart-horizontal-big";
                    barcode: "barcode";
                    barrel: "barrel";
                    baseline: "baseline";
                    bath: "bath";
                    battery: "battery";
                    "battery-charging": "battery-charging";
                    "battery-full": "battery-full";
                    "battery-low": "battery-low";
                    "battery-medium": "battery-medium";
                    "battery-plus": "battery-plus";
                    "battery-warning": "battery-warning";
                    beaker: "beaker";
                    bean: "bean";
                    "bean-off": "bean-off";
                    bed: "bed";
                    "bed-double": "bed-double";
                    "bed-single": "bed-single";
                    beef: "beef";
                    beer: "beer";
                    "beer-off": "beer-off";
                    bell: "bell";
                    "bell-dot": "bell-dot";
                    "bell-electric": "bell-electric";
                    "bell-minus": "bell-minus";
                    "bell-off": "bell-off";
                    "bell-plus": "bell-plus";
                    "bell-ring": "bell-ring";
                    "between-horizonal-end": "between-horizonal-end";
                    "between-horizonal-start": "between-horizonal-start";
                    "between-horizontal-end": "between-horizontal-end";
                    "between-horizontal-start": "between-horizontal-start";
                    "between-vertical-end": "between-vertical-end";
                    "between-vertical-start": "between-vertical-start";
                    "biceps-flexed": "biceps-flexed";
                    bike: "bike";
                    binoculars: "binoculars";
                    biohazard: "biohazard";
                    bird: "bird";
                    birdhouse: "birdhouse";
                    bitcoin: "bitcoin";
                    blend: "blend";
                    blinds: "blinds";
                    blocks: "blocks";
                    bluetooth: "bluetooth";
                    "bluetooth-connected": "bluetooth-connected";
                    "bluetooth-off": "bluetooth-off";
                    "bluetooth-searching": "bluetooth-searching";
                    bolt: "bolt";
                    bomb: "bomb";
                    bone: "bone";
                    book: "book";
                    "book-a": "book-a";
                    "book-alert": "book-alert";
                    "book-audio": "book-audio";
                    "book-check": "book-check";
                    "book-copy": "book-copy";
                    "book-dashed": "book-dashed";
                    "book-down": "book-down";
                    "book-headphones": "book-headphones";
                    "book-heart": "book-heart";
                    "book-image": "book-image";
                    "book-key": "book-key";
                    "book-lock": "book-lock";
                    "book-marked": "book-marked";
                    "book-minus": "book-minus";
                    "book-open": "book-open";
                    "book-open-check": "book-open-check";
                    "book-open-text": "book-open-text";
                    "book-plus": "book-plus";
                    "book-search": "book-search";
                    "book-template": "book-template";
                    "book-text": "book-text";
                    "book-type": "book-type";
                    "book-up": "book-up";
                    "book-up-2": "book-up-2";
                    "book-user": "book-user";
                    "book-x": "book-x";
                    bookmark: "bookmark";
                    "bookmark-check": "bookmark-check";
                    "bookmark-minus": "bookmark-minus";
                    "bookmark-plus": "bookmark-plus";
                    "bookmark-x": "bookmark-x";
                    "boom-box": "boom-box";
                    bot: "bot";
                    "bot-message-square": "bot-message-square";
                    "bot-off": "bot-off";
                    "bottle-wine": "bottle-wine";
                    "bow-arrow": "bow-arrow";
                    box: "box";
                    "box-select": "box-select";
                    boxes: "boxes";
                    braces: "braces";
                    brackets: "brackets";
                    brain: "brain";
                    "brain-circuit": "brain-circuit";
                    "brain-cog": "brain-cog";
                    "brick-wall": "brick-wall";
                    "brick-wall-fire": "brick-wall-fire";
                    "brick-wall-shield": "brick-wall-shield";
                    briefcase: "briefcase";
                    "briefcase-business": "briefcase-business";
                    "briefcase-conveyor-belt": "briefcase-conveyor-belt";
                    "briefcase-medical": "briefcase-medical";
                    "bring-to-front": "bring-to-front";
                    brush: "brush";
                    "brush-cleaning": "brush-cleaning";
                    bubbles: "bubbles";
                    bug: "bug";
                    "bug-off": "bug-off";
                    "bug-play": "bug-play";
                    building: "building";
                    "building-2": "building-2";
                    bus: "bus";
                    "bus-front": "bus-front";
                    cable: "cable";
                    "cable-car": "cable-car";
                    cake: "cake";
                    "cake-slice": "cake-slice";
                    calculator: "calculator";
                    calendar: "calendar";
                    "calendar-1": "calendar-1";
                    "calendar-arrow-down": "calendar-arrow-down";
                    "calendar-arrow-up": "calendar-arrow-up";
                    "calendar-check": "calendar-check";
                    "calendar-check-2": "calendar-check-2";
                    "calendar-clock": "calendar-clock";
                    "calendar-cog": "calendar-cog";
                    "calendar-days": "calendar-days";
                    "calendar-fold": "calendar-fold";
                    "calendar-heart": "calendar-heart";
                    "calendar-minus": "calendar-minus";
                    "calendar-minus-2": "calendar-minus-2";
                    "calendar-off": "calendar-off";
                    "calendar-plus": "calendar-plus";
                    "calendar-plus-2": "calendar-plus-2";
                    "calendar-range": "calendar-range";
                    "calendar-search": "calendar-search";
                    "calendar-sync": "calendar-sync";
                    "calendar-x": "calendar-x";
                    "calendar-x-2": "calendar-x-2";
                    calendars: "calendars";
                    camera: "camera";
                    "camera-off": "camera-off";
                    "candlestick-chart": "candlestick-chart";
                    candy: "candy";
                    "candy-cane": "candy-cane";
                    "candy-off": "candy-off";
                    cannabis: "cannabis";
                    "cannabis-off": "cannabis-off";
                    captions: "captions";
                    "captions-off": "captions-off";
                    car: "car";
                    "car-front": "car-front";
                    "car-taxi-front": "car-taxi-front";
                    caravan: "caravan";
                    "card-sim": "card-sim";
                    carrot: "carrot";
                    "case-lower": "case-lower";
                    "case-sensitive": "case-sensitive";
                    "case-upper": "case-upper";
                    "cassette-tape": "cassette-tape";
                    cast: "cast";
                    castle: "castle";
                    cat: "cat";
                    cctv: "cctv";
                    "chart-area": "chart-area";
                    "chart-bar": "chart-bar";
                    "chart-bar-big": "chart-bar-big";
                    "chart-bar-decreasing": "chart-bar-decreasing";
                    "chart-bar-increasing": "chart-bar-increasing";
                    "chart-bar-stacked": "chart-bar-stacked";
                    "chart-candlestick": "chart-candlestick";
                    "chart-column": "chart-column";
                    "chart-column-big": "chart-column-big";
                    "chart-column-decreasing": "chart-column-decreasing";
                    "chart-column-increasing": "chart-column-increasing";
                    "chart-column-stacked": "chart-column-stacked";
                    "chart-gantt": "chart-gantt";
                    "chart-line": "chart-line";
                    "chart-network": "chart-network";
                    "chart-no-axes-column": "chart-no-axes-column";
                    "chart-no-axes-column-decreasing": "chart-no-axes-column-decreasing";
                    "chart-no-axes-column-increasing": "chart-no-axes-column-increasing";
                    "chart-no-axes-combined": "chart-no-axes-combined";
                    "chart-no-axes-gantt": "chart-no-axes-gantt";
                    "chart-pie": "chart-pie";
                    "chart-scatter": "chart-scatter";
                    "chart-spline": "chart-spline";
                    check: "check";
                    "check-check": "check-check";
                    "check-circle": "check-circle";
                    "check-circle-2": "check-circle-2";
                    "check-line": "check-line";
                    "check-square": "check-square";
                    "check-square-2": "check-square-2";
                    "chef-hat": "chef-hat";
                    cherry: "cherry";
                    "chess-bishop": "chess-bishop";
                    "chess-king": "chess-king";
                    "chess-knight": "chess-knight";
                    "chess-pawn": "chess-pawn";
                    "chess-queen": "chess-queen";
                    "chess-rook": "chess-rook";
                    "chevron-down": "chevron-down";
                    "chevron-down-circle": "chevron-down-circle";
                    "chevron-down-square": "chevron-down-square";
                    "chevron-first": "chevron-first";
                    "chevron-last": "chevron-last";
                    "chevron-left": "chevron-left";
                    "chevron-left-circle": "chevron-left-circle";
                    "chevron-left-square": "chevron-left-square";
                    "chevron-right": "chevron-right";
                    "chevron-right-circle": "chevron-right-circle";
                    "chevron-right-square": "chevron-right-square";
                    "chevron-up": "chevron-up";
                    "chevron-up-circle": "chevron-up-circle";
                    "chevron-up-square": "chevron-up-square";
                    "chevrons-down": "chevrons-down";
                    "chevrons-down-up": "chevrons-down-up";
                    "chevrons-left": "chevrons-left";
                    "chevrons-left-right": "chevrons-left-right";
                    "chevrons-left-right-ellipsis": "chevrons-left-right-ellipsis";
                    "chevrons-right": "chevrons-right";
                    "chevrons-right-left": "chevrons-right-left";
                    "chevrons-up": "chevrons-up";
                    "chevrons-up-down": "chevrons-up-down";
                    chrome: "chrome";
                    chromium: "chromium";
                    church: "church";
                    cigarette: "cigarette";
                    "cigarette-off": "cigarette-off";
                    circle: "circle";
                    "circle-alert": "circle-alert";
                    "circle-arrow-down": "circle-arrow-down";
                    "circle-arrow-left": "circle-arrow-left";
                    "circle-arrow-out-down-left": "circle-arrow-out-down-left";
                    "circle-arrow-out-down-right": "circle-arrow-out-down-right";
                    "circle-arrow-out-up-left": "circle-arrow-out-up-left";
                    "circle-arrow-out-up-right": "circle-arrow-out-up-right";
                    "circle-arrow-right": "circle-arrow-right";
                    "circle-arrow-up": "circle-arrow-up";
                    "circle-check": "circle-check";
                    "circle-check-big": "circle-check-big";
                    "circle-chevron-down": "circle-chevron-down";
                    "circle-chevron-left": "circle-chevron-left";
                    "circle-chevron-right": "circle-chevron-right";
                    "circle-chevron-up": "circle-chevron-up";
                    "circle-dashed": "circle-dashed";
                    "circle-divide": "circle-divide";
                    "circle-dollar-sign": "circle-dollar-sign";
                    "circle-dot": "circle-dot";
                    "circle-dot-dashed": "circle-dot-dashed";
                    "circle-ellipsis": "circle-ellipsis";
                    "circle-equal": "circle-equal";
                    "circle-fading-arrow-up": "circle-fading-arrow-up";
                    "circle-fading-plus": "circle-fading-plus";
                    "circle-gauge": "circle-gauge";
                    "circle-help": "circle-help";
                    "circle-minus": "circle-minus";
                    "circle-off": "circle-off";
                    "circle-parking": "circle-parking";
                    "circle-parking-off": "circle-parking-off";
                    "circle-pause": "circle-pause";
                    "circle-percent": "circle-percent";
                    "circle-pile": "circle-pile";
                    "circle-play": "circle-play";
                    "circle-plus": "circle-plus";
                    "circle-pound-sterling": "circle-pound-sterling";
                    "circle-power": "circle-power";
                    "circle-question-mark": "circle-question-mark";
                    "circle-slash": "circle-slash";
                    "circle-slash-2": "circle-slash-2";
                    "circle-slashed": "circle-slashed";
                    "circle-small": "circle-small";
                    "circle-star": "circle-star";
                    "circle-stop": "circle-stop";
                    "circle-user": "circle-user";
                    "circle-user-round": "circle-user-round";
                    "circle-x": "circle-x";
                    "circuit-board": "circuit-board";
                    citrus: "citrus";
                    clapperboard: "clapperboard";
                    clipboard: "clipboard";
                    "clipboard-check": "clipboard-check";
                    "clipboard-clock": "clipboard-clock";
                    "clipboard-copy": "clipboard-copy";
                    "clipboard-edit": "clipboard-edit";
                    "clipboard-list": "clipboard-list";
                    "clipboard-minus": "clipboard-minus";
                    "clipboard-paste": "clipboard-paste";
                    "clipboard-pen": "clipboard-pen";
                    "clipboard-pen-line": "clipboard-pen-line";
                    "clipboard-plus": "clipboard-plus";
                    "clipboard-signature": "clipboard-signature";
                    "clipboard-type": "clipboard-type";
                    "clipboard-x": "clipboard-x";
                    clock: "clock";
                    "clock-1": "clock-1";
                    "clock-10": "clock-10";
                    "clock-11": "clock-11";
                    "clock-12": "clock-12";
                    "clock-2": "clock-2";
                    "clock-3": "clock-3";
                    "clock-4": "clock-4";
                    "clock-5": "clock-5";
                    "clock-6": "clock-6";
                    "clock-7": "clock-7";
                    "clock-8": "clock-8";
                    "clock-9": "clock-9";
                    "clock-alert": "clock-alert";
                    "clock-arrow-down": "clock-arrow-down";
                    "clock-arrow-up": "clock-arrow-up";
                    "clock-check": "clock-check";
                    "clock-fading": "clock-fading";
                    "clock-plus": "clock-plus";
                    "closed-caption": "closed-caption";
                    cloud: "cloud";
                    "cloud-alert": "cloud-alert";
                    "cloud-backup": "cloud-backup";
                    "cloud-check": "cloud-check";
                    "cloud-cog": "cloud-cog";
                    "cloud-download": "cloud-download";
                    "cloud-drizzle": "cloud-drizzle";
                    "cloud-fog": "cloud-fog";
                    "cloud-hail": "cloud-hail";
                    "cloud-lightning": "cloud-lightning";
                    "cloud-moon": "cloud-moon";
                    "cloud-moon-rain": "cloud-moon-rain";
                    "cloud-off": "cloud-off";
                    "cloud-rain": "cloud-rain";
                    "cloud-rain-wind": "cloud-rain-wind";
                    "cloud-snow": "cloud-snow";
                    "cloud-sun": "cloud-sun";
                    "cloud-sun-rain": "cloud-sun-rain";
                    "cloud-sync": "cloud-sync";
                    "cloud-upload": "cloud-upload";
                    cloudy: "cloudy";
                    clover: "clover";
                    club: "club";
                    code: "code";
                    "code-2": "code-2";
                    "code-square": "code-square";
                    "code-xml": "code-xml";
                    codepen: "codepen";
                    codesandbox: "codesandbox";
                    coffee: "coffee";
                    cog: "cog";
                    coins: "coins";
                    columns: "columns";
                    "columns-2": "columns-2";
                    "columns-3": "columns-3";
                    "columns-3-cog": "columns-3-cog";
                    "columns-4": "columns-4";
                    "columns-settings": "columns-settings";
                    combine: "combine";
                    command: "command";
                    compass: "compass";
                    component: "component";
                    computer: "computer";
                    "concierge-bell": "concierge-bell";
                    cone: "cone";
                    construction: "construction";
                    contact: "contact";
                    "contact-2": "contact-2";
                    "contact-round": "contact-round";
                    container: "container";
                    contrast: "contrast";
                    cookie: "cookie";
                    "cooking-pot": "cooking-pot";
                    copy: "copy";
                    "copy-check": "copy-check";
                    "copy-minus": "copy-minus";
                    "copy-plus": "copy-plus";
                    "copy-slash": "copy-slash";
                    "copy-x": "copy-x";
                    copyleft: "copyleft";
                    copyright: "copyright";
                    "corner-down-left": "corner-down-left";
                    "corner-down-right": "corner-down-right";
                    "corner-left-down": "corner-left-down";
                    "corner-left-up": "corner-left-up";
                    "corner-right-down": "corner-right-down";
                    "corner-right-up": "corner-right-up";
                    "corner-up-left": "corner-up-left";
                    "corner-up-right": "corner-up-right";
                    cpu: "cpu";
                    "creative-commons": "creative-commons";
                    "credit-card": "credit-card";
                    croissant: "croissant";
                    crop: "crop";
                    cross: "cross";
                    crosshair: "crosshair";
                    crown: "crown";
                    cuboid: "cuboid";
                    "cup-soda": "cup-soda";
                    "curly-braces": "curly-braces";
                    currency: "currency";
                    cylinder: "cylinder";
                    dam: "dam";
                    database: "database";
                    "database-backup": "database-backup";
                    "database-search": "database-search";
                    "database-zap": "database-zap";
                    "decimals-arrow-left": "decimals-arrow-left";
                    "decimals-arrow-right": "decimals-arrow-right";
                    delete: "delete";
                    dessert: "dessert";
                    diameter: "diameter";
                    diamond: "diamond";
                    "diamond-minus": "diamond-minus";
                    "diamond-percent": "diamond-percent";
                    "diamond-plus": "diamond-plus";
                    "dice-1": "dice-1";
                    "dice-2": "dice-2";
                    "dice-3": "dice-3";
                    "dice-4": "dice-4";
                    "dice-5": "dice-5";
                    "dice-6": "dice-6";
                    dices: "dices";
                    diff: "diff";
                    disc: "disc";
                    "disc-2": "disc-2";
                    "disc-3": "disc-3";
                    "disc-album": "disc-album";
                    divide: "divide";
                    "divide-circle": "divide-circle";
                    "divide-square": "divide-square";
                    dna: "dna";
                    "dna-off": "dna-off";
                    dock: "dock";
                    dog: "dog";
                    "dollar-sign": "dollar-sign";
                    donut: "donut";
                    "door-closed": "door-closed";
                    "door-closed-locked": "door-closed-locked";
                    "door-open": "door-open";
                    dot: "dot";
                    "dot-square": "dot-square";
                    download: "download";
                    "download-cloud": "download-cloud";
                    "drafting-compass": "drafting-compass";
                    drama: "drama";
                    dribbble: "dribbble";
                    drill: "drill";
                    drone: "drone";
                    droplet: "droplet";
                    "droplet-off": "droplet-off";
                    droplets: "droplets";
                    drum: "drum";
                    drumstick: "drumstick";
                    dumbbell: "dumbbell";
                    ear: "ear";
                    "ear-off": "ear-off";
                    earth: "earth";
                    "earth-lock": "earth-lock";
                    eclipse: "eclipse";
                    edit: "edit";
                    "edit-2": "edit-2";
                    "edit-3": "edit-3";
                    egg: "egg";
                    "egg-fried": "egg-fried";
                    "egg-off": "egg-off";
                    ellipse: "ellipse";
                    ellipsis: "ellipsis";
                    "ellipsis-vertical": "ellipsis-vertical";
                    equal: "equal";
                    "equal-approximately": "equal-approximately";
                    "equal-not": "equal-not";
                    "equal-square": "equal-square";
                    eraser: "eraser";
                    "ethernet-port": "ethernet-port";
                    euro: "euro";
                    "ev-charger": "ev-charger";
                    expand: "expand";
                    "external-link": "external-link";
                    eye: "eye";
                    "eye-closed": "eye-closed";
                    "eye-off": "eye-off";
                    facebook: "facebook";
                    factory: "factory";
                    fan: "fan";
                    "fast-forward": "fast-forward";
                    feather: "feather";
                    fence: "fence";
                    "ferris-wheel": "ferris-wheel";
                    figma: "figma";
                    file: "file";
                    "file-archive": "file-archive";
                    "file-audio": "file-audio";
                    "file-audio-2": "file-audio-2";
                    "file-axis-3-d": "file-axis-3-d";
                    "file-axis-3d": "file-axis-3d";
                    "file-badge": "file-badge";
                    "file-badge-2": "file-badge-2";
                    "file-bar-chart": "file-bar-chart";
                    "file-bar-chart-2": "file-bar-chart-2";
                    "file-box": "file-box";
                    "file-braces": "file-braces";
                    "file-braces-corner": "file-braces-corner";
                    "file-chart-column": "file-chart-column";
                    "file-chart-column-increasing": "file-chart-column-increasing";
                    "file-chart-line": "file-chart-line";
                    "file-chart-pie": "file-chart-pie";
                    "file-check": "file-check";
                    "file-check-2": "file-check-2";
                    "file-check-corner": "file-check-corner";
                    "file-clock": "file-clock";
                    "file-code": "file-code";
                    "file-code-2": "file-code-2";
                    "file-code-corner": "file-code-corner";
                    "file-cog": "file-cog";
                    "file-cog-2": "file-cog-2";
                    "file-diff": "file-diff";
                    "file-digit": "file-digit";
                    "file-down": "file-down";
                    "file-edit": "file-edit";
                    "file-exclamation-point": "file-exclamation-point";
                    "file-headphone": "file-headphone";
                    "file-heart": "file-heart";
                    "file-image": "file-image";
                    "file-input": "file-input";
                    "file-json": "file-json";
                    "file-json-2": "file-json-2";
                    "file-key": "file-key";
                    "file-key-2": "file-key-2";
                    "file-line-chart": "file-line-chart";
                    "file-lock": "file-lock";
                    "file-lock-2": "file-lock-2";
                    "file-minus": "file-minus";
                    "file-minus-2": "file-minus-2";
                    "file-minus-corner": "file-minus-corner";
                    "file-music": "file-music";
                    "file-output": "file-output";
                    "file-pen": "file-pen";
                    "file-pen-line": "file-pen-line";
                    "file-pie-chart": "file-pie-chart";
                    "file-play": "file-play";
                    "file-plus": "file-plus";
                    "file-plus-2": "file-plus-2";
                    "file-plus-corner": "file-plus-corner";
                    "file-question": "file-question";
                    "file-question-mark": "file-question-mark";
                    "file-scan": "file-scan";
                    "file-search": "file-search";
                    "file-search-2": "file-search-2";
                    "file-search-corner": "file-search-corner";
                    "file-signal": "file-signal";
                    "file-signature": "file-signature";
                    "file-sliders": "file-sliders";
                    "file-spreadsheet": "file-spreadsheet";
                    "file-stack": "file-stack";
                    "file-symlink": "file-symlink";
                    "file-terminal": "file-terminal";
                    "file-text": "file-text";
                    "file-type": "file-type";
                    "file-type-2": "file-type-2";
                    "file-type-corner": "file-type-corner";
                    "file-up": "file-up";
                    "file-user": "file-user";
                    "file-video": "file-video";
                    "file-video-2": "file-video-2";
                    "file-video-camera": "file-video-camera";
                    "file-volume": "file-volume";
                    "file-volume-2": "file-volume-2";
                    "file-warning": "file-warning";
                    "file-x": "file-x";
                    "file-x-2": "file-x-2";
                    "file-x-corner": "file-x-corner";
                    files: "files";
                    film: "film";
                    filter: "filter";
                    "filter-x": "filter-x";
                    fingerprint: "fingerprint";
                    "fingerprint-pattern": "fingerprint-pattern";
                    "fire-extinguisher": "fire-extinguisher";
                    fish: "fish";
                    "fish-off": "fish-off";
                    "fish-symbol": "fish-symbol";
                    "fishing-hook": "fishing-hook";
                    "fishing-rod": "fishing-rod";
                    flag: "flag";
                    "flag-off": "flag-off";
                    "flag-triangle-left": "flag-triangle-left";
                    "flag-triangle-right": "flag-triangle-right";
                    flame: "flame";
                    "flame-kindling": "flame-kindling";
                    flashlight: "flashlight";
                    "flashlight-off": "flashlight-off";
                    "flask-conical": "flask-conical";
                    "flask-conical-off": "flask-conical-off";
                    "flask-round": "flask-round";
                    "flip-horizontal": "flip-horizontal";
                    "flip-horizontal-2": "flip-horizontal-2";
                    "flip-vertical": "flip-vertical";
                    "flip-vertical-2": "flip-vertical-2";
                    flower: "flower";
                    "flower-2": "flower-2";
                    focus: "focus";
                    "fold-horizontal": "fold-horizontal";
                    "fold-vertical": "fold-vertical";
                    folder: "folder";
                    "folder-archive": "folder-archive";
                    "folder-check": "folder-check";
                    "folder-clock": "folder-clock";
                    "folder-closed": "folder-closed";
                    "folder-code": "folder-code";
                    "folder-cog": "folder-cog";
                    "folder-cog-2": "folder-cog-2";
                    "folder-dot": "folder-dot";
                    "folder-down": "folder-down";
                    "folder-edit": "folder-edit";
                    "folder-git": "folder-git";
                    "folder-git-2": "folder-git-2";
                    "folder-heart": "folder-heart";
                    "folder-input": "folder-input";
                    "folder-kanban": "folder-kanban";
                    "folder-key": "folder-key";
                    "folder-lock": "folder-lock";
                    "folder-minus": "folder-minus";
                    "folder-open": "folder-open";
                    "folder-open-dot": "folder-open-dot";
                    "folder-output": "folder-output";
                    "folder-pen": "folder-pen";
                    "folder-plus": "folder-plus";
                    "folder-root": "folder-root";
                    "folder-search": "folder-search";
                    "folder-search-2": "folder-search-2";
                    "folder-symlink": "folder-symlink";
                    "folder-sync": "folder-sync";
                    "folder-tree": "folder-tree";
                    "folder-up": "folder-up";
                    "folder-x": "folder-x";
                    folders: "folders";
                    footprints: "footprints";
                    "fork-knife": "fork-knife";
                    "fork-knife-crossed": "fork-knife-crossed";
                    forklift: "forklift";
                    form: "form";
                    "form-input": "form-input";
                    forward: "forward";
                    frame: "frame";
                    framer: "framer";
                    frown: "frown";
                    fuel: "fuel";
                    fullscreen: "fullscreen";
                    "function-square": "function-square";
                    funnel: "funnel";
                    "funnel-plus": "funnel-plus";
                    "funnel-x": "funnel-x";
                    "gallery-horizontal": "gallery-horizontal";
                    "gallery-horizontal-end": "gallery-horizontal-end";
                    "gallery-thumbnails": "gallery-thumbnails";
                    "gallery-vertical": "gallery-vertical";
                    "gallery-vertical-end": "gallery-vertical-end";
                    gamepad: "gamepad";
                    "gamepad-2": "gamepad-2";
                    "gamepad-directional": "gamepad-directional";
                    "gantt-chart": "gantt-chart";
                    "gantt-chart-square": "gantt-chart-square";
                    gauge: "gauge";
                    "gauge-circle": "gauge-circle";
                    gavel: "gavel";
                    gem: "gem";
                    "georgian-lari": "georgian-lari";
                    ghost: "ghost";
                    gift: "gift";
                    "git-branch": "git-branch";
                    "git-branch-minus": "git-branch-minus";
                    "git-branch-plus": "git-branch-plus";
                    "git-commit": "git-commit";
                    "git-commit-horizontal": "git-commit-horizontal";
                    "git-commit-vertical": "git-commit-vertical";
                    "git-compare": "git-compare";
                    "git-compare-arrows": "git-compare-arrows";
                    "git-fork": "git-fork";
                    "git-graph": "git-graph";
                    "git-merge": "git-merge";
                    "git-merge-conflict": "git-merge-conflict";
                    "git-pull-request": "git-pull-request";
                    "git-pull-request-arrow": "git-pull-request-arrow";
                    "git-pull-request-closed": "git-pull-request-closed";
                    "git-pull-request-create": "git-pull-request-create";
                    "git-pull-request-create-arrow": "git-pull-request-create-arrow";
                    "git-pull-request-draft": "git-pull-request-draft";
                    github: "github";
                    gitlab: "gitlab";
                    "glass-water": "glass-water";
                    glasses: "glasses";
                    globe: "globe";
                    "globe-2": "globe-2";
                    "globe-lock": "globe-lock";
                    "globe-off": "globe-off";
                    "globe-x": "globe-x";
                    goal: "goal";
                    gpu: "gpu";
                    grab: "grab";
                    "graduation-cap": "graduation-cap";
                    grape: "grape";
                    grid: "grid";
                    "grid-2-x-2": "grid-2-x-2";
                    "grid-2-x-2-check": "grid-2-x-2-check";
                    "grid-2-x-2-plus": "grid-2-x-2-plus";
                    "grid-2-x-2-x": "grid-2-x-2-x";
                    "grid-2x2": "grid-2x2";
                    "grid-2x2-check": "grid-2x2-check";
                    "grid-2x2-plus": "grid-2x2-plus";
                    "grid-2x2-x": "grid-2x2-x";
                    "grid-3-x-3": "grid-3-x-3";
                    "grid-3x2": "grid-3x2";
                    "grid-3x3": "grid-3x3";
                    grip: "grip";
                    "grip-horizontal": "grip-horizontal";
                    "grip-vertical": "grip-vertical";
                    group: "group";
                    guitar: "guitar";
                    ham: "ham";
                    hamburger: "hamburger";
                    hammer: "hammer";
                    hand: "hand";
                    "hand-coins": "hand-coins";
                    "hand-fist": "hand-fist";
                    "hand-grab": "hand-grab";
                    "hand-heart": "hand-heart";
                    "hand-helping": "hand-helping";
                    "hand-metal": "hand-metal";
                    "hand-platter": "hand-platter";
                    handbag: "handbag";
                    handshake: "handshake";
                    "hard-drive": "hard-drive";
                    "hard-drive-download": "hard-drive-download";
                    "hard-drive-upload": "hard-drive-upload";
                    "hard-hat": "hard-hat";
                    hash: "hash";
                    "hat-glasses": "hat-glasses";
                    haze: "haze";
                    hd: "hd";
                    "hdmi-port": "hdmi-port";
                    heading: "heading";
                    "heading-1": "heading-1";
                    "heading-2": "heading-2";
                    "heading-3": "heading-3";
                    "heading-4": "heading-4";
                    "heading-5": "heading-5";
                    "heading-6": "heading-6";
                    "headphone-off": "headphone-off";
                    headphones: "headphones";
                    headset: "headset";
                    heart: "heart";
                    "heart-crack": "heart-crack";
                    "heart-handshake": "heart-handshake";
                    "heart-minus": "heart-minus";
                    "heart-off": "heart-off";
                    "heart-plus": "heart-plus";
                    "heart-pulse": "heart-pulse";
                    heater: "heater";
                    helicopter: "helicopter";
                    "help-circle": "help-circle";
                    "helping-hand": "helping-hand";
                    hexagon: "hexagon";
                    highlighter: "highlighter";
                    history: "history";
                    home: "home";
                    hop: "hop";
                    "hop-off": "hop-off";
                    hospital: "hospital";
                    hotel: "hotel";
                    hourglass: "hourglass";
                    house: "house";
                    "house-heart": "house-heart";
                    "house-plug": "house-plug";
                    "house-plus": "house-plus";
                    "house-wifi": "house-wifi";
                    "ice-cream": "ice-cream";
                    "ice-cream-2": "ice-cream-2";
                    "ice-cream-bowl": "ice-cream-bowl";
                    "ice-cream-cone": "ice-cream-cone";
                    "id-card": "id-card";
                    "id-card-lanyard": "id-card-lanyard";
                    image: "image";
                    "image-down": "image-down";
                    "image-minus": "image-minus";
                    "image-off": "image-off";
                    "image-play": "image-play";
                    "image-plus": "image-plus";
                    "image-up": "image-up";
                    "image-upscale": "image-upscale";
                    images: "images";
                    import: "import";
                    inbox: "inbox";
                    indent: "indent";
                    "indent-decrease": "indent-decrease";
                    "indent-increase": "indent-increase";
                    "indian-rupee": "indian-rupee";
                    infinity: "infinity";
                    inspect: "inspect";
                    "inspection-panel": "inspection-panel";
                    instagram: "instagram";
                    italic: "italic";
                    "iteration-ccw": "iteration-ccw";
                    "iteration-cw": "iteration-cw";
                    "japanese-yen": "japanese-yen";
                    joystick: "joystick";
                    kanban: "kanban";
                    "kanban-square": "kanban-square";
                    "kanban-square-dashed": "kanban-square-dashed";
                    kayak: "kayak";
                    key: "key";
                    "key-round": "key-round";
                    "key-square": "key-square";
                    keyboard: "keyboard";
                    "keyboard-music": "keyboard-music";
                    "keyboard-off": "keyboard-off";
                    lamp: "lamp";
                    "lamp-ceiling": "lamp-ceiling";
                    "lamp-desk": "lamp-desk";
                    "lamp-floor": "lamp-floor";
                    "lamp-wall-down": "lamp-wall-down";
                    "lamp-wall-up": "lamp-wall-up";
                    "land-plot": "land-plot";
                    landmark: "landmark";
                    languages: "languages";
                    laptop: "laptop";
                    "laptop-2": "laptop-2";
                    "laptop-minimal": "laptop-minimal";
                    "laptop-minimal-check": "laptop-minimal-check";
                    lasso: "lasso";
                    "lasso-select": "lasso-select";
                    laugh: "laugh";
                    layers: "layers";
                    "layers-2": "layers-2";
                    "layers-3": "layers-3";
                    "layers-plus": "layers-plus";
                    layout: "layout";
                    "layout-dashboard": "layout-dashboard";
                    "layout-grid": "layout-grid";
                    "layout-list": "layout-list";
                    "layout-panel-left": "layout-panel-left";
                    "layout-panel-top": "layout-panel-top";
                    "layout-template": "layout-template";
                    leaf: "leaf";
                    "leafy-green": "leafy-green";
                    lectern: "lectern";
                    "lens-concave": "lens-concave";
                    "lens-convex": "lens-convex";
                    "letter-text": "letter-text";
                    library: "library";
                    "library-big": "library-big";
                    "library-square": "library-square";
                    "life-buoy": "life-buoy";
                    ligature: "ligature";
                    lightbulb: "lightbulb";
                    "lightbulb-off": "lightbulb-off";
                    "line-chart": "line-chart";
                    "line-dot-right-horizontal": "line-dot-right-horizontal";
                    "line-squiggle": "line-squiggle";
                    "link-2": "link-2";
                    "link-2-off": "link-2-off";
                    linkedin: "linkedin";
                    list: "list";
                    "list-check": "list-check";
                    "list-checks": "list-checks";
                    "list-chevrons-down-up": "list-chevrons-down-up";
                    "list-chevrons-up-down": "list-chevrons-up-down";
                    "list-collapse": "list-collapse";
                    "list-end": "list-end";
                    "list-filter": "list-filter";
                    "list-filter-plus": "list-filter-plus";
                    "list-indent-decrease": "list-indent-decrease";
                    "list-indent-increase": "list-indent-increase";
                    "list-minus": "list-minus";
                    "list-music": "list-music";
                    "list-ordered": "list-ordered";
                    "list-plus": "list-plus";
                    "list-restart": "list-restart";
                    "list-start": "list-start";
                    "list-todo": "list-todo";
                    "list-tree": "list-tree";
                    "list-video": "list-video";
                    "list-x": "list-x";
                    loader: "loader";
                    "loader-2": "loader-2";
                    "loader-circle": "loader-circle";
                    "loader-pinwheel": "loader-pinwheel";
                    locate: "locate";
                    "locate-fixed": "locate-fixed";
                    "locate-off": "locate-off";
                    "location-edit": "location-edit";
                    lock: "lock";
                    "lock-keyhole": "lock-keyhole";
                    "lock-keyhole-open": "lock-keyhole-open";
                    "lock-open": "lock-open";
                    "log-in": "log-in";
                    "log-out": "log-out";
                    logs: "logs";
                    lollipop: "lollipop";
                    luggage: "luggage";
                    "m-square": "m-square";
                    magnet: "magnet";
                    mail: "mail";
                    "mail-check": "mail-check";
                    "mail-minus": "mail-minus";
                    "mail-open": "mail-open";
                    "mail-plus": "mail-plus";
                    "mail-question": "mail-question";
                    "mail-question-mark": "mail-question-mark";
                    "mail-search": "mail-search";
                    "mail-warning": "mail-warning";
                    "mail-x": "mail-x";
                    mailbox: "mailbox";
                    mails: "mails";
                    map: "map";
                    "map-minus": "map-minus";
                    "map-pin": "map-pin";
                    "map-pin-check": "map-pin-check";
                    "map-pin-check-inside": "map-pin-check-inside";
                    "map-pin-house": "map-pin-house";
                    "map-pin-minus": "map-pin-minus";
                    "map-pin-minus-inside": "map-pin-minus-inside";
                    "map-pin-off": "map-pin-off";
                    "map-pin-pen": "map-pin-pen";
                    "map-pin-plus": "map-pin-plus";
                    "map-pin-plus-inside": "map-pin-plus-inside";
                    "map-pin-x": "map-pin-x";
                    "map-pin-x-inside": "map-pin-x-inside";
                    "map-pinned": "map-pinned";
                    "map-plus": "map-plus";
                    mars: "mars";
                    "mars-stroke": "mars-stroke";
                    martini: "martini";
                    maximize: "maximize";
                    "maximize-2": "maximize-2";
                    medal: "medal";
                    megaphone: "megaphone";
                    "megaphone-off": "megaphone-off";
                    meh: "meh";
                    "memory-stick": "memory-stick";
                    menu: "menu";
                    "menu-square": "menu-square";
                    merge: "merge";
                    "message-circle": "message-circle";
                    "message-circle-check": "message-circle-check";
                    "message-circle-code": "message-circle-code";
                    "message-circle-dashed": "message-circle-dashed";
                    "message-circle-heart": "message-circle-heart";
                    "message-circle-more": "message-circle-more";
                    "message-circle-off": "message-circle-off";
                    "message-circle-plus": "message-circle-plus";
                    "message-circle-question": "message-circle-question";
                    "message-circle-question-mark": "message-circle-question-mark";
                    "message-circle-reply": "message-circle-reply";
                    "message-circle-warning": "message-circle-warning";
                    "message-circle-x": "message-circle-x";
                    "message-square": "message-square";
                    "message-square-check": "message-square-check";
                    "message-square-code": "message-square-code";
                    "message-square-dashed": "message-square-dashed";
                    "message-square-diff": "message-square-diff";
                    "message-square-dot": "message-square-dot";
                    "message-square-heart": "message-square-heart";
                    "message-square-lock": "message-square-lock";
                    "message-square-more": "message-square-more";
                    "message-square-off": "message-square-off";
                    "message-square-plus": "message-square-plus";
                    "message-square-quote": "message-square-quote";
                    "message-square-reply": "message-square-reply";
                    "message-square-share": "message-square-share";
                    "message-square-text": "message-square-text";
                    "message-square-warning": "message-square-warning";
                    "message-square-x": "message-square-x";
                    "messages-square": "messages-square";
                    metronome: "metronome";
                    mic: "mic";
                    "mic-2": "mic-2";
                    "mic-off": "mic-off";
                    "mic-vocal": "mic-vocal";
                    microchip: "microchip";
                    microscope: "microscope";
                    microwave: "microwave";
                    milestone: "milestone";
                    milk: "milk";
                    "milk-off": "milk-off";
                    minimize: "minimize";
                    "minimize-2": "minimize-2";
                    minus: "minus";
                    "minus-circle": "minus-circle";
                    "minus-square": "minus-square";
                    "mirror-rectangular": "mirror-rectangular";
                    "mirror-round": "mirror-round";
                    monitor: "monitor";
                    "monitor-check": "monitor-check";
                    "monitor-cloud": "monitor-cloud";
                    "monitor-cog": "monitor-cog";
                    "monitor-dot": "monitor-dot";
                    "monitor-down": "monitor-down";
                    "monitor-off": "monitor-off";
                    "monitor-pause": "monitor-pause";
                    "monitor-play": "monitor-play";
                    "monitor-smartphone": "monitor-smartphone";
                    "monitor-speaker": "monitor-speaker";
                    "monitor-stop": "monitor-stop";
                    "monitor-up": "monitor-up";
                    "monitor-x": "monitor-x";
                    moon: "moon";
                    "moon-star": "moon-star";
                    "more-horizontal": "more-horizontal";
                    "more-vertical": "more-vertical";
                    motorbike: "motorbike";
                    mountain: "mountain";
                    "mountain-snow": "mountain-snow";
                    mouse: "mouse";
                    "mouse-left": "mouse-left";
                    "mouse-off": "mouse-off";
                    "mouse-pointer": "mouse-pointer";
                    "mouse-pointer-2": "mouse-pointer-2";
                    "mouse-pointer-2-off": "mouse-pointer-2-off";
                    "mouse-pointer-ban": "mouse-pointer-ban";
                    "mouse-pointer-click": "mouse-pointer-click";
                    "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
                    "mouse-right": "mouse-right";
                    move: "move";
                    "move-3-d": "move-3-d";
                    "move-3d": "move-3d";
                    "move-diagonal": "move-diagonal";
                    "move-diagonal-2": "move-diagonal-2";
                    "move-down": "move-down";
                    "move-down-left": "move-down-left";
                    "move-down-right": "move-down-right";
                    "move-horizontal": "move-horizontal";
                    "move-left": "move-left";
                    "move-right": "move-right";
                    "move-up": "move-up";
                    "move-up-left": "move-up-left";
                    "move-up-right": "move-up-right";
                    "move-vertical": "move-vertical";
                    music: "music";
                    "music-2": "music-2";
                    "music-3": "music-3";
                    "music-4": "music-4";
                    navigation: "navigation";
                    "navigation-2": "navigation-2";
                    "navigation-2-off": "navigation-2-off";
                    "navigation-off": "navigation-off";
                    network: "network";
                    newspaper: "newspaper";
                    nfc: "nfc";
                    "non-binary": "non-binary";
                    notebook: "notebook";
                    "notebook-pen": "notebook-pen";
                    "notebook-tabs": "notebook-tabs";
                    "notebook-text": "notebook-text";
                    "notepad-text": "notepad-text";
                    "notepad-text-dashed": "notepad-text-dashed";
                    nut: "nut";
                    "nut-off": "nut-off";
                    octagon: "octagon";
                    "octagon-alert": "octagon-alert";
                    "octagon-minus": "octagon-minus";
                    "octagon-pause": "octagon-pause";
                    "octagon-x": "octagon-x";
                    omega: "omega";
                    option: "option";
                    orbit: "orbit";
                    origami: "origami";
                    outdent: "outdent";
                    package: "package";
                    "package-2": "package-2";
                    "package-check": "package-check";
                    "package-minus": "package-minus";
                    "package-open": "package-open";
                    "package-plus": "package-plus";
                    "package-search": "package-search";
                    "package-x": "package-x";
                    "paint-bucket": "paint-bucket";
                    "paint-roller": "paint-roller";
                    paintbrush: "paintbrush";
                    "paintbrush-2": "paintbrush-2";
                    "paintbrush-vertical": "paintbrush-vertical";
                    palette: "palette";
                    palmtree: "palmtree";
                    panda: "panda";
                    "panel-bottom": "panel-bottom";
                    "panel-bottom-close": "panel-bottom-close";
                    "panel-bottom-dashed": "panel-bottom-dashed";
                    "panel-bottom-inactive": "panel-bottom-inactive";
                    "panel-bottom-open": "panel-bottom-open";
                    "panel-left": "panel-left";
                    "panel-left-close": "panel-left-close";
                    "panel-left-dashed": "panel-left-dashed";
                    "panel-left-inactive": "panel-left-inactive";
                    "panel-left-open": "panel-left-open";
                    "panel-left-right-dashed": "panel-left-right-dashed";
                    "panel-right": "panel-right";
                    "panel-right-close": "panel-right-close";
                    "panel-right-dashed": "panel-right-dashed";
                    "panel-right-inactive": "panel-right-inactive";
                    "panel-right-open": "panel-right-open";
                    "panel-top": "panel-top";
                    "panel-top-bottom-dashed": "panel-top-bottom-dashed";
                    "panel-top-close": "panel-top-close";
                    "panel-top-dashed": "panel-top-dashed";
                    "panel-top-inactive": "panel-top-inactive";
                    "panel-top-open": "panel-top-open";
                    "panels-left-bottom": "panels-left-bottom";
                    "panels-left-right": "panels-left-right";
                    "panels-right-bottom": "panels-right-bottom";
                    "panels-top-bottom": "panels-top-bottom";
                    "panels-top-left": "panels-top-left";
                    paperclip: "paperclip";
                    parentheses: "parentheses";
                    "parking-circle": "parking-circle";
                    "parking-circle-off": "parking-circle-off";
                    "parking-meter": "parking-meter";
                    "parking-square": "parking-square";
                    "parking-square-off": "parking-square-off";
                    "party-popper": "party-popper";
                    pause: "pause";
                    "pause-circle": "pause-circle";
                    "pause-octagon": "pause-octagon";
                    "paw-print": "paw-print";
                    "pc-case": "pc-case";
                    pen: "pen";
                    "pen-box": "pen-box";
                    "pen-line": "pen-line";
                    "pen-off": "pen-off";
                    "pen-square": "pen-square";
                    "pen-tool": "pen-tool";
                    pencil: "pencil";
                    "pencil-line": "pencil-line";
                    "pencil-off": "pencil-off";
                    "pencil-ruler": "pencil-ruler";
                    pentagon: "pentagon";
                    percent: "percent";
                    "percent-circle": "percent-circle";
                    "percent-diamond": "percent-diamond";
                    "percent-square": "percent-square";
                    "person-standing": "person-standing";
                    "philippine-peso": "philippine-peso";
                    phone: "phone";
                    "phone-call": "phone-call";
                    "phone-forwarded": "phone-forwarded";
                    "phone-incoming": "phone-incoming";
                    "phone-missed": "phone-missed";
                    "phone-off": "phone-off";
                    "phone-outgoing": "phone-outgoing";
                    pi: "pi";
                    "pi-square": "pi-square";
                    piano: "piano";
                    pickaxe: "pickaxe";
                    "picture-in-picture": "picture-in-picture";
                    "picture-in-picture-2": "picture-in-picture-2";
                    "pie-chart": "pie-chart";
                    "piggy-bank": "piggy-bank";
                    pilcrow: "pilcrow";
                    "pilcrow-left": "pilcrow-left";
                    "pilcrow-right": "pilcrow-right";
                    "pilcrow-square": "pilcrow-square";
                    pill: "pill";
                    "pill-bottle": "pill-bottle";
                    pin: "pin";
                    "pin-off": "pin-off";
                    pipette: "pipette";
                    pizza: "pizza";
                    plane: "plane";
                    "plane-landing": "plane-landing";
                    "plane-takeoff": "plane-takeoff";
                    play: "play";
                    "play-circle": "play-circle";
                    "play-square": "play-square";
                    plug: "plug";
                    "plug-2": "plug-2";
                    "plug-zap": "plug-zap";
                    "plug-zap-2": "plug-zap-2";
                    plus: "plus";
                    "plus-circle": "plus-circle";
                    "plus-square": "plus-square";
                    pocket: "pocket";
                    "pocket-knife": "pocket-knife";
                    podcast: "podcast";
                    pointer: "pointer";
                    "pointer-off": "pointer-off";
                    popcorn: "popcorn";
                    popsicle: "popsicle";
                    "pound-sterling": "pound-sterling";
                    power: "power";
                    "power-circle": "power-circle";
                    "power-off": "power-off";
                    "power-square": "power-square";
                    presentation: "presentation";
                    printer: "printer";
                    "printer-check": "printer-check";
                    "printer-x": "printer-x";
                    projector: "projector";
                    proportions: "proportions";
                    puzzle: "puzzle";
                    pyramid: "pyramid";
                    "qr-code": "qr-code";
                    quote: "quote";
                    rabbit: "rabbit";
                    radar: "radar";
                    radiation: "radiation";
                    radical: "radical";
                    radio: "radio";
                    "radio-receiver": "radio-receiver";
                    "radio-tower": "radio-tower";
                    radius: "radius";
                    "rail-symbol": "rail-symbol";
                    rainbow: "rainbow";
                    rat: "rat";
                    ratio: "ratio";
                    receipt: "receipt";
                    "receipt-cent": "receipt-cent";
                    "receipt-euro": "receipt-euro";
                    "receipt-indian-rupee": "receipt-indian-rupee";
                    "receipt-japanese-yen": "receipt-japanese-yen";
                    "receipt-pound-sterling": "receipt-pound-sterling";
                    "receipt-russian-ruble": "receipt-russian-ruble";
                    "receipt-swiss-franc": "receipt-swiss-franc";
                    "receipt-text": "receipt-text";
                    "receipt-turkish-lira": "receipt-turkish-lira";
                    "rectangle-circle": "rectangle-circle";
                    "rectangle-ellipsis": "rectangle-ellipsis";
                    "rectangle-goggles": "rectangle-goggles";
                    "rectangle-horizontal": "rectangle-horizontal";
                    "rectangle-vertical": "rectangle-vertical";
                    recycle: "recycle";
                    redo: "redo";
                    "redo-2": "redo-2";
                    "redo-dot": "redo-dot";
                    "refresh-ccw": "refresh-ccw";
                    "refresh-ccw-dot": "refresh-ccw-dot";
                    "refresh-cw": "refresh-cw";
                    "refresh-cw-off": "refresh-cw-off";
                    refrigerator: "refrigerator";
                    regex: "regex";
                    "remove-formatting": "remove-formatting";
                    "repeat-1": "repeat-1";
                    "repeat-2": "repeat-2";
                    "replace-all": "replace-all";
                    reply: "reply";
                    "reply-all": "reply-all";
                    rewind: "rewind";
                    ribbon: "ribbon";
                    rocket: "rocket";
                    "rocking-chair": "rocking-chair";
                    "roller-coaster": "roller-coaster";
                    rose: "rose";
                    "rotate-3-d": "rotate-3-d";
                    "rotate-3d": "rotate-3d";
                    "rotate-ccw": "rotate-ccw";
                    "rotate-ccw-key": "rotate-ccw-key";
                    "rotate-ccw-square": "rotate-ccw-square";
                    "rotate-cw": "rotate-cw";
                    "rotate-cw-square": "rotate-cw-square";
                    route: "route";
                    "route-off": "route-off";
                    router: "router";
                    rows: "rows";
                    "rows-2": "rows-2";
                    "rows-3": "rows-3";
                    "rows-4": "rows-4";
                    rss: "rss";
                    ruler: "ruler";
                    "ruler-dimension-line": "ruler-dimension-line";
                    "russian-ruble": "russian-ruble";
                    sailboat: "sailboat";
                    salad: "salad";
                    sandwich: "sandwich";
                    satellite: "satellite";
                    "satellite-dish": "satellite-dish";
                    "saudi-riyal": "saudi-riyal";
                    save: "save";
                    "save-all": "save-all";
                    "save-off": "save-off";
                    scale: "scale";
                    "scale-3-d": "scale-3-d";
                    "scale-3d": "scale-3d";
                    scaling: "scaling";
                    scan: "scan";
                    "scan-barcode": "scan-barcode";
                    "scan-eye": "scan-eye";
                    "scan-face": "scan-face";
                    "scan-heart": "scan-heart";
                    "scan-line": "scan-line";
                    "scan-qr-code": "scan-qr-code";
                    "scan-search": "scan-search";
                    "scan-text": "scan-text";
                    "scatter-chart": "scatter-chart";
                    school: "school";
                    "school-2": "school-2";
                    scissors: "scissors";
                    "scissors-line-dashed": "scissors-line-dashed";
                    "scissors-square": "scissors-square";
                    "scissors-square-dashed-bottom": "scissors-square-dashed-bottom";
                    scooter: "scooter";
                    "screen-share": "screen-share";
                    "screen-share-off": "screen-share-off";
                    scroll: "scroll";
                    "scroll-text": "scroll-text";
                    "search-alert": "search-alert";
                    "search-check": "search-check";
                    "search-code": "search-code";
                    "search-slash": "search-slash";
                    "search-x": "search-x";
                    section: "section";
                    send: "send";
                    "send-horizonal": "send-horizonal";
                    "send-horizontal": "send-horizontal";
                    "send-to-back": "send-to-back";
                    "separator-horizontal": "separator-horizontal";
                    "separator-vertical": "separator-vertical";
                    server: "server";
                    "server-cog": "server-cog";
                    "server-crash": "server-crash";
                    "server-off": "server-off";
                    settings: "settings";
                    "settings-2": "settings-2";
                    shapes: "shapes";
                    share: "share";
                    "share-2": "share-2";
                    sheet: "sheet";
                    shell: "shell";
                    "shelving-unit": "shelving-unit";
                    shield: "shield";
                    "shield-alert": "shield-alert";
                    "shield-ban": "shield-ban";
                    "shield-check": "shield-check";
                    "shield-close": "shield-close";
                    "shield-ellipsis": "shield-ellipsis";
                    "shield-half": "shield-half";
                    "shield-minus": "shield-minus";
                    "shield-off": "shield-off";
                    "shield-plus": "shield-plus";
                    "shield-question": "shield-question";
                    "shield-question-mark": "shield-question-mark";
                    "shield-user": "shield-user";
                    "shield-x": "shield-x";
                    ship: "ship";
                    "ship-wheel": "ship-wheel";
                    shirt: "shirt";
                    "shopping-bag": "shopping-bag";
                    "shopping-basket": "shopping-basket";
                    "shopping-cart": "shopping-cart";
                    shovel: "shovel";
                    "shower-head": "shower-head";
                    shredder: "shredder";
                    shrimp: "shrimp";
                    shrink: "shrink";
                    shrub: "shrub";
                    shuffle: "shuffle";
                    sidebar: "sidebar";
                    "sidebar-close": "sidebar-close";
                    "sidebar-open": "sidebar-open";
                    sigma: "sigma";
                    "sigma-square": "sigma-square";
                    signal: "signal";
                    "signal-high": "signal-high";
                    "signal-low": "signal-low";
                    "signal-medium": "signal-medium";
                    "signal-zero": "signal-zero";
                    signature: "signature";
                    signpost: "signpost";
                    "signpost-big": "signpost-big";
                    siren: "siren";
                    "skip-back": "skip-back";
                    "skip-forward": "skip-forward";
                    skull: "skull";
                    slack: "slack";
                    slash: "slash";
                    "slash-square": "slash-square";
                    sliders: "sliders";
                    "sliders-horizontal": "sliders-horizontal";
                    "sliders-vertical": "sliders-vertical";
                    smartphone: "smartphone";
                    "smartphone-charging": "smartphone-charging";
                    "smartphone-nfc": "smartphone-nfc";
                    smile: "smile";
                    "smile-plus": "smile-plus";
                    snail: "snail";
                    snowflake: "snowflake";
                    "soap-dispenser-droplet": "soap-dispenser-droplet";
                    sofa: "sofa";
                    "solar-panel": "solar-panel";
                    "sort-asc": "sort-asc";
                    "sort-desc": "sort-desc";
                    soup: "soup";
                    space: "space";
                    spade: "spade";
                    sparkle: "sparkle";
                    sparkles: "sparkles";
                    speaker: "speaker";
                    speech: "speech";
                    "spell-check": "spell-check";
                    "spell-check-2": "spell-check-2";
                    spline: "spline";
                    "spline-pointer": "spline-pointer";
                    "split-square-horizontal": "split-square-horizontal";
                    "split-square-vertical": "split-square-vertical";
                    spool: "spool";
                    spotlight: "spotlight";
                    "spray-can": "spray-can";
                    sprout: "sprout";
                    square: "square";
                    "square-activity": "square-activity";
                    "square-arrow-down": "square-arrow-down";
                    "square-arrow-down-left": "square-arrow-down-left";
                    "square-arrow-down-right": "square-arrow-down-right";
                    "square-arrow-left": "square-arrow-left";
                    "square-arrow-out-down-left": "square-arrow-out-down-left";
                    "square-arrow-out-down-right": "square-arrow-out-down-right";
                    "square-arrow-out-up-left": "square-arrow-out-up-left";
                    "square-arrow-out-up-right": "square-arrow-out-up-right";
                    "square-arrow-right": "square-arrow-right";
                    "square-arrow-right-enter": "square-arrow-right-enter";
                    "square-arrow-right-exit": "square-arrow-right-exit";
                    "square-arrow-up": "square-arrow-up";
                    "square-arrow-up-left": "square-arrow-up-left";
                    "square-arrow-up-right": "square-arrow-up-right";
                    "square-asterisk": "square-asterisk";
                    "square-bottom-dashed-scissors": "square-bottom-dashed-scissors";
                    "square-centerline-dashed-horizontal": "square-centerline-dashed-horizontal";
                    "square-centerline-dashed-vertical": "square-centerline-dashed-vertical";
                    "square-chart-gantt": "square-chart-gantt";
                    "square-check": "square-check";
                    "square-check-big": "square-check-big";
                    "square-chevron-down": "square-chevron-down";
                    "square-chevron-left": "square-chevron-left";
                    "square-chevron-right": "square-chevron-right";
                    "square-chevron-up": "square-chevron-up";
                    "square-code": "square-code";
                    "square-dashed": "square-dashed";
                    "square-dashed-bottom": "square-dashed-bottom";
                    "square-dashed-bottom-code": "square-dashed-bottom-code";
                    "square-dashed-kanban": "square-dashed-kanban";
                    "square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
                    "square-dashed-top-solid": "square-dashed-top-solid";
                    "square-divide": "square-divide";
                    "square-dot": "square-dot";
                    "square-equal": "square-equal";
                    "square-function": "square-function";
                    "square-gantt-chart": "square-gantt-chart";
                    "square-kanban": "square-kanban";
                    "square-library": "square-library";
                    "square-m": "square-m";
                    "square-menu": "square-menu";
                    "square-minus": "square-minus";
                    "square-mouse-pointer": "square-mouse-pointer";
                    "square-parking": "square-parking";
                    "square-parking-off": "square-parking-off";
                    "square-pause": "square-pause";
                    "square-pen": "square-pen";
                    "square-percent": "square-percent";
                    "square-pi": "square-pi";
                    "square-pilcrow": "square-pilcrow";
                    "square-play": "square-play";
                    "square-plus": "square-plus";
                    "square-power": "square-power";
                    "square-radical": "square-radical";
                    "square-round-corner": "square-round-corner";
                    "square-scissors": "square-scissors";
                    "square-sigma": "square-sigma";
                    "square-slash": "square-slash";
                    "square-split-horizontal": "square-split-horizontal";
                    "square-split-vertical": "square-split-vertical";
                    "square-square": "square-square";
                    "square-stack": "square-stack";
                    "square-star": "square-star";
                    "square-stop": "square-stop";
                    "square-terminal": "square-terminal";
                    "square-user": "square-user";
                    "square-user-round": "square-user-round";
                    "square-x": "square-x";
                    "squares-exclude": "squares-exclude";
                    "squares-intersect": "squares-intersect";
                    "squares-subtract": "squares-subtract";
                    "squares-unite": "squares-unite";
                    squircle: "squircle";
                    "squircle-dashed": "squircle-dashed";
                    squirrel: "squirrel";
                    stamp: "stamp";
                    star: "star";
                    "star-half": "star-half";
                    "star-off": "star-off";
                    stars: "stars";
                    "step-back": "step-back";
                    "step-forward": "step-forward";
                    stethoscope: "stethoscope";
                    sticker: "sticker";
                    "sticky-note": "sticky-note";
                    stone: "stone";
                    "stop-circle": "stop-circle";
                    store: "store";
                    "stretch-horizontal": "stretch-horizontal";
                    "stretch-vertical": "stretch-vertical";
                    strikethrough: "strikethrough";
                    subscript: "subscript";
                    subtitles: "subtitles";
                    sun: "sun";
                    "sun-dim": "sun-dim";
                    "sun-medium": "sun-medium";
                    "sun-moon": "sun-moon";
                    "sun-snow": "sun-snow";
                    sunrise: "sunrise";
                    sunset: "sunset";
                    superscript: "superscript";
                    "swatch-book": "swatch-book";
                    "swiss-franc": "swiss-franc";
                    "switch-camera": "switch-camera";
                    sword: "sword";
                    swords: "swords";
                    syringe: "syringe";
                    table: "table";
                    "table-2": "table-2";
                    "table-cells-merge": "table-cells-merge";
                    "table-cells-split": "table-cells-split";
                    "table-columns-split": "table-columns-split";
                    "table-config": "table-config";
                    "table-of-contents": "table-of-contents";
                    "table-properties": "table-properties";
                    "table-rows-split": "table-rows-split";
                    tablet: "tablet";
                    "tablet-smartphone": "tablet-smartphone";
                    tablets: "tablets";
                    tag: "tag";
                    tags: "tags";
                    "tally-1": "tally-1";
                    "tally-2": "tally-2";
                    "tally-3": "tally-3";
                    "tally-4": "tally-4";
                    "tally-5": "tally-5";
                    tangent: "tangent";
                    target: "target";
                    telescope: "telescope";
                    tent: "tent";
                    "tent-tree": "tent-tree";
                    terminal: "terminal";
                    "terminal-square": "terminal-square";
                    "test-tube": "test-tube";
                    "test-tube-2": "test-tube-2";
                    "test-tube-diagonal": "test-tube-diagonal";
                    "test-tubes": "test-tubes";
                    text: "text";
                    "text-align-center": "text-align-center";
                    "text-align-end": "text-align-end";
                    "text-align-justify": "text-align-justify";
                    "text-align-start": "text-align-start";
                    "text-cursor": "text-cursor";
                    "text-cursor-input": "text-cursor-input";
                    "text-initial": "text-initial";
                    "text-quote": "text-quote";
                    "text-search": "text-search";
                    "text-select": "text-select";
                    "text-selection": "text-selection";
                    "text-wrap": "text-wrap";
                    theater: "theater";
                    thermometer: "thermometer";
                    "thermometer-snowflake": "thermometer-snowflake";
                    "thermometer-sun": "thermometer-sun";
                    "thumbs-down": "thumbs-down";
                    "thumbs-up": "thumbs-up";
                    ticket: "ticket";
                    "ticket-check": "ticket-check";
                    "ticket-minus": "ticket-minus";
                    "ticket-percent": "ticket-percent";
                    "ticket-plus": "ticket-plus";
                    "ticket-slash": "ticket-slash";
                    "ticket-x": "ticket-x";
                    tickets: "tickets";
                    "tickets-plane": "tickets-plane";
                    timer: "timer";
                    "timer-off": "timer-off";
                    "timer-reset": "timer-reset";
                    "toggle-left": "toggle-left";
                    "toggle-right": "toggle-right";
                    toilet: "toilet";
                    "tool-case": "tool-case";
                    toolbox: "toolbox";
                    tornado: "tornado";
                    torus: "torus";
                    touchpad: "touchpad";
                    "touchpad-off": "touchpad-off";
                    "towel-rack": "towel-rack";
                    "tower-control": "tower-control";
                    "toy-brick": "toy-brick";
                    tractor: "tractor";
                    "traffic-cone": "traffic-cone";
                    train: "train";
                    "train-front": "train-front";
                    "train-front-tunnel": "train-front-tunnel";
                    "train-track": "train-track";
                    "tram-front": "tram-front";
                    transgender: "transgender";
                    trash: "trash";
                    "trash-2": "trash-2";
                    "tree-deciduous": "tree-deciduous";
                    "tree-palm": "tree-palm";
                    "tree-pine": "tree-pine";
                    trees: "trees";
                    trello: "trello";
                    "trending-down": "trending-down";
                    "trending-up": "trending-up";
                    "trending-up-down": "trending-up-down";
                    triangle: "triangle";
                    "triangle-alert": "triangle-alert";
                    "triangle-dashed": "triangle-dashed";
                    "triangle-right": "triangle-right";
                    trophy: "trophy";
                    truck: "truck";
                    "truck-electric": "truck-electric";
                    "turkish-lira": "turkish-lira";
                    turntable: "turntable";
                    turtle: "turtle";
                    tv: "tv";
                    "tv-2": "tv-2";
                    "tv-minimal": "tv-minimal";
                    "tv-minimal-play": "tv-minimal-play";
                    twitch: "twitch";
                    twitter: "twitter";
                    type: "type";
                    "type-outline": "type-outline";
                    umbrella: "umbrella";
                    "umbrella-off": "umbrella-off";
                    underline: "underline";
                    undo: "undo";
                    "undo-2": "undo-2";
                    "undo-dot": "undo-dot";
                    "unfold-horizontal": "unfold-horizontal";
                    "unfold-vertical": "unfold-vertical";
                    ungroup: "ungroup";
                    university: "university";
                    unlink: "unlink";
                    "unlink-2": "unlink-2";
                    unlock: "unlock";
                    "unlock-keyhole": "unlock-keyhole";
                    unplug: "unplug";
                    upload: "upload";
                    "upload-cloud": "upload-cloud";
                    usb: "usb";
                    user: "user";
                    "user-2": "user-2";
                    "user-check": "user-check";
                    "user-check-2": "user-check-2";
                    "user-circle": "user-circle";
                    "user-circle-2": "user-circle-2";
                    "user-cog": "user-cog";
                    "user-cog-2": "user-cog-2";
                    "user-key": "user-key";
                    "user-lock": "user-lock";
                    "user-minus": "user-minus";
                    "user-minus-2": "user-minus-2";
                    "user-pen": "user-pen";
                    "user-plus": "user-plus";
                    "user-plus-2": "user-plus-2";
                    "user-round": "user-round";
                    "user-round-check": "user-round-check";
                    "user-round-cog": "user-round-cog";
                    "user-round-key": "user-round-key";
                    "user-round-minus": "user-round-minus";
                    "user-round-pen": "user-round-pen";
                    "user-round-plus": "user-round-plus";
                    "user-round-search": "user-round-search";
                    "user-round-x": "user-round-x";
                    "user-search": "user-search";
                    "user-square": "user-square";
                    "user-square-2": "user-square-2";
                    "user-star": "user-star";
                    "user-x": "user-x";
                    "user-x-2": "user-x-2";
                    users: "users";
                    "users-2": "users-2";
                    "users-round": "users-round";
                    utensils: "utensils";
                    "utensils-crossed": "utensils-crossed";
                    "utility-pole": "utility-pole";
                    van: "van";
                    variable: "variable";
                    vault: "vault";
                    "vector-square": "vector-square";
                    vegan: "vegan";
                    "venetian-mask": "venetian-mask";
                    venus: "venus";
                    "venus-and-mars": "venus-and-mars";
                    verified: "verified";
                    vibrate: "vibrate";
                    "vibrate-off": "vibrate-off";
                    video: "video";
                    "video-off": "video-off";
                    videotape: "videotape";
                    view: "view";
                    voicemail: "voicemail";
                    volleyball: "volleyball";
                    volume: "volume";
                    "volume-1": "volume-1";
                    "volume-2": "volume-2";
                    "volume-off": "volume-off";
                    "volume-x": "volume-x";
                    vote: "vote";
                    wallet: "wallet";
                    "wallet-2": "wallet-2";
                    "wallet-cards": "wallet-cards";
                    "wallet-minimal": "wallet-minimal";
                    wallpaper: "wallpaper";
                    wand: "wand";
                    "wand-2": "wand-2";
                    "wand-sparkles": "wand-sparkles";
                    warehouse: "warehouse";
                    "washing-machine": "washing-machine";
                    watch: "watch";
                    waves: "waves";
                    "waves-arrow-down": "waves-arrow-down";
                    "waves-arrow-up": "waves-arrow-up";
                    "waves-ladder": "waves-ladder";
                    waypoints: "waypoints";
                    webcam: "webcam";
                    webhook: "webhook";
                    "webhook-off": "webhook-off";
                    weight: "weight";
                    "weight-tilde": "weight-tilde";
                    wheat: "wheat";
                    "wheat-off": "wheat-off";
                    "whole-word": "whole-word";
                    wifi: "wifi";
                    "wifi-cog": "wifi-cog";
                    "wifi-high": "wifi-high";
                    "wifi-low": "wifi-low";
                    "wifi-off": "wifi-off";
                    "wifi-pen": "wifi-pen";
                    "wifi-sync": "wifi-sync";
                    "wifi-zero": "wifi-zero";
                    wind: "wind";
                    "wind-arrow-down": "wind-arrow-down";
                    wine: "wine";
                    "wine-off": "wine-off";
                    workflow: "workflow";
                    worm: "worm";
                    "wrap-text": "wrap-text";
                    wrench: "wrench";
                    x: "x";
                    "x-circle": "x-circle";
                    "x-line-top": "x-line-top";
                    "x-octagon": "x-octagon";
                    "x-square": "x-square";
                    youtube: "youtube";
                    zap: "zap";
                    "zap-off": "zap-off";
                    "zodiac-aquarius": "zodiac-aquarius";
                    "zodiac-aries": "zodiac-aries";
                    "zodiac-cancer": "zodiac-cancer";
                    "zodiac-capricorn": "zodiac-capricorn";
                    "zodiac-gemini": "zodiac-gemini";
                    "zodiac-leo": "zodiac-leo";
                    "zodiac-libra": "zodiac-libra";
                    "zodiac-ophiuchus": "zodiac-ophiuchus";
                    "zodiac-pisces": "zodiac-pisces";
                    "zodiac-sagittarius": "zodiac-sagittarius";
                    "zodiac-scorpio": "zodiac-scorpio";
                    "zodiac-taurus": "zodiac-taurus";
                    "zodiac-virgo": "zodiac-virgo";
                    "zoom-in": "zoom-in";
                    "zoom-out": "zoom-out";
                }>>;
                description: z.ZodOptional<z.ZodString>;
                to: z.ZodString;
                target: z.ZodOptional<z.ZodEnum<{
                    _self: "_self";
                    _blank: "_blank";
                }>>;
                display: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                    auth: "auth";
                    anon: "anon";
                    always: "always";
                    hide: "hide";
                }>, z.ZodCustom<(params: {
                    context: ZudokuContext;
                    auth: UseAuthReturn;
                }) => boolean, (params: {
                    context: ZudokuContext;
                    auth: UseAuthReturn;
                }) => boolean>]>>;
            }, z.core.$strip>, z.ZodObject<{
                label: z.ZodString;
                items: z.ZodArray<z.ZodObject<{
                    label: z.ZodString;
                    icon: z.ZodOptional<z.ZodEnum<{
                        info: "info";
                        replace: "replace";
                        search: "search";
                        slice: "slice";
                        split: "split";
                        repeat: "repeat";
                        anchor: "anchor";
                        bold: "bold";
                        link: "link";
                        binary: "binary";
                        "a-arrow-down": "a-arrow-down";
                        "a-arrow-up": "a-arrow-up";
                        "a-large-small": "a-large-small";
                        accessibility: "accessibility";
                        activity: "activity";
                        "activity-square": "activity-square";
                        "air-vent": "air-vent";
                        airplay: "airplay";
                        "alarm-check": "alarm-check";
                        "alarm-clock": "alarm-clock";
                        "alarm-clock-check": "alarm-clock-check";
                        "alarm-clock-minus": "alarm-clock-minus";
                        "alarm-clock-off": "alarm-clock-off";
                        "alarm-clock-plus": "alarm-clock-plus";
                        "alarm-minus": "alarm-minus";
                        "alarm-plus": "alarm-plus";
                        "alarm-smoke": "alarm-smoke";
                        album: "album";
                        "alert-circle": "alert-circle";
                        "alert-octagon": "alert-octagon";
                        "alert-triangle": "alert-triangle";
                        "align-center": "align-center";
                        "align-center-horizontal": "align-center-horizontal";
                        "align-center-vertical": "align-center-vertical";
                        "align-end-horizontal": "align-end-horizontal";
                        "align-end-vertical": "align-end-vertical";
                        "align-horizontal-distribute-center": "align-horizontal-distribute-center";
                        "align-horizontal-distribute-end": "align-horizontal-distribute-end";
                        "align-horizontal-distribute-start": "align-horizontal-distribute-start";
                        "align-horizontal-justify-center": "align-horizontal-justify-center";
                        "align-horizontal-justify-end": "align-horizontal-justify-end";
                        "align-horizontal-justify-start": "align-horizontal-justify-start";
                        "align-horizontal-space-around": "align-horizontal-space-around";
                        "align-horizontal-space-between": "align-horizontal-space-between";
                        "align-justify": "align-justify";
                        "align-left": "align-left";
                        "align-right": "align-right";
                        "align-start-horizontal": "align-start-horizontal";
                        "align-start-vertical": "align-start-vertical";
                        "align-vertical-distribute-center": "align-vertical-distribute-center";
                        "align-vertical-distribute-end": "align-vertical-distribute-end";
                        "align-vertical-distribute-start": "align-vertical-distribute-start";
                        "align-vertical-justify-center": "align-vertical-justify-center";
                        "align-vertical-justify-end": "align-vertical-justify-end";
                        "align-vertical-justify-start": "align-vertical-justify-start";
                        "align-vertical-space-around": "align-vertical-space-around";
                        "align-vertical-space-between": "align-vertical-space-between";
                        ambulance: "ambulance";
                        ampersand: "ampersand";
                        ampersands: "ampersands";
                        amphora: "amphora";
                        angry: "angry";
                        annoyed: "annoyed";
                        antenna: "antenna";
                        anvil: "anvil";
                        aperture: "aperture";
                        "app-window": "app-window";
                        "app-window-mac": "app-window-mac";
                        apple: "apple";
                        archive: "archive";
                        "archive-restore": "archive-restore";
                        "archive-x": "archive-x";
                        "area-chart": "area-chart";
                        armchair: "armchair";
                        "arrow-big-down": "arrow-big-down";
                        "arrow-big-down-dash": "arrow-big-down-dash";
                        "arrow-big-left": "arrow-big-left";
                        "arrow-big-left-dash": "arrow-big-left-dash";
                        "arrow-big-right": "arrow-big-right";
                        "arrow-big-right-dash": "arrow-big-right-dash";
                        "arrow-big-up": "arrow-big-up";
                        "arrow-big-up-dash": "arrow-big-up-dash";
                        "arrow-down": "arrow-down";
                        "arrow-down-0-1": "arrow-down-0-1";
                        "arrow-down-01": "arrow-down-01";
                        "arrow-down-1-0": "arrow-down-1-0";
                        "arrow-down-10": "arrow-down-10";
                        "arrow-down-a-z": "arrow-down-a-z";
                        "arrow-down-az": "arrow-down-az";
                        "arrow-down-circle": "arrow-down-circle";
                        "arrow-down-from-line": "arrow-down-from-line";
                        "arrow-down-left": "arrow-down-left";
                        "arrow-down-left-from-circle": "arrow-down-left-from-circle";
                        "arrow-down-left-from-square": "arrow-down-left-from-square";
                        "arrow-down-left-square": "arrow-down-left-square";
                        "arrow-down-narrow-wide": "arrow-down-narrow-wide";
                        "arrow-down-right": "arrow-down-right";
                        "arrow-down-right-from-circle": "arrow-down-right-from-circle";
                        "arrow-down-right-from-square": "arrow-down-right-from-square";
                        "arrow-down-right-square": "arrow-down-right-square";
                        "arrow-down-square": "arrow-down-square";
                        "arrow-down-to-dot": "arrow-down-to-dot";
                        "arrow-down-to-line": "arrow-down-to-line";
                        "arrow-down-up": "arrow-down-up";
                        "arrow-down-wide-narrow": "arrow-down-wide-narrow";
                        "arrow-down-z-a": "arrow-down-z-a";
                        "arrow-down-za": "arrow-down-za";
                        "arrow-left": "arrow-left";
                        "arrow-left-circle": "arrow-left-circle";
                        "arrow-left-from-line": "arrow-left-from-line";
                        "arrow-left-right": "arrow-left-right";
                        "arrow-left-square": "arrow-left-square";
                        "arrow-left-to-line": "arrow-left-to-line";
                        "arrow-right": "arrow-right";
                        "arrow-right-circle": "arrow-right-circle";
                        "arrow-right-from-line": "arrow-right-from-line";
                        "arrow-right-left": "arrow-right-left";
                        "arrow-right-square": "arrow-right-square";
                        "arrow-right-to-line": "arrow-right-to-line";
                        "arrow-up": "arrow-up";
                        "arrow-up-0-1": "arrow-up-0-1";
                        "arrow-up-01": "arrow-up-01";
                        "arrow-up-1-0": "arrow-up-1-0";
                        "arrow-up-10": "arrow-up-10";
                        "arrow-up-a-z": "arrow-up-a-z";
                        "arrow-up-az": "arrow-up-az";
                        "arrow-up-circle": "arrow-up-circle";
                        "arrow-up-down": "arrow-up-down";
                        "arrow-up-from-dot": "arrow-up-from-dot";
                        "arrow-up-from-line": "arrow-up-from-line";
                        "arrow-up-left": "arrow-up-left";
                        "arrow-up-left-from-circle": "arrow-up-left-from-circle";
                        "arrow-up-left-from-square": "arrow-up-left-from-square";
                        "arrow-up-left-square": "arrow-up-left-square";
                        "arrow-up-narrow-wide": "arrow-up-narrow-wide";
                        "arrow-up-right": "arrow-up-right";
                        "arrow-up-right-from-circle": "arrow-up-right-from-circle";
                        "arrow-up-right-from-square": "arrow-up-right-from-square";
                        "arrow-up-right-square": "arrow-up-right-square";
                        "arrow-up-square": "arrow-up-square";
                        "arrow-up-to-line": "arrow-up-to-line";
                        "arrow-up-wide-narrow": "arrow-up-wide-narrow";
                        "arrow-up-z-a": "arrow-up-z-a";
                        "arrow-up-za": "arrow-up-za";
                        "arrows-up-from-line": "arrows-up-from-line";
                        asterisk: "asterisk";
                        "asterisk-square": "asterisk-square";
                        "at-sign": "at-sign";
                        atom: "atom";
                        "audio-lines": "audio-lines";
                        "audio-waveform": "audio-waveform";
                        award: "award";
                        axe: "axe";
                        "axis-3-d": "axis-3-d";
                        "axis-3d": "axis-3d";
                        baby: "baby";
                        backpack: "backpack";
                        badge: "badge";
                        "badge-alert": "badge-alert";
                        "badge-cent": "badge-cent";
                        "badge-check": "badge-check";
                        "badge-dollar-sign": "badge-dollar-sign";
                        "badge-euro": "badge-euro";
                        "badge-help": "badge-help";
                        "badge-indian-rupee": "badge-indian-rupee";
                        "badge-info": "badge-info";
                        "badge-japanese-yen": "badge-japanese-yen";
                        "badge-minus": "badge-minus";
                        "badge-percent": "badge-percent";
                        "badge-plus": "badge-plus";
                        "badge-pound-sterling": "badge-pound-sterling";
                        "badge-question-mark": "badge-question-mark";
                        "badge-russian-ruble": "badge-russian-ruble";
                        "badge-swiss-franc": "badge-swiss-franc";
                        "badge-turkish-lira": "badge-turkish-lira";
                        "badge-x": "badge-x";
                        "baggage-claim": "baggage-claim";
                        balloon: "balloon";
                        ban: "ban";
                        banana: "banana";
                        bandage: "bandage";
                        banknote: "banknote";
                        "banknote-arrow-down": "banknote-arrow-down";
                        "banknote-arrow-up": "banknote-arrow-up";
                        "banknote-x": "banknote-x";
                        "bar-chart": "bar-chart";
                        "bar-chart-2": "bar-chart-2";
                        "bar-chart-3": "bar-chart-3";
                        "bar-chart-4": "bar-chart-4";
                        "bar-chart-big": "bar-chart-big";
                        "bar-chart-horizontal": "bar-chart-horizontal";
                        "bar-chart-horizontal-big": "bar-chart-horizontal-big";
                        barcode: "barcode";
                        barrel: "barrel";
                        baseline: "baseline";
                        bath: "bath";
                        battery: "battery";
                        "battery-charging": "battery-charging";
                        "battery-full": "battery-full";
                        "battery-low": "battery-low";
                        "battery-medium": "battery-medium";
                        "battery-plus": "battery-plus";
                        "battery-warning": "battery-warning";
                        beaker: "beaker";
                        bean: "bean";
                        "bean-off": "bean-off";
                        bed: "bed";
                        "bed-double": "bed-double";
                        "bed-single": "bed-single";
                        beef: "beef";
                        beer: "beer";
                        "beer-off": "beer-off";
                        bell: "bell";
                        "bell-dot": "bell-dot";
                        "bell-electric": "bell-electric";
                        "bell-minus": "bell-minus";
                        "bell-off": "bell-off";
                        "bell-plus": "bell-plus";
                        "bell-ring": "bell-ring";
                        "between-horizonal-end": "between-horizonal-end";
                        "between-horizonal-start": "between-horizonal-start";
                        "between-horizontal-end": "between-horizontal-end";
                        "between-horizontal-start": "between-horizontal-start";
                        "between-vertical-end": "between-vertical-end";
                        "between-vertical-start": "between-vertical-start";
                        "biceps-flexed": "biceps-flexed";
                        bike: "bike";
                        binoculars: "binoculars";
                        biohazard: "biohazard";
                        bird: "bird";
                        birdhouse: "birdhouse";
                        bitcoin: "bitcoin";
                        blend: "blend";
                        blinds: "blinds";
                        blocks: "blocks";
                        bluetooth: "bluetooth";
                        "bluetooth-connected": "bluetooth-connected";
                        "bluetooth-off": "bluetooth-off";
                        "bluetooth-searching": "bluetooth-searching";
                        bolt: "bolt";
                        bomb: "bomb";
                        bone: "bone";
                        book: "book";
                        "book-a": "book-a";
                        "book-alert": "book-alert";
                        "book-audio": "book-audio";
                        "book-check": "book-check";
                        "book-copy": "book-copy";
                        "book-dashed": "book-dashed";
                        "book-down": "book-down";
                        "book-headphones": "book-headphones";
                        "book-heart": "book-heart";
                        "book-image": "book-image";
                        "book-key": "book-key";
                        "book-lock": "book-lock";
                        "book-marked": "book-marked";
                        "book-minus": "book-minus";
                        "book-open": "book-open";
                        "book-open-check": "book-open-check";
                        "book-open-text": "book-open-text";
                        "book-plus": "book-plus";
                        "book-search": "book-search";
                        "book-template": "book-template";
                        "book-text": "book-text";
                        "book-type": "book-type";
                        "book-up": "book-up";
                        "book-up-2": "book-up-2";
                        "book-user": "book-user";
                        "book-x": "book-x";
                        bookmark: "bookmark";
                        "bookmark-check": "bookmark-check";
                        "bookmark-minus": "bookmark-minus";
                        "bookmark-plus": "bookmark-plus";
                        "bookmark-x": "bookmark-x";
                        "boom-box": "boom-box";
                        bot: "bot";
                        "bot-message-square": "bot-message-square";
                        "bot-off": "bot-off";
                        "bottle-wine": "bottle-wine";
                        "bow-arrow": "bow-arrow";
                        box: "box";
                        "box-select": "box-select";
                        boxes: "boxes";
                        braces: "braces";
                        brackets: "brackets";
                        brain: "brain";
                        "brain-circuit": "brain-circuit";
                        "brain-cog": "brain-cog";
                        "brick-wall": "brick-wall";
                        "brick-wall-fire": "brick-wall-fire";
                        "brick-wall-shield": "brick-wall-shield";
                        briefcase: "briefcase";
                        "briefcase-business": "briefcase-business";
                        "briefcase-conveyor-belt": "briefcase-conveyor-belt";
                        "briefcase-medical": "briefcase-medical";
                        "bring-to-front": "bring-to-front";
                        brush: "brush";
                        "brush-cleaning": "brush-cleaning";
                        bubbles: "bubbles";
                        bug: "bug";
                        "bug-off": "bug-off";
                        "bug-play": "bug-play";
                        building: "building";
                        "building-2": "building-2";
                        bus: "bus";
                        "bus-front": "bus-front";
                        cable: "cable";
                        "cable-car": "cable-car";
                        cake: "cake";
                        "cake-slice": "cake-slice";
                        calculator: "calculator";
                        calendar: "calendar";
                        "calendar-1": "calendar-1";
                        "calendar-arrow-down": "calendar-arrow-down";
                        "calendar-arrow-up": "calendar-arrow-up";
                        "calendar-check": "calendar-check";
                        "calendar-check-2": "calendar-check-2";
                        "calendar-clock": "calendar-clock";
                        "calendar-cog": "calendar-cog";
                        "calendar-days": "calendar-days";
                        "calendar-fold": "calendar-fold";
                        "calendar-heart": "calendar-heart";
                        "calendar-minus": "calendar-minus";
                        "calendar-minus-2": "calendar-minus-2";
                        "calendar-off": "calendar-off";
                        "calendar-plus": "calendar-plus";
                        "calendar-plus-2": "calendar-plus-2";
                        "calendar-range": "calendar-range";
                        "calendar-search": "calendar-search";
                        "calendar-sync": "calendar-sync";
                        "calendar-x": "calendar-x";
                        "calendar-x-2": "calendar-x-2";
                        calendars: "calendars";
                        camera: "camera";
                        "camera-off": "camera-off";
                        "candlestick-chart": "candlestick-chart";
                        candy: "candy";
                        "candy-cane": "candy-cane";
                        "candy-off": "candy-off";
                        cannabis: "cannabis";
                        "cannabis-off": "cannabis-off";
                        captions: "captions";
                        "captions-off": "captions-off";
                        car: "car";
                        "car-front": "car-front";
                        "car-taxi-front": "car-taxi-front";
                        caravan: "caravan";
                        "card-sim": "card-sim";
                        carrot: "carrot";
                        "case-lower": "case-lower";
                        "case-sensitive": "case-sensitive";
                        "case-upper": "case-upper";
                        "cassette-tape": "cassette-tape";
                        cast: "cast";
                        castle: "castle";
                        cat: "cat";
                        cctv: "cctv";
                        "chart-area": "chart-area";
                        "chart-bar": "chart-bar";
                        "chart-bar-big": "chart-bar-big";
                        "chart-bar-decreasing": "chart-bar-decreasing";
                        "chart-bar-increasing": "chart-bar-increasing";
                        "chart-bar-stacked": "chart-bar-stacked";
                        "chart-candlestick": "chart-candlestick";
                        "chart-column": "chart-column";
                        "chart-column-big": "chart-column-big";
                        "chart-column-decreasing": "chart-column-decreasing";
                        "chart-column-increasing": "chart-column-increasing";
                        "chart-column-stacked": "chart-column-stacked";
                        "chart-gantt": "chart-gantt";
                        "chart-line": "chart-line";
                        "chart-network": "chart-network";
                        "chart-no-axes-column": "chart-no-axes-column";
                        "chart-no-axes-column-decreasing": "chart-no-axes-column-decreasing";
                        "chart-no-axes-column-increasing": "chart-no-axes-column-increasing";
                        "chart-no-axes-combined": "chart-no-axes-combined";
                        "chart-no-axes-gantt": "chart-no-axes-gantt";
                        "chart-pie": "chart-pie";
                        "chart-scatter": "chart-scatter";
                        "chart-spline": "chart-spline";
                        check: "check";
                        "check-check": "check-check";
                        "check-circle": "check-circle";
                        "check-circle-2": "check-circle-2";
                        "check-line": "check-line";
                        "check-square": "check-square";
                        "check-square-2": "check-square-2";
                        "chef-hat": "chef-hat";
                        cherry: "cherry";
                        "chess-bishop": "chess-bishop";
                        "chess-king": "chess-king";
                        "chess-knight": "chess-knight";
                        "chess-pawn": "chess-pawn";
                        "chess-queen": "chess-queen";
                        "chess-rook": "chess-rook";
                        "chevron-down": "chevron-down";
                        "chevron-down-circle": "chevron-down-circle";
                        "chevron-down-square": "chevron-down-square";
                        "chevron-first": "chevron-first";
                        "chevron-last": "chevron-last";
                        "chevron-left": "chevron-left";
                        "chevron-left-circle": "chevron-left-circle";
                        "chevron-left-square": "chevron-left-square";
                        "chevron-right": "chevron-right";
                        "chevron-right-circle": "chevron-right-circle";
                        "chevron-right-square": "chevron-right-square";
                        "chevron-up": "chevron-up";
                        "chevron-up-circle": "chevron-up-circle";
                        "chevron-up-square": "chevron-up-square";
                        "chevrons-down": "chevrons-down";
                        "chevrons-down-up": "chevrons-down-up";
                        "chevrons-left": "chevrons-left";
                        "chevrons-left-right": "chevrons-left-right";
                        "chevrons-left-right-ellipsis": "chevrons-left-right-ellipsis";
                        "chevrons-right": "chevrons-right";
                        "chevrons-right-left": "chevrons-right-left";
                        "chevrons-up": "chevrons-up";
                        "chevrons-up-down": "chevrons-up-down";
                        chrome: "chrome";
                        chromium: "chromium";
                        church: "church";
                        cigarette: "cigarette";
                        "cigarette-off": "cigarette-off";
                        circle: "circle";
                        "circle-alert": "circle-alert";
                        "circle-arrow-down": "circle-arrow-down";
                        "circle-arrow-left": "circle-arrow-left";
                        "circle-arrow-out-down-left": "circle-arrow-out-down-left";
                        "circle-arrow-out-down-right": "circle-arrow-out-down-right";
                        "circle-arrow-out-up-left": "circle-arrow-out-up-left";
                        "circle-arrow-out-up-right": "circle-arrow-out-up-right";
                        "circle-arrow-right": "circle-arrow-right";
                        "circle-arrow-up": "circle-arrow-up";
                        "circle-check": "circle-check";
                        "circle-check-big": "circle-check-big";
                        "circle-chevron-down": "circle-chevron-down";
                        "circle-chevron-left": "circle-chevron-left";
                        "circle-chevron-right": "circle-chevron-right";
                        "circle-chevron-up": "circle-chevron-up";
                        "circle-dashed": "circle-dashed";
                        "circle-divide": "circle-divide";
                        "circle-dollar-sign": "circle-dollar-sign";
                        "circle-dot": "circle-dot";
                        "circle-dot-dashed": "circle-dot-dashed";
                        "circle-ellipsis": "circle-ellipsis";
                        "circle-equal": "circle-equal";
                        "circle-fading-arrow-up": "circle-fading-arrow-up";
                        "circle-fading-plus": "circle-fading-plus";
                        "circle-gauge": "circle-gauge";
                        "circle-help": "circle-help";
                        "circle-minus": "circle-minus";
                        "circle-off": "circle-off";
                        "circle-parking": "circle-parking";
                        "circle-parking-off": "circle-parking-off";
                        "circle-pause": "circle-pause";
                        "circle-percent": "circle-percent";
                        "circle-pile": "circle-pile";
                        "circle-play": "circle-play";
                        "circle-plus": "circle-plus";
                        "circle-pound-sterling": "circle-pound-sterling";
                        "circle-power": "circle-power";
                        "circle-question-mark": "circle-question-mark";
                        "circle-slash": "circle-slash";
                        "circle-slash-2": "circle-slash-2";
                        "circle-slashed": "circle-slashed";
                        "circle-small": "circle-small";
                        "circle-star": "circle-star";
                        "circle-stop": "circle-stop";
                        "circle-user": "circle-user";
                        "circle-user-round": "circle-user-round";
                        "circle-x": "circle-x";
                        "circuit-board": "circuit-board";
                        citrus: "citrus";
                        clapperboard: "clapperboard";
                        clipboard: "clipboard";
                        "clipboard-check": "clipboard-check";
                        "clipboard-clock": "clipboard-clock";
                        "clipboard-copy": "clipboard-copy";
                        "clipboard-edit": "clipboard-edit";
                        "clipboard-list": "clipboard-list";
                        "clipboard-minus": "clipboard-minus";
                        "clipboard-paste": "clipboard-paste";
                        "clipboard-pen": "clipboard-pen";
                        "clipboard-pen-line": "clipboard-pen-line";
                        "clipboard-plus": "clipboard-plus";
                        "clipboard-signature": "clipboard-signature";
                        "clipboard-type": "clipboard-type";
                        "clipboard-x": "clipboard-x";
                        clock: "clock";
                        "clock-1": "clock-1";
                        "clock-10": "clock-10";
                        "clock-11": "clock-11";
                        "clock-12": "clock-12";
                        "clock-2": "clock-2";
                        "clock-3": "clock-3";
                        "clock-4": "clock-4";
                        "clock-5": "clock-5";
                        "clock-6": "clock-6";
                        "clock-7": "clock-7";
                        "clock-8": "clock-8";
                        "clock-9": "clock-9";
                        "clock-alert": "clock-alert";
                        "clock-arrow-down": "clock-arrow-down";
                        "clock-arrow-up": "clock-arrow-up";
                        "clock-check": "clock-check";
                        "clock-fading": "clock-fading";
                        "clock-plus": "clock-plus";
                        "closed-caption": "closed-caption";
                        cloud: "cloud";
                        "cloud-alert": "cloud-alert";
                        "cloud-backup": "cloud-backup";
                        "cloud-check": "cloud-check";
                        "cloud-cog": "cloud-cog";
                        "cloud-download": "cloud-download";
                        "cloud-drizzle": "cloud-drizzle";
                        "cloud-fog": "cloud-fog";
                        "cloud-hail": "cloud-hail";
                        "cloud-lightning": "cloud-lightning";
                        "cloud-moon": "cloud-moon";
                        "cloud-moon-rain": "cloud-moon-rain";
                        "cloud-off": "cloud-off";
                        "cloud-rain": "cloud-rain";
                        "cloud-rain-wind": "cloud-rain-wind";
                        "cloud-snow": "cloud-snow";
                        "cloud-sun": "cloud-sun";
                        "cloud-sun-rain": "cloud-sun-rain";
                        "cloud-sync": "cloud-sync";
                        "cloud-upload": "cloud-upload";
                        cloudy: "cloudy";
                        clover: "clover";
                        club: "club";
                        code: "code";
                        "code-2": "code-2";
                        "code-square": "code-square";
                        "code-xml": "code-xml";
                        codepen: "codepen";
                        codesandbox: "codesandbox";
                        coffee: "coffee";
                        cog: "cog";
                        coins: "coins";
                        columns: "columns";
                        "columns-2": "columns-2";
                        "columns-3": "columns-3";
                        "columns-3-cog": "columns-3-cog";
                        "columns-4": "columns-4";
                        "columns-settings": "columns-settings";
                        combine: "combine";
                        command: "command";
                        compass: "compass";
                        component: "component";
                        computer: "computer";
                        "concierge-bell": "concierge-bell";
                        cone: "cone";
                        construction: "construction";
                        contact: "contact";
                        "contact-2": "contact-2";
                        "contact-round": "contact-round";
                        container: "container";
                        contrast: "contrast";
                        cookie: "cookie";
                        "cooking-pot": "cooking-pot";
                        copy: "copy";
                        "copy-check": "copy-check";
                        "copy-minus": "copy-minus";
                        "copy-plus": "copy-plus";
                        "copy-slash": "copy-slash";
                        "copy-x": "copy-x";
                        copyleft: "copyleft";
                        copyright: "copyright";
                        "corner-down-left": "corner-down-left";
                        "corner-down-right": "corner-down-right";
                        "corner-left-down": "corner-left-down";
                        "corner-left-up": "corner-left-up";
                        "corner-right-down": "corner-right-down";
                        "corner-right-up": "corner-right-up";
                        "corner-up-left": "corner-up-left";
                        "corner-up-right": "corner-up-right";
                        cpu: "cpu";
                        "creative-commons": "creative-commons";
                        "credit-card": "credit-card";
                        croissant: "croissant";
                        crop: "crop";
                        cross: "cross";
                        crosshair: "crosshair";
                        crown: "crown";
                        cuboid: "cuboid";
                        "cup-soda": "cup-soda";
                        "curly-braces": "curly-braces";
                        currency: "currency";
                        cylinder: "cylinder";
                        dam: "dam";
                        database: "database";
                        "database-backup": "database-backup";
                        "database-search": "database-search";
                        "database-zap": "database-zap";
                        "decimals-arrow-left": "decimals-arrow-left";
                        "decimals-arrow-right": "decimals-arrow-right";
                        delete: "delete";
                        dessert: "dessert";
                        diameter: "diameter";
                        diamond: "diamond";
                        "diamond-minus": "diamond-minus";
                        "diamond-percent": "diamond-percent";
                        "diamond-plus": "diamond-plus";
                        "dice-1": "dice-1";
                        "dice-2": "dice-2";
                        "dice-3": "dice-3";
                        "dice-4": "dice-4";
                        "dice-5": "dice-5";
                        "dice-6": "dice-6";
                        dices: "dices";
                        diff: "diff";
                        disc: "disc";
                        "disc-2": "disc-2";
                        "disc-3": "disc-3";
                        "disc-album": "disc-album";
                        divide: "divide";
                        "divide-circle": "divide-circle";
                        "divide-square": "divide-square";
                        dna: "dna";
                        "dna-off": "dna-off";
                        dock: "dock";
                        dog: "dog";
                        "dollar-sign": "dollar-sign";
                        donut: "donut";
                        "door-closed": "door-closed";
                        "door-closed-locked": "door-closed-locked";
                        "door-open": "door-open";
                        dot: "dot";
                        "dot-square": "dot-square";
                        download: "download";
                        "download-cloud": "download-cloud";
                        "drafting-compass": "drafting-compass";
                        drama: "drama";
                        dribbble: "dribbble";
                        drill: "drill";
                        drone: "drone";
                        droplet: "droplet";
                        "droplet-off": "droplet-off";
                        droplets: "droplets";
                        drum: "drum";
                        drumstick: "drumstick";
                        dumbbell: "dumbbell";
                        ear: "ear";
                        "ear-off": "ear-off";
                        earth: "earth";
                        "earth-lock": "earth-lock";
                        eclipse: "eclipse";
                        edit: "edit";
                        "edit-2": "edit-2";
                        "edit-3": "edit-3";
                        egg: "egg";
                        "egg-fried": "egg-fried";
                        "egg-off": "egg-off";
                        ellipse: "ellipse";
                        ellipsis: "ellipsis";
                        "ellipsis-vertical": "ellipsis-vertical";
                        equal: "equal";
                        "equal-approximately": "equal-approximately";
                        "equal-not": "equal-not";
                        "equal-square": "equal-square";
                        eraser: "eraser";
                        "ethernet-port": "ethernet-port";
                        euro: "euro";
                        "ev-charger": "ev-charger";
                        expand: "expand";
                        "external-link": "external-link";
                        eye: "eye";
                        "eye-closed": "eye-closed";
                        "eye-off": "eye-off";
                        facebook: "facebook";
                        factory: "factory";
                        fan: "fan";
                        "fast-forward": "fast-forward";
                        feather: "feather";
                        fence: "fence";
                        "ferris-wheel": "ferris-wheel";
                        figma: "figma";
                        file: "file";
                        "file-archive": "file-archive";
                        "file-audio": "file-audio";
                        "file-audio-2": "file-audio-2";
                        "file-axis-3-d": "file-axis-3-d";
                        "file-axis-3d": "file-axis-3d";
                        "file-badge": "file-badge";
                        "file-badge-2": "file-badge-2";
                        "file-bar-chart": "file-bar-chart";
                        "file-bar-chart-2": "file-bar-chart-2";
                        "file-box": "file-box";
                        "file-braces": "file-braces";
                        "file-braces-corner": "file-braces-corner";
                        "file-chart-column": "file-chart-column";
                        "file-chart-column-increasing": "file-chart-column-increasing";
                        "file-chart-line": "file-chart-line";
                        "file-chart-pie": "file-chart-pie";
                        "file-check": "file-check";
                        "file-check-2": "file-check-2";
                        "file-check-corner": "file-check-corner";
                        "file-clock": "file-clock";
                        "file-code": "file-code";
                        "file-code-2": "file-code-2";
                        "file-code-corner": "file-code-corner";
                        "file-cog": "file-cog";
                        "file-cog-2": "file-cog-2";
                        "file-diff": "file-diff";
                        "file-digit": "file-digit";
                        "file-down": "file-down";
                        "file-edit": "file-edit";
                        "file-exclamation-point": "file-exclamation-point";
                        "file-headphone": "file-headphone";
                        "file-heart": "file-heart";
                        "file-image": "file-image";
                        "file-input": "file-input";
                        "file-json": "file-json";
                        "file-json-2": "file-json-2";
                        "file-key": "file-key";
                        "file-key-2": "file-key-2";
                        "file-line-chart": "file-line-chart";
                        "file-lock": "file-lock";
                        "file-lock-2": "file-lock-2";
                        "file-minus": "file-minus";
                        "file-minus-2": "file-minus-2";
                        "file-minus-corner": "file-minus-corner";
                        "file-music": "file-music";
                        "file-output": "file-output";
                        "file-pen": "file-pen";
                        "file-pen-line": "file-pen-line";
                        "file-pie-chart": "file-pie-chart";
                        "file-play": "file-play";
                        "file-plus": "file-plus";
                        "file-plus-2": "file-plus-2";
                        "file-plus-corner": "file-plus-corner";
                        "file-question": "file-question";
                        "file-question-mark": "file-question-mark";
                        "file-scan": "file-scan";
                        "file-search": "file-search";
                        "file-search-2": "file-search-2";
                        "file-search-corner": "file-search-corner";
                        "file-signal": "file-signal";
                        "file-signature": "file-signature";
                        "file-sliders": "file-sliders";
                        "file-spreadsheet": "file-spreadsheet";
                        "file-stack": "file-stack";
                        "file-symlink": "file-symlink";
                        "file-terminal": "file-terminal";
                        "file-text": "file-text";
                        "file-type": "file-type";
                        "file-type-2": "file-type-2";
                        "file-type-corner": "file-type-corner";
                        "file-up": "file-up";
                        "file-user": "file-user";
                        "file-video": "file-video";
                        "file-video-2": "file-video-2";
                        "file-video-camera": "file-video-camera";
                        "file-volume": "file-volume";
                        "file-volume-2": "file-volume-2";
                        "file-warning": "file-warning";
                        "file-x": "file-x";
                        "file-x-2": "file-x-2";
                        "file-x-corner": "file-x-corner";
                        files: "files";
                        film: "film";
                        filter: "filter";
                        "filter-x": "filter-x";
                        fingerprint: "fingerprint";
                        "fingerprint-pattern": "fingerprint-pattern";
                        "fire-extinguisher": "fire-extinguisher";
                        fish: "fish";
                        "fish-off": "fish-off";
                        "fish-symbol": "fish-symbol";
                        "fishing-hook": "fishing-hook";
                        "fishing-rod": "fishing-rod";
                        flag: "flag";
                        "flag-off": "flag-off";
                        "flag-triangle-left": "flag-triangle-left";
                        "flag-triangle-right": "flag-triangle-right";
                        flame: "flame";
                        "flame-kindling": "flame-kindling";
                        flashlight: "flashlight";
                        "flashlight-off": "flashlight-off";
                        "flask-conical": "flask-conical";
                        "flask-conical-off": "flask-conical-off";
                        "flask-round": "flask-round";
                        "flip-horizontal": "flip-horizontal";
                        "flip-horizontal-2": "flip-horizontal-2";
                        "flip-vertical": "flip-vertical";
                        "flip-vertical-2": "flip-vertical-2";
                        flower: "flower";
                        "flower-2": "flower-2";
                        focus: "focus";
                        "fold-horizontal": "fold-horizontal";
                        "fold-vertical": "fold-vertical";
                        folder: "folder";
                        "folder-archive": "folder-archive";
                        "folder-check": "folder-check";
                        "folder-clock": "folder-clock";
                        "folder-closed": "folder-closed";
                        "folder-code": "folder-code";
                        "folder-cog": "folder-cog";
                        "folder-cog-2": "folder-cog-2";
                        "folder-dot": "folder-dot";
                        "folder-down": "folder-down";
                        "folder-edit": "folder-edit";
                        "folder-git": "folder-git";
                        "folder-git-2": "folder-git-2";
                        "folder-heart": "folder-heart";
                        "folder-input": "folder-input";
                        "folder-kanban": "folder-kanban";
                        "folder-key": "folder-key";
                        "folder-lock": "folder-lock";
                        "folder-minus": "folder-minus";
                        "folder-open": "folder-open";
                        "folder-open-dot": "folder-open-dot";
                        "folder-output": "folder-output";
                        "folder-pen": "folder-pen";
                        "folder-plus": "folder-plus";
                        "folder-root": "folder-root";
                        "folder-search": "folder-search";
                        "folder-search-2": "folder-search-2";
                        "folder-symlink": "folder-symlink";
                        "folder-sync": "folder-sync";
                        "folder-tree": "folder-tree";
                        "folder-up": "folder-up";
                        "folder-x": "folder-x";
                        folders: "folders";
                        footprints: "footprints";
                        "fork-knife": "fork-knife";
                        "fork-knife-crossed": "fork-knife-crossed";
                        forklift: "forklift";
                        form: "form";
                        "form-input": "form-input";
                        forward: "forward";
                        frame: "frame";
                        framer: "framer";
                        frown: "frown";
                        fuel: "fuel";
                        fullscreen: "fullscreen";
                        "function-square": "function-square";
                        funnel: "funnel";
                        "funnel-plus": "funnel-plus";
                        "funnel-x": "funnel-x";
                        "gallery-horizontal": "gallery-horizontal";
                        "gallery-horizontal-end": "gallery-horizontal-end";
                        "gallery-thumbnails": "gallery-thumbnails";
                        "gallery-vertical": "gallery-vertical";
                        "gallery-vertical-end": "gallery-vertical-end";
                        gamepad: "gamepad";
                        "gamepad-2": "gamepad-2";
                        "gamepad-directional": "gamepad-directional";
                        "gantt-chart": "gantt-chart";
                        "gantt-chart-square": "gantt-chart-square";
                        gauge: "gauge";
                        "gauge-circle": "gauge-circle";
                        gavel: "gavel";
                        gem: "gem";
                        "georgian-lari": "georgian-lari";
                        ghost: "ghost";
                        gift: "gift";
                        "git-branch": "git-branch";
                        "git-branch-minus": "git-branch-minus";
                        "git-branch-plus": "git-branch-plus";
                        "git-commit": "git-commit";
                        "git-commit-horizontal": "git-commit-horizontal";
                        "git-commit-vertical": "git-commit-vertical";
                        "git-compare": "git-compare";
                        "git-compare-arrows": "git-compare-arrows";
                        "git-fork": "git-fork";
                        "git-graph": "git-graph";
                        "git-merge": "git-merge";
                        "git-merge-conflict": "git-merge-conflict";
                        "git-pull-request": "git-pull-request";
                        "git-pull-request-arrow": "git-pull-request-arrow";
                        "git-pull-request-closed": "git-pull-request-closed";
                        "git-pull-request-create": "git-pull-request-create";
                        "git-pull-request-create-arrow": "git-pull-request-create-arrow";
                        "git-pull-request-draft": "git-pull-request-draft";
                        github: "github";
                        gitlab: "gitlab";
                        "glass-water": "glass-water";
                        glasses: "glasses";
                        globe: "globe";
                        "globe-2": "globe-2";
                        "globe-lock": "globe-lock";
                        "globe-off": "globe-off";
                        "globe-x": "globe-x";
                        goal: "goal";
                        gpu: "gpu";
                        grab: "grab";
                        "graduation-cap": "graduation-cap";
                        grape: "grape";
                        grid: "grid";
                        "grid-2-x-2": "grid-2-x-2";
                        "grid-2-x-2-check": "grid-2-x-2-check";
                        "grid-2-x-2-plus": "grid-2-x-2-plus";
                        "grid-2-x-2-x": "grid-2-x-2-x";
                        "grid-2x2": "grid-2x2";
                        "grid-2x2-check": "grid-2x2-check";
                        "grid-2x2-plus": "grid-2x2-plus";
                        "grid-2x2-x": "grid-2x2-x";
                        "grid-3-x-3": "grid-3-x-3";
                        "grid-3x2": "grid-3x2";
                        "grid-3x3": "grid-3x3";
                        grip: "grip";
                        "grip-horizontal": "grip-horizontal";
                        "grip-vertical": "grip-vertical";
                        group: "group";
                        guitar: "guitar";
                        ham: "ham";
                        hamburger: "hamburger";
                        hammer: "hammer";
                        hand: "hand";
                        "hand-coins": "hand-coins";
                        "hand-fist": "hand-fist";
                        "hand-grab": "hand-grab";
                        "hand-heart": "hand-heart";
                        "hand-helping": "hand-helping";
                        "hand-metal": "hand-metal";
                        "hand-platter": "hand-platter";
                        handbag: "handbag";
                        handshake: "handshake";
                        "hard-drive": "hard-drive";
                        "hard-drive-download": "hard-drive-download";
                        "hard-drive-upload": "hard-drive-upload";
                        "hard-hat": "hard-hat";
                        hash: "hash";
                        "hat-glasses": "hat-glasses";
                        haze: "haze";
                        hd: "hd";
                        "hdmi-port": "hdmi-port";
                        heading: "heading";
                        "heading-1": "heading-1";
                        "heading-2": "heading-2";
                        "heading-3": "heading-3";
                        "heading-4": "heading-4";
                        "heading-5": "heading-5";
                        "heading-6": "heading-6";
                        "headphone-off": "headphone-off";
                        headphones: "headphones";
                        headset: "headset";
                        heart: "heart";
                        "heart-crack": "heart-crack";
                        "heart-handshake": "heart-handshake";
                        "heart-minus": "heart-minus";
                        "heart-off": "heart-off";
                        "heart-plus": "heart-plus";
                        "heart-pulse": "heart-pulse";
                        heater: "heater";
                        helicopter: "helicopter";
                        "help-circle": "help-circle";
                        "helping-hand": "helping-hand";
                        hexagon: "hexagon";
                        highlighter: "highlighter";
                        history: "history";
                        home: "home";
                        hop: "hop";
                        "hop-off": "hop-off";
                        hospital: "hospital";
                        hotel: "hotel";
                        hourglass: "hourglass";
                        house: "house";
                        "house-heart": "house-heart";
                        "house-plug": "house-plug";
                        "house-plus": "house-plus";
                        "house-wifi": "house-wifi";
                        "ice-cream": "ice-cream";
                        "ice-cream-2": "ice-cream-2";
                        "ice-cream-bowl": "ice-cream-bowl";
                        "ice-cream-cone": "ice-cream-cone";
                        "id-card": "id-card";
                        "id-card-lanyard": "id-card-lanyard";
                        image: "image";
                        "image-down": "image-down";
                        "image-minus": "image-minus";
                        "image-off": "image-off";
                        "image-play": "image-play";
                        "image-plus": "image-plus";
                        "image-up": "image-up";
                        "image-upscale": "image-upscale";
                        images: "images";
                        import: "import";
                        inbox: "inbox";
                        indent: "indent";
                        "indent-decrease": "indent-decrease";
                        "indent-increase": "indent-increase";
                        "indian-rupee": "indian-rupee";
                        infinity: "infinity";
                        inspect: "inspect";
                        "inspection-panel": "inspection-panel";
                        instagram: "instagram";
                        italic: "italic";
                        "iteration-ccw": "iteration-ccw";
                        "iteration-cw": "iteration-cw";
                        "japanese-yen": "japanese-yen";
                        joystick: "joystick";
                        kanban: "kanban";
                        "kanban-square": "kanban-square";
                        "kanban-square-dashed": "kanban-square-dashed";
                        kayak: "kayak";
                        key: "key";
                        "key-round": "key-round";
                        "key-square": "key-square";
                        keyboard: "keyboard";
                        "keyboard-music": "keyboard-music";
                        "keyboard-off": "keyboard-off";
                        lamp: "lamp";
                        "lamp-ceiling": "lamp-ceiling";
                        "lamp-desk": "lamp-desk";
                        "lamp-floor": "lamp-floor";
                        "lamp-wall-down": "lamp-wall-down";
                        "lamp-wall-up": "lamp-wall-up";
                        "land-plot": "land-plot";
                        landmark: "landmark";
                        languages: "languages";
                        laptop: "laptop";
                        "laptop-2": "laptop-2";
                        "laptop-minimal": "laptop-minimal";
                        "laptop-minimal-check": "laptop-minimal-check";
                        lasso: "lasso";
                        "lasso-select": "lasso-select";
                        laugh: "laugh";
                        layers: "layers";
                        "layers-2": "layers-2";
                        "layers-3": "layers-3";
                        "layers-plus": "layers-plus";
                        layout: "layout";
                        "layout-dashboard": "layout-dashboard";
                        "layout-grid": "layout-grid";
                        "layout-list": "layout-list";
                        "layout-panel-left": "layout-panel-left";
                        "layout-panel-top": "layout-panel-top";
                        "layout-template": "layout-template";
                        leaf: "leaf";
                        "leafy-green": "leafy-green";
                        lectern: "lectern";
                        "lens-concave": "lens-concave";
                        "lens-convex": "lens-convex";
                        "letter-text": "letter-text";
                        library: "library";
                        "library-big": "library-big";
                        "library-square": "library-square";
                        "life-buoy": "life-buoy";
                        ligature: "ligature";
                        lightbulb: "lightbulb";
                        "lightbulb-off": "lightbulb-off";
                        "line-chart": "line-chart";
                        "line-dot-right-horizontal": "line-dot-right-horizontal";
                        "line-squiggle": "line-squiggle";
                        "link-2": "link-2";
                        "link-2-off": "link-2-off";
                        linkedin: "linkedin";
                        list: "list";
                        "list-check": "list-check";
                        "list-checks": "list-checks";
                        "list-chevrons-down-up": "list-chevrons-down-up";
                        "list-chevrons-up-down": "list-chevrons-up-down";
                        "list-collapse": "list-collapse";
                        "list-end": "list-end";
                        "list-filter": "list-filter";
                        "list-filter-plus": "list-filter-plus";
                        "list-indent-decrease": "list-indent-decrease";
                        "list-indent-increase": "list-indent-increase";
                        "list-minus": "list-minus";
                        "list-music": "list-music";
                        "list-ordered": "list-ordered";
                        "list-plus": "list-plus";
                        "list-restart": "list-restart";
                        "list-start": "list-start";
                        "list-todo": "list-todo";
                        "list-tree": "list-tree";
                        "list-video": "list-video";
                        "list-x": "list-x";
                        loader: "loader";
                        "loader-2": "loader-2";
                        "loader-circle": "loader-circle";
                        "loader-pinwheel": "loader-pinwheel";
                        locate: "locate";
                        "locate-fixed": "locate-fixed";
                        "locate-off": "locate-off";
                        "location-edit": "location-edit";
                        lock: "lock";
                        "lock-keyhole": "lock-keyhole";
                        "lock-keyhole-open": "lock-keyhole-open";
                        "lock-open": "lock-open";
                        "log-in": "log-in";
                        "log-out": "log-out";
                        logs: "logs";
                        lollipop: "lollipop";
                        luggage: "luggage";
                        "m-square": "m-square";
                        magnet: "magnet";
                        mail: "mail";
                        "mail-check": "mail-check";
                        "mail-minus": "mail-minus";
                        "mail-open": "mail-open";
                        "mail-plus": "mail-plus";
                        "mail-question": "mail-question";
                        "mail-question-mark": "mail-question-mark";
                        "mail-search": "mail-search";
                        "mail-warning": "mail-warning";
                        "mail-x": "mail-x";
                        mailbox: "mailbox";
                        mails: "mails";
                        map: "map";
                        "map-minus": "map-minus";
                        "map-pin": "map-pin";
                        "map-pin-check": "map-pin-check";
                        "map-pin-check-inside": "map-pin-check-inside";
                        "map-pin-house": "map-pin-house";
                        "map-pin-minus": "map-pin-minus";
                        "map-pin-minus-inside": "map-pin-minus-inside";
                        "map-pin-off": "map-pin-off";
                        "map-pin-pen": "map-pin-pen";
                        "map-pin-plus": "map-pin-plus";
                        "map-pin-plus-inside": "map-pin-plus-inside";
                        "map-pin-x": "map-pin-x";
                        "map-pin-x-inside": "map-pin-x-inside";
                        "map-pinned": "map-pinned";
                        "map-plus": "map-plus";
                        mars: "mars";
                        "mars-stroke": "mars-stroke";
                        martini: "martini";
                        maximize: "maximize";
                        "maximize-2": "maximize-2";
                        medal: "medal";
                        megaphone: "megaphone";
                        "megaphone-off": "megaphone-off";
                        meh: "meh";
                        "memory-stick": "memory-stick";
                        menu: "menu";
                        "menu-square": "menu-square";
                        merge: "merge";
                        "message-circle": "message-circle";
                        "message-circle-check": "message-circle-check";
                        "message-circle-code": "message-circle-code";
                        "message-circle-dashed": "message-circle-dashed";
                        "message-circle-heart": "message-circle-heart";
                        "message-circle-more": "message-circle-more";
                        "message-circle-off": "message-circle-off";
                        "message-circle-plus": "message-circle-plus";
                        "message-circle-question": "message-circle-question";
                        "message-circle-question-mark": "message-circle-question-mark";
                        "message-circle-reply": "message-circle-reply";
                        "message-circle-warning": "message-circle-warning";
                        "message-circle-x": "message-circle-x";
                        "message-square": "message-square";
                        "message-square-check": "message-square-check";
                        "message-square-code": "message-square-code";
                        "message-square-dashed": "message-square-dashed";
                        "message-square-diff": "message-square-diff";
                        "message-square-dot": "message-square-dot";
                        "message-square-heart": "message-square-heart";
                        "message-square-lock": "message-square-lock";
                        "message-square-more": "message-square-more";
                        "message-square-off": "message-square-off";
                        "message-square-plus": "message-square-plus";
                        "message-square-quote": "message-square-quote";
                        "message-square-reply": "message-square-reply";
                        "message-square-share": "message-square-share";
                        "message-square-text": "message-square-text";
                        "message-square-warning": "message-square-warning";
                        "message-square-x": "message-square-x";
                        "messages-square": "messages-square";
                        metronome: "metronome";
                        mic: "mic";
                        "mic-2": "mic-2";
                        "mic-off": "mic-off";
                        "mic-vocal": "mic-vocal";
                        microchip: "microchip";
                        microscope: "microscope";
                        microwave: "microwave";
                        milestone: "milestone";
                        milk: "milk";
                        "milk-off": "milk-off";
                        minimize: "minimize";
                        "minimize-2": "minimize-2";
                        minus: "minus";
                        "minus-circle": "minus-circle";
                        "minus-square": "minus-square";
                        "mirror-rectangular": "mirror-rectangular";
                        "mirror-round": "mirror-round";
                        monitor: "monitor";
                        "monitor-check": "monitor-check";
                        "monitor-cloud": "monitor-cloud";
                        "monitor-cog": "monitor-cog";
                        "monitor-dot": "monitor-dot";
                        "monitor-down": "monitor-down";
                        "monitor-off": "monitor-off";
                        "monitor-pause": "monitor-pause";
                        "monitor-play": "monitor-play";
                        "monitor-smartphone": "monitor-smartphone";
                        "monitor-speaker": "monitor-speaker";
                        "monitor-stop": "monitor-stop";
                        "monitor-up": "monitor-up";
                        "monitor-x": "monitor-x";
                        moon: "moon";
                        "moon-star": "moon-star";
                        "more-horizontal": "more-horizontal";
                        "more-vertical": "more-vertical";
                        motorbike: "motorbike";
                        mountain: "mountain";
                        "mountain-snow": "mountain-snow";
                        mouse: "mouse";
                        "mouse-left": "mouse-left";
                        "mouse-off": "mouse-off";
                        "mouse-pointer": "mouse-pointer";
                        "mouse-pointer-2": "mouse-pointer-2";
                        "mouse-pointer-2-off": "mouse-pointer-2-off";
                        "mouse-pointer-ban": "mouse-pointer-ban";
                        "mouse-pointer-click": "mouse-pointer-click";
                        "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
                        "mouse-right": "mouse-right";
                        move: "move";
                        "move-3-d": "move-3-d";
                        "move-3d": "move-3d";
                        "move-diagonal": "move-diagonal";
                        "move-diagonal-2": "move-diagonal-2";
                        "move-down": "move-down";
                        "move-down-left": "move-down-left";
                        "move-down-right": "move-down-right";
                        "move-horizontal": "move-horizontal";
                        "move-left": "move-left";
                        "move-right": "move-right";
                        "move-up": "move-up";
                        "move-up-left": "move-up-left";
                        "move-up-right": "move-up-right";
                        "move-vertical": "move-vertical";
                        music: "music";
                        "music-2": "music-2";
                        "music-3": "music-3";
                        "music-4": "music-4";
                        navigation: "navigation";
                        "navigation-2": "navigation-2";
                        "navigation-2-off": "navigation-2-off";
                        "navigation-off": "navigation-off";
                        network: "network";
                        newspaper: "newspaper";
                        nfc: "nfc";
                        "non-binary": "non-binary";
                        notebook: "notebook";
                        "notebook-pen": "notebook-pen";
                        "notebook-tabs": "notebook-tabs";
                        "notebook-text": "notebook-text";
                        "notepad-text": "notepad-text";
                        "notepad-text-dashed": "notepad-text-dashed";
                        nut: "nut";
                        "nut-off": "nut-off";
                        octagon: "octagon";
                        "octagon-alert": "octagon-alert";
                        "octagon-minus": "octagon-minus";
                        "octagon-pause": "octagon-pause";
                        "octagon-x": "octagon-x";
                        omega: "omega";
                        option: "option";
                        orbit: "orbit";
                        origami: "origami";
                        outdent: "outdent";
                        package: "package";
                        "package-2": "package-2";
                        "package-check": "package-check";
                        "package-minus": "package-minus";
                        "package-open": "package-open";
                        "package-plus": "package-plus";
                        "package-search": "package-search";
                        "package-x": "package-x";
                        "paint-bucket": "paint-bucket";
                        "paint-roller": "paint-roller";
                        paintbrush: "paintbrush";
                        "paintbrush-2": "paintbrush-2";
                        "paintbrush-vertical": "paintbrush-vertical";
                        palette: "palette";
                        palmtree: "palmtree";
                        panda: "panda";
                        "panel-bottom": "panel-bottom";
                        "panel-bottom-close": "panel-bottom-close";
                        "panel-bottom-dashed": "panel-bottom-dashed";
                        "panel-bottom-inactive": "panel-bottom-inactive";
                        "panel-bottom-open": "panel-bottom-open";
                        "panel-left": "panel-left";
                        "panel-left-close": "panel-left-close";
                        "panel-left-dashed": "panel-left-dashed";
                        "panel-left-inactive": "panel-left-inactive";
                        "panel-left-open": "panel-left-open";
                        "panel-left-right-dashed": "panel-left-right-dashed";
                        "panel-right": "panel-right";
                        "panel-right-close": "panel-right-close";
                        "panel-right-dashed": "panel-right-dashed";
                        "panel-right-inactive": "panel-right-inactive";
                        "panel-right-open": "panel-right-open";
                        "panel-top": "panel-top";
                        "panel-top-bottom-dashed": "panel-top-bottom-dashed";
                        "panel-top-close": "panel-top-close";
                        "panel-top-dashed": "panel-top-dashed";
                        "panel-top-inactive": "panel-top-inactive";
                        "panel-top-open": "panel-top-open";
                        "panels-left-bottom": "panels-left-bottom";
                        "panels-left-right": "panels-left-right";
                        "panels-right-bottom": "panels-right-bottom";
                        "panels-top-bottom": "panels-top-bottom";
                        "panels-top-left": "panels-top-left";
                        paperclip: "paperclip";
                        parentheses: "parentheses";
                        "parking-circle": "parking-circle";
                        "parking-circle-off": "parking-circle-off";
                        "parking-meter": "parking-meter";
                        "parking-square": "parking-square";
                        "parking-square-off": "parking-square-off";
                        "party-popper": "party-popper";
                        pause: "pause";
                        "pause-circle": "pause-circle";
                        "pause-octagon": "pause-octagon";
                        "paw-print": "paw-print";
                        "pc-case": "pc-case";
                        pen: "pen";
                        "pen-box": "pen-box";
                        "pen-line": "pen-line";
                        "pen-off": "pen-off";
                        "pen-square": "pen-square";
                        "pen-tool": "pen-tool";
                        pencil: "pencil";
                        "pencil-line": "pencil-line";
                        "pencil-off": "pencil-off";
                        "pencil-ruler": "pencil-ruler";
                        pentagon: "pentagon";
                        percent: "percent";
                        "percent-circle": "percent-circle";
                        "percent-diamond": "percent-diamond";
                        "percent-square": "percent-square";
                        "person-standing": "person-standing";
                        "philippine-peso": "philippine-peso";
                        phone: "phone";
                        "phone-call": "phone-call";
                        "phone-forwarded": "phone-forwarded";
                        "phone-incoming": "phone-incoming";
                        "phone-missed": "phone-missed";
                        "phone-off": "phone-off";
                        "phone-outgoing": "phone-outgoing";
                        pi: "pi";
                        "pi-square": "pi-square";
                        piano: "piano";
                        pickaxe: "pickaxe";
                        "picture-in-picture": "picture-in-picture";
                        "picture-in-picture-2": "picture-in-picture-2";
                        "pie-chart": "pie-chart";
                        "piggy-bank": "piggy-bank";
                        pilcrow: "pilcrow";
                        "pilcrow-left": "pilcrow-left";
                        "pilcrow-right": "pilcrow-right";
                        "pilcrow-square": "pilcrow-square";
                        pill: "pill";
                        "pill-bottle": "pill-bottle";
                        pin: "pin";
                        "pin-off": "pin-off";
                        pipette: "pipette";
                        pizza: "pizza";
                        plane: "plane";
                        "plane-landing": "plane-landing";
                        "plane-takeoff": "plane-takeoff";
                        play: "play";
                        "play-circle": "play-circle";
                        "play-square": "play-square";
                        plug: "plug";
                        "plug-2": "plug-2";
                        "plug-zap": "plug-zap";
                        "plug-zap-2": "plug-zap-2";
                        plus: "plus";
                        "plus-circle": "plus-circle";
                        "plus-square": "plus-square";
                        pocket: "pocket";
                        "pocket-knife": "pocket-knife";
                        podcast: "podcast";
                        pointer: "pointer";
                        "pointer-off": "pointer-off";
                        popcorn: "popcorn";
                        popsicle: "popsicle";
                        "pound-sterling": "pound-sterling";
                        power: "power";
                        "power-circle": "power-circle";
                        "power-off": "power-off";
                        "power-square": "power-square";
                        presentation: "presentation";
                        printer: "printer";
                        "printer-check": "printer-check";
                        "printer-x": "printer-x";
                        projector: "projector";
                        proportions: "proportions";
                        puzzle: "puzzle";
                        pyramid: "pyramid";
                        "qr-code": "qr-code";
                        quote: "quote";
                        rabbit: "rabbit";
                        radar: "radar";
                        radiation: "radiation";
                        radical: "radical";
                        radio: "radio";
                        "radio-receiver": "radio-receiver";
                        "radio-tower": "radio-tower";
                        radius: "radius";
                        "rail-symbol": "rail-symbol";
                        rainbow: "rainbow";
                        rat: "rat";
                        ratio: "ratio";
                        receipt: "receipt";
                        "receipt-cent": "receipt-cent";
                        "receipt-euro": "receipt-euro";
                        "receipt-indian-rupee": "receipt-indian-rupee";
                        "receipt-japanese-yen": "receipt-japanese-yen";
                        "receipt-pound-sterling": "receipt-pound-sterling";
                        "receipt-russian-ruble": "receipt-russian-ruble";
                        "receipt-swiss-franc": "receipt-swiss-franc";
                        "receipt-text": "receipt-text";
                        "receipt-turkish-lira": "receipt-turkish-lira";
                        "rectangle-circle": "rectangle-circle";
                        "rectangle-ellipsis": "rectangle-ellipsis";
                        "rectangle-goggles": "rectangle-goggles";
                        "rectangle-horizontal": "rectangle-horizontal";
                        "rectangle-vertical": "rectangle-vertical";
                        recycle: "recycle";
                        redo: "redo";
                        "redo-2": "redo-2";
                        "redo-dot": "redo-dot";
                        "refresh-ccw": "refresh-ccw";
                        "refresh-ccw-dot": "refresh-ccw-dot";
                        "refresh-cw": "refresh-cw";
                        "refresh-cw-off": "refresh-cw-off";
                        refrigerator: "refrigerator";
                        regex: "regex";
                        "remove-formatting": "remove-formatting";
                        "repeat-1": "repeat-1";
                        "repeat-2": "repeat-2";
                        "replace-all": "replace-all";
                        reply: "reply";
                        "reply-all": "reply-all";
                        rewind: "rewind";
                        ribbon: "ribbon";
                        rocket: "rocket";
                        "rocking-chair": "rocking-chair";
                        "roller-coaster": "roller-coaster";
                        rose: "rose";
                        "rotate-3-d": "rotate-3-d";
                        "rotate-3d": "rotate-3d";
                        "rotate-ccw": "rotate-ccw";
                        "rotate-ccw-key": "rotate-ccw-key";
                        "rotate-ccw-square": "rotate-ccw-square";
                        "rotate-cw": "rotate-cw";
                        "rotate-cw-square": "rotate-cw-square";
                        route: "route";
                        "route-off": "route-off";
                        router: "router";
                        rows: "rows";
                        "rows-2": "rows-2";
                        "rows-3": "rows-3";
                        "rows-4": "rows-4";
                        rss: "rss";
                        ruler: "ruler";
                        "ruler-dimension-line": "ruler-dimension-line";
                        "russian-ruble": "russian-ruble";
                        sailboat: "sailboat";
                        salad: "salad";
                        sandwich: "sandwich";
                        satellite: "satellite";
                        "satellite-dish": "satellite-dish";
                        "saudi-riyal": "saudi-riyal";
                        save: "save";
                        "save-all": "save-all";
                        "save-off": "save-off";
                        scale: "scale";
                        "scale-3-d": "scale-3-d";
                        "scale-3d": "scale-3d";
                        scaling: "scaling";
                        scan: "scan";
                        "scan-barcode": "scan-barcode";
                        "scan-eye": "scan-eye";
                        "scan-face": "scan-face";
                        "scan-heart": "scan-heart";
                        "scan-line": "scan-line";
                        "scan-qr-code": "scan-qr-code";
                        "scan-search": "scan-search";
                        "scan-text": "scan-text";
                        "scatter-chart": "scatter-chart";
                        school: "school";
                        "school-2": "school-2";
                        scissors: "scissors";
                        "scissors-line-dashed": "scissors-line-dashed";
                        "scissors-square": "scissors-square";
                        "scissors-square-dashed-bottom": "scissors-square-dashed-bottom";
                        scooter: "scooter";
                        "screen-share": "screen-share";
                        "screen-share-off": "screen-share-off";
                        scroll: "scroll";
                        "scroll-text": "scroll-text";
                        "search-alert": "search-alert";
                        "search-check": "search-check";
                        "search-code": "search-code";
                        "search-slash": "search-slash";
                        "search-x": "search-x";
                        section: "section";
                        send: "send";
                        "send-horizonal": "send-horizonal";
                        "send-horizontal": "send-horizontal";
                        "send-to-back": "send-to-back";
                        "separator-horizontal": "separator-horizontal";
                        "separator-vertical": "separator-vertical";
                        server: "server";
                        "server-cog": "server-cog";
                        "server-crash": "server-crash";
                        "server-off": "server-off";
                        settings: "settings";
                        "settings-2": "settings-2";
                        shapes: "shapes";
                        share: "share";
                        "share-2": "share-2";
                        sheet: "sheet";
                        shell: "shell";
                        "shelving-unit": "shelving-unit";
                        shield: "shield";
                        "shield-alert": "shield-alert";
                        "shield-ban": "shield-ban";
                        "shield-check": "shield-check";
                        "shield-close": "shield-close";
                        "shield-ellipsis": "shield-ellipsis";
                        "shield-half": "shield-half";
                        "shield-minus": "shield-minus";
                        "shield-off": "shield-off";
                        "shield-plus": "shield-plus";
                        "shield-question": "shield-question";
                        "shield-question-mark": "shield-question-mark";
                        "shield-user": "shield-user";
                        "shield-x": "shield-x";
                        ship: "ship";
                        "ship-wheel": "ship-wheel";
                        shirt: "shirt";
                        "shopping-bag": "shopping-bag";
                        "shopping-basket": "shopping-basket";
                        "shopping-cart": "shopping-cart";
                        shovel: "shovel";
                        "shower-head": "shower-head";
                        shredder: "shredder";
                        shrimp: "shrimp";
                        shrink: "shrink";
                        shrub: "shrub";
                        shuffle: "shuffle";
                        sidebar: "sidebar";
                        "sidebar-close": "sidebar-close";
                        "sidebar-open": "sidebar-open";
                        sigma: "sigma";
                        "sigma-square": "sigma-square";
                        signal: "signal";
                        "signal-high": "signal-high";
                        "signal-low": "signal-low";
                        "signal-medium": "signal-medium";
                        "signal-zero": "signal-zero";
                        signature: "signature";
                        signpost: "signpost";
                        "signpost-big": "signpost-big";
                        siren: "siren";
                        "skip-back": "skip-back";
                        "skip-forward": "skip-forward";
                        skull: "skull";
                        slack: "slack";
                        slash: "slash";
                        "slash-square": "slash-square";
                        sliders: "sliders";
                        "sliders-horizontal": "sliders-horizontal";
                        "sliders-vertical": "sliders-vertical";
                        smartphone: "smartphone";
                        "smartphone-charging": "smartphone-charging";
                        "smartphone-nfc": "smartphone-nfc";
                        smile: "smile";
                        "smile-plus": "smile-plus";
                        snail: "snail";
                        snowflake: "snowflake";
                        "soap-dispenser-droplet": "soap-dispenser-droplet";
                        sofa: "sofa";
                        "solar-panel": "solar-panel";
                        "sort-asc": "sort-asc";
                        "sort-desc": "sort-desc";
                        soup: "soup";
                        space: "space";
                        spade: "spade";
                        sparkle: "sparkle";
                        sparkles: "sparkles";
                        speaker: "speaker";
                        speech: "speech";
                        "spell-check": "spell-check";
                        "spell-check-2": "spell-check-2";
                        spline: "spline";
                        "spline-pointer": "spline-pointer";
                        "split-square-horizontal": "split-square-horizontal";
                        "split-square-vertical": "split-square-vertical";
                        spool: "spool";
                        spotlight: "spotlight";
                        "spray-can": "spray-can";
                        sprout: "sprout";
                        square: "square";
                        "square-activity": "square-activity";
                        "square-arrow-down": "square-arrow-down";
                        "square-arrow-down-left": "square-arrow-down-left";
                        "square-arrow-down-right": "square-arrow-down-right";
                        "square-arrow-left": "square-arrow-left";
                        "square-arrow-out-down-left": "square-arrow-out-down-left";
                        "square-arrow-out-down-right": "square-arrow-out-down-right";
                        "square-arrow-out-up-left": "square-arrow-out-up-left";
                        "square-arrow-out-up-right": "square-arrow-out-up-right";
                        "square-arrow-right": "square-arrow-right";
                        "square-arrow-right-enter": "square-arrow-right-enter";
                        "square-arrow-right-exit": "square-arrow-right-exit";
                        "square-arrow-up": "square-arrow-up";
                        "square-arrow-up-left": "square-arrow-up-left";
                        "square-arrow-up-right": "square-arrow-up-right";
                        "square-asterisk": "square-asterisk";
                        "square-bottom-dashed-scissors": "square-bottom-dashed-scissors";
                        "square-centerline-dashed-horizontal": "square-centerline-dashed-horizontal";
                        "square-centerline-dashed-vertical": "square-centerline-dashed-vertical";
                        "square-chart-gantt": "square-chart-gantt";
                        "square-check": "square-check";
                        "square-check-big": "square-check-big";
                        "square-chevron-down": "square-chevron-down";
                        "square-chevron-left": "square-chevron-left";
                        "square-chevron-right": "square-chevron-right";
                        "square-chevron-up": "square-chevron-up";
                        "square-code": "square-code";
                        "square-dashed": "square-dashed";
                        "square-dashed-bottom": "square-dashed-bottom";
                        "square-dashed-bottom-code": "square-dashed-bottom-code";
                        "square-dashed-kanban": "square-dashed-kanban";
                        "square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
                        "square-dashed-top-solid": "square-dashed-top-solid";
                        "square-divide": "square-divide";
                        "square-dot": "square-dot";
                        "square-equal": "square-equal";
                        "square-function": "square-function";
                        "square-gantt-chart": "square-gantt-chart";
                        "square-kanban": "square-kanban";
                        "square-library": "square-library";
                        "square-m": "square-m";
                        "square-menu": "square-menu";
                        "square-minus": "square-minus";
                        "square-mouse-pointer": "square-mouse-pointer";
                        "square-parking": "square-parking";
                        "square-parking-off": "square-parking-off";
                        "square-pause": "square-pause";
                        "square-pen": "square-pen";
                        "square-percent": "square-percent";
                        "square-pi": "square-pi";
                        "square-pilcrow": "square-pilcrow";
                        "square-play": "square-play";
                        "square-plus": "square-plus";
                        "square-power": "square-power";
                        "square-radical": "square-radical";
                        "square-round-corner": "square-round-corner";
                        "square-scissors": "square-scissors";
                        "square-sigma": "square-sigma";
                        "square-slash": "square-slash";
                        "square-split-horizontal": "square-split-horizontal";
                        "square-split-vertical": "square-split-vertical";
                        "square-square": "square-square";
                        "square-stack": "square-stack";
                        "square-star": "square-star";
                        "square-stop": "square-stop";
                        "square-terminal": "square-terminal";
                        "square-user": "square-user";
                        "square-user-round": "square-user-round";
                        "square-x": "square-x";
                        "squares-exclude": "squares-exclude";
                        "squares-intersect": "squares-intersect";
                        "squares-subtract": "squares-subtract";
                        "squares-unite": "squares-unite";
                        squircle: "squircle";
                        "squircle-dashed": "squircle-dashed";
                        squirrel: "squirrel";
                        stamp: "stamp";
                        star: "star";
                        "star-half": "star-half";
                        "star-off": "star-off";
                        stars: "stars";
                        "step-back": "step-back";
                        "step-forward": "step-forward";
                        stethoscope: "stethoscope";
                        sticker: "sticker";
                        "sticky-note": "sticky-note";
                        stone: "stone";
                        "stop-circle": "stop-circle";
                        store: "store";
                        "stretch-horizontal": "stretch-horizontal";
                        "stretch-vertical": "stretch-vertical";
                        strikethrough: "strikethrough";
                        subscript: "subscript";
                        subtitles: "subtitles";
                        sun: "sun";
                        "sun-dim": "sun-dim";
                        "sun-medium": "sun-medium";
                        "sun-moon": "sun-moon";
                        "sun-snow": "sun-snow";
                        sunrise: "sunrise";
                        sunset: "sunset";
                        superscript: "superscript";
                        "swatch-book": "swatch-book";
                        "swiss-franc": "swiss-franc";
                        "switch-camera": "switch-camera";
                        sword: "sword";
                        swords: "swords";
                        syringe: "syringe";
                        table: "table";
                        "table-2": "table-2";
                        "table-cells-merge": "table-cells-merge";
                        "table-cells-split": "table-cells-split";
                        "table-columns-split": "table-columns-split";
                        "table-config": "table-config";
                        "table-of-contents": "table-of-contents";
                        "table-properties": "table-properties";
                        "table-rows-split": "table-rows-split";
                        tablet: "tablet";
                        "tablet-smartphone": "tablet-smartphone";
                        tablets: "tablets";
                        tag: "tag";
                        tags: "tags";
                        "tally-1": "tally-1";
                        "tally-2": "tally-2";
                        "tally-3": "tally-3";
                        "tally-4": "tally-4";
                        "tally-5": "tally-5";
                        tangent: "tangent";
                        target: "target";
                        telescope: "telescope";
                        tent: "tent";
                        "tent-tree": "tent-tree";
                        terminal: "terminal";
                        "terminal-square": "terminal-square";
                        "test-tube": "test-tube";
                        "test-tube-2": "test-tube-2";
                        "test-tube-diagonal": "test-tube-diagonal";
                        "test-tubes": "test-tubes";
                        text: "text";
                        "text-align-center": "text-align-center";
                        "text-align-end": "text-align-end";
                        "text-align-justify": "text-align-justify";
                        "text-align-start": "text-align-start";
                        "text-cursor": "text-cursor";
                        "text-cursor-input": "text-cursor-input";
                        "text-initial": "text-initial";
                        "text-quote": "text-quote";
                        "text-search": "text-search";
                        "text-select": "text-select";
                        "text-selection": "text-selection";
                        "text-wrap": "text-wrap";
                        theater: "theater";
                        thermometer: "thermometer";
                        "thermometer-snowflake": "thermometer-snowflake";
                        "thermometer-sun": "thermometer-sun";
                        "thumbs-down": "thumbs-down";
                        "thumbs-up": "thumbs-up";
                        ticket: "ticket";
                        "ticket-check": "ticket-check";
                        "ticket-minus": "ticket-minus";
                        "ticket-percent": "ticket-percent";
                        "ticket-plus": "ticket-plus";
                        "ticket-slash": "ticket-slash";
                        "ticket-x": "ticket-x";
                        tickets: "tickets";
                        "tickets-plane": "tickets-plane";
                        timer: "timer";
                        "timer-off": "timer-off";
                        "timer-reset": "timer-reset";
                        "toggle-left": "toggle-left";
                        "toggle-right": "toggle-right";
                        toilet: "toilet";
                        "tool-case": "tool-case";
                        toolbox: "toolbox";
                        tornado: "tornado";
                        torus: "torus";
                        touchpad: "touchpad";
                        "touchpad-off": "touchpad-off";
                        "towel-rack": "towel-rack";
                        "tower-control": "tower-control";
                        "toy-brick": "toy-brick";
                        tractor: "tractor";
                        "traffic-cone": "traffic-cone";
                        train: "train";
                        "train-front": "train-front";
                        "train-front-tunnel": "train-front-tunnel";
                        "train-track": "train-track";
                        "tram-front": "tram-front";
                        transgender: "transgender";
                        trash: "trash";
                        "trash-2": "trash-2";
                        "tree-deciduous": "tree-deciduous";
                        "tree-palm": "tree-palm";
                        "tree-pine": "tree-pine";
                        trees: "trees";
                        trello: "trello";
                        "trending-down": "trending-down";
                        "trending-up": "trending-up";
                        "trending-up-down": "trending-up-down";
                        triangle: "triangle";
                        "triangle-alert": "triangle-alert";
                        "triangle-dashed": "triangle-dashed";
                        "triangle-right": "triangle-right";
                        trophy: "trophy";
                        truck: "truck";
                        "truck-electric": "truck-electric";
                        "turkish-lira": "turkish-lira";
                        turntable: "turntable";
                        turtle: "turtle";
                        tv: "tv";
                        "tv-2": "tv-2";
                        "tv-minimal": "tv-minimal";
                        "tv-minimal-play": "tv-minimal-play";
                        twitch: "twitch";
                        twitter: "twitter";
                        type: "type";
                        "type-outline": "type-outline";
                        umbrella: "umbrella";
                        "umbrella-off": "umbrella-off";
                        underline: "underline";
                        undo: "undo";
                        "undo-2": "undo-2";
                        "undo-dot": "undo-dot";
                        "unfold-horizontal": "unfold-horizontal";
                        "unfold-vertical": "unfold-vertical";
                        ungroup: "ungroup";
                        university: "university";
                        unlink: "unlink";
                        "unlink-2": "unlink-2";
                        unlock: "unlock";
                        "unlock-keyhole": "unlock-keyhole";
                        unplug: "unplug";
                        upload: "upload";
                        "upload-cloud": "upload-cloud";
                        usb: "usb";
                        user: "user";
                        "user-2": "user-2";
                        "user-check": "user-check";
                        "user-check-2": "user-check-2";
                        "user-circle": "user-circle";
                        "user-circle-2": "user-circle-2";
                        "user-cog": "user-cog";
                        "user-cog-2": "user-cog-2";
                        "user-key": "user-key";
                        "user-lock": "user-lock";
                        "user-minus": "user-minus";
                        "user-minus-2": "user-minus-2";
                        "user-pen": "user-pen";
                        "user-plus": "user-plus";
                        "user-plus-2": "user-plus-2";
                        "user-round": "user-round";
                        "user-round-check": "user-round-check";
                        "user-round-cog": "user-round-cog";
                        "user-round-key": "user-round-key";
                        "user-round-minus": "user-round-minus";
                        "user-round-pen": "user-round-pen";
                        "user-round-plus": "user-round-plus";
                        "user-round-search": "user-round-search";
                        "user-round-x": "user-round-x";
                        "user-search": "user-search";
                        "user-square": "user-square";
                        "user-square-2": "user-square-2";
                        "user-star": "user-star";
                        "user-x": "user-x";
                        "user-x-2": "user-x-2";
                        users: "users";
                        "users-2": "users-2";
                        "users-round": "users-round";
                        utensils: "utensils";
                        "utensils-crossed": "utensils-crossed";
                        "utility-pole": "utility-pole";
                        van: "van";
                        variable: "variable";
                        vault: "vault";
                        "vector-square": "vector-square";
                        vegan: "vegan";
                        "venetian-mask": "venetian-mask";
                        venus: "venus";
                        "venus-and-mars": "venus-and-mars";
                        verified: "verified";
                        vibrate: "vibrate";
                        "vibrate-off": "vibrate-off";
                        video: "video";
                        "video-off": "video-off";
                        videotape: "videotape";
                        view: "view";
                        voicemail: "voicemail";
                        volleyball: "volleyball";
                        volume: "volume";
                        "volume-1": "volume-1";
                        "volume-2": "volume-2";
                        "volume-off": "volume-off";
                        "volume-x": "volume-x";
                        vote: "vote";
                        wallet: "wallet";
                        "wallet-2": "wallet-2";
                        "wallet-cards": "wallet-cards";
                        "wallet-minimal": "wallet-minimal";
                        wallpaper: "wallpaper";
                        wand: "wand";
                        "wand-2": "wand-2";
                        "wand-sparkles": "wand-sparkles";
                        warehouse: "warehouse";
                        "washing-machine": "washing-machine";
                        watch: "watch";
                        waves: "waves";
                        "waves-arrow-down": "waves-arrow-down";
                        "waves-arrow-up": "waves-arrow-up";
                        "waves-ladder": "waves-ladder";
                        waypoints: "waypoints";
                        webcam: "webcam";
                        webhook: "webhook";
                        "webhook-off": "webhook-off";
                        weight: "weight";
                        "weight-tilde": "weight-tilde";
                        wheat: "wheat";
                        "wheat-off": "wheat-off";
                        "whole-word": "whole-word";
                        wifi: "wifi";
                        "wifi-cog": "wifi-cog";
                        "wifi-high": "wifi-high";
                        "wifi-low": "wifi-low";
                        "wifi-off": "wifi-off";
                        "wifi-pen": "wifi-pen";
                        "wifi-sync": "wifi-sync";
                        "wifi-zero": "wifi-zero";
                        wind: "wind";
                        "wind-arrow-down": "wind-arrow-down";
                        wine: "wine";
                        "wine-off": "wine-off";
                        workflow: "workflow";
                        worm: "worm";
                        "wrap-text": "wrap-text";
                        wrench: "wrench";
                        x: "x";
                        "x-circle": "x-circle";
                        "x-line-top": "x-line-top";
                        "x-octagon": "x-octagon";
                        "x-square": "x-square";
                        youtube: "youtube";
                        zap: "zap";
                        "zap-off": "zap-off";
                        "zodiac-aquarius": "zodiac-aquarius";
                        "zodiac-aries": "zodiac-aries";
                        "zodiac-cancer": "zodiac-cancer";
                        "zodiac-capricorn": "zodiac-capricorn";
                        "zodiac-gemini": "zodiac-gemini";
                        "zodiac-leo": "zodiac-leo";
                        "zodiac-libra": "zodiac-libra";
                        "zodiac-ophiuchus": "zodiac-ophiuchus";
                        "zodiac-pisces": "zodiac-pisces";
                        "zodiac-sagittarius": "zodiac-sagittarius";
                        "zodiac-scorpio": "zodiac-scorpio";
                        "zodiac-taurus": "zodiac-taurus";
                        "zodiac-virgo": "zodiac-virgo";
                        "zoom-in": "zoom-in";
                        "zoom-out": "zoom-out";
                    }>>;
                    description: z.ZodOptional<z.ZodString>;
                    to: z.ZodString;
                    target: z.ZodOptional<z.ZodEnum<{
                        _self: "_self";
                        _blank: "_blank";
                    }>>;
                    display: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                        auth: "auth";
                        anon: "anon";
                        always: "always";
                        hide: "hide";
                    }>, z.ZodCustom<(params: {
                        context: ZudokuContext;
                        auth: UseAuthReturn;
                    }) => boolean, (params: {
                        context: ZudokuContext;
                        auth: UseAuthReturn;
                    }) => boolean>]>>;
                }, z.core.$strip>>;
            }, z.core.$strip>]>>;
        }, z.core.$strip>]>>>;
        placements: z.ZodOptional<z.ZodOptional<z.ZodObject<{
            navigation: z.ZodOptional<z.ZodEnum<{
                end: "end";
                center: "center";
                start: "start";
            }>>;
            search: z.ZodOptional<z.ZodEnum<{
                end: "end";
                center: "center";
                start: "start";
            }>>;
            auth: z.ZodOptional<z.ZodEnum<{
                navigation: "navigation";
                end: "end";
                center: "center";
                start: "start";
            }>>;
        }, z.core.$strip>>>;
    }, z.core.$strip>>>;
    navigation: z.ZodOptional<z.ZodArray<z.ZodType<import("./InputNavigationSchema.js").InputNavigationItem, unknown, z.core.$ZodTypeInternals<import("./InputNavigationSchema.js").InputNavigationItem, unknown>>>>;
    navigationRules: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
        type: z.ZodLiteral<"modify">;
        match: z.ZodString;
        set: z.ZodObject<{
            label: z.ZodOptional<z.ZodString>;
            icon: z.ZodOptional<z.ZodCustom<import("./icon-types.js").IconNames, import("./icon-types.js").IconNames>>;
            badge: z.ZodOptional<z.ZodObject<{
                label: z.ZodString;
                color: z.ZodEnum<{
                    green: "green";
                    blue: "blue";
                    yellow: "yellow";
                    red: "red";
                    purple: "purple";
                    indigo: "indigo";
                    gray: "gray";
                    outline: "outline";
                }>;
                invert: z.ZodOptional<z.ZodBoolean>;
                className: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>>;
            collapsed: z.ZodOptional<z.ZodBoolean>;
            collapsible: z.ZodOptional<z.ZodBoolean>;
            display: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                auth: "auth";
                anon: "anon";
                always: "always";
                hide: "hide";
            }>, z.ZodCustom<(params: {
                context: ZudokuContext;
                auth: UseAuthReturn;
            }) => boolean, (params: {
                context: ZudokuContext;
                auth: UseAuthReturn;
            }) => boolean>]>>;
        }, z.core.$strip>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"insert">;
        match: z.ZodString;
        position: z.ZodEnum<{
            before: "before";
            after: "after";
        }>;
        items: z.ZodLazy<z.ZodArray<z.ZodType<import("./InputNavigationSchema.js").InputNavigationItem, unknown, z.core.$ZodTypeInternals<import("./InputNavigationSchema.js").InputNavigationItem, unknown>>>>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"remove">;
        match: z.ZodString;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"sort">;
        match: z.ZodString;
        by: z.ZodCustom<(a: import("./NavigationSchema.js").SortableNavigationItem, b: import("./NavigationSchema.js").SortableNavigationItem) => number, (a: import("./NavigationSchema.js").SortableNavigationItem, b: import("./NavigationSchema.js").SortableNavigationItem) => number>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"move">;
        match: z.ZodString;
        to: z.ZodString;
        position: z.ZodEnum<{
            before: "before";
            after: "after";
        }>;
    }, z.core.$strip>], "type">>>>;
    theme: z.ZodOptional<z.ZodObject<{
        registryUrl: z.ZodOptional<z.ZodString>;
        customCss: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>>]>>>]>>;
        light: z.ZodOptional<z.ZodObject<{
            background: z.ZodOptional<z.ZodString>;
            foreground: z.ZodOptional<z.ZodString>;
            card: z.ZodOptional<z.ZodString>;
            cardForeground: z.ZodOptional<z.ZodString>;
            popover: z.ZodOptional<z.ZodString>;
            popoverForeground: z.ZodOptional<z.ZodString>;
            primary: z.ZodOptional<z.ZodString>;
            primaryForeground: z.ZodOptional<z.ZodString>;
            secondary: z.ZodOptional<z.ZodString>;
            secondaryForeground: z.ZodOptional<z.ZodString>;
            muted: z.ZodOptional<z.ZodString>;
            mutedForeground: z.ZodOptional<z.ZodString>;
            accent: z.ZodOptional<z.ZodString>;
            accentForeground: z.ZodOptional<z.ZodString>;
            destructive: z.ZodOptional<z.ZodString>;
            destructiveForeground: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            input: z.ZodOptional<z.ZodString>;
            ring: z.ZodOptional<z.ZodString>;
            radius: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>;
        dark: z.ZodOptional<z.ZodObject<{
            background: z.ZodOptional<z.ZodString>;
            foreground: z.ZodOptional<z.ZodString>;
            card: z.ZodOptional<z.ZodString>;
            cardForeground: z.ZodOptional<z.ZodString>;
            popover: z.ZodOptional<z.ZodString>;
            popoverForeground: z.ZodOptional<z.ZodString>;
            primary: z.ZodOptional<z.ZodString>;
            primaryForeground: z.ZodOptional<z.ZodString>;
            secondary: z.ZodOptional<z.ZodString>;
            secondaryForeground: z.ZodOptional<z.ZodString>;
            muted: z.ZodOptional<z.ZodString>;
            mutedForeground: z.ZodOptional<z.ZodString>;
            accent: z.ZodOptional<z.ZodString>;
            accentForeground: z.ZodOptional<z.ZodString>;
            destructive: z.ZodOptional<z.ZodString>;
            destructiveForeground: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            input: z.ZodOptional<z.ZodString>;
            ring: z.ZodOptional<z.ZodString>;
            radius: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>;
        fonts: z.ZodOptional<z.ZodObject<{
            sans: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                Inter: "Inter";
                Roboto: "Roboto";
                "Open Sans": "Open Sans";
                Poppins: "Poppins";
                Montserrat: "Montserrat";
                Outfit: "Outfit";
                "Plus Jakarta Sans": "Plus Jakarta Sans";
                "DM Sans": "DM Sans";
                "IBM Plex Sans": "IBM Plex Sans";
                Geist: "Geist";
                Oxanium: "Oxanium";
                "Architects Daughter": "Architects Daughter";
                Merriweather: "Merriweather";
                "Playfair Display": "Playfair Display";
                Lora: "Lora";
                "Source Serif Pro": "Source Serif Pro";
                "Libre Baskerville": "Libre Baskerville";
                "Space Grotesk": "Space Grotesk";
                "JetBrains Mono": "JetBrains Mono";
                "Fira Code": "Fira Code";
                "Source Code Pro": "Source Code Pro";
                "IBM Plex Mono": "IBM Plex Mono";
                "Roboto Mono": "Roboto Mono";
                "Space Mono": "Space Mono";
                "Geist Mono": "Geist Mono";
            }>, z.ZodObject<{
                url: z.ZodString;
                fontFamily: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>]>>;
            serif: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                Inter: "Inter";
                Roboto: "Roboto";
                "Open Sans": "Open Sans";
                Poppins: "Poppins";
                Montserrat: "Montserrat";
                Outfit: "Outfit";
                "Plus Jakarta Sans": "Plus Jakarta Sans";
                "DM Sans": "DM Sans";
                "IBM Plex Sans": "IBM Plex Sans";
                Geist: "Geist";
                Oxanium: "Oxanium";
                "Architects Daughter": "Architects Daughter";
                Merriweather: "Merriweather";
                "Playfair Display": "Playfair Display";
                Lora: "Lora";
                "Source Serif Pro": "Source Serif Pro";
                "Libre Baskerville": "Libre Baskerville";
                "Space Grotesk": "Space Grotesk";
                "JetBrains Mono": "JetBrains Mono";
                "Fira Code": "Fira Code";
                "Source Code Pro": "Source Code Pro";
                "IBM Plex Mono": "IBM Plex Mono";
                "Roboto Mono": "Roboto Mono";
                "Space Mono": "Space Mono";
                "Geist Mono": "Geist Mono";
            }>, z.ZodObject<{
                url: z.ZodString;
                fontFamily: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>]>>;
            mono: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
                Inter: "Inter";
                Roboto: "Roboto";
                "Open Sans": "Open Sans";
                Poppins: "Poppins";
                Montserrat: "Montserrat";
                Outfit: "Outfit";
                "Plus Jakarta Sans": "Plus Jakarta Sans";
                "DM Sans": "DM Sans";
                "IBM Plex Sans": "IBM Plex Sans";
                Geist: "Geist";
                Oxanium: "Oxanium";
                "Architects Daughter": "Architects Daughter";
                Merriweather: "Merriweather";
                "Playfair Display": "Playfair Display";
                Lora: "Lora";
                "Source Serif Pro": "Source Serif Pro";
                "Libre Baskerville": "Libre Baskerville";
                "Space Grotesk": "Space Grotesk";
                "JetBrains Mono": "JetBrains Mono";
                "Fira Code": "Fira Code";
                "Source Code Pro": "Source Code Pro";
                "IBM Plex Mono": "IBM Plex Mono";
                "Roboto Mono": "Roboto Mono";
                "Space Mono": "Space Mono";
                "Geist Mono": "Geist Mono";
            }>, z.ZodObject<{
                url: z.ZodString;
                fontFamily: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>]>>;
        }, z.core.$strip>>;
        noDefaultTheme: z.ZodOptional<z.ZodBoolean>;
    }, z.core.$strip>>;
    syntaxHighlighting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
        languages: z.ZodOptional<z.ZodArray<z.ZodCustom<BundledLanguage, BundledLanguage>>>;
        themes: z.ZodOptional<z.ZodObject<{
            light: z.ZodCustom<BundledTheme, BundledTheme>;
            dark: z.ZodCustom<BundledTheme, BundledTheme>;
        }, z.core.$strip>>;
    }, z.core.$strip>>>;
    metadata: z.ZodOptional<z.ZodObject<{
        title: z.ZodOptional<z.ZodString>;
        defaultTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
        description: z.ZodOptional<z.ZodString>;
        logo: z.ZodOptional<z.ZodString>;
        favicon: z.ZodOptional<z.ZodString>;
        generator: z.ZodOptional<z.ZodString>;
        applicationName: z.ZodOptional<z.ZodString>;
        referrer: z.ZodOptional<z.ZodString>;
        keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
        authors: z.ZodOptional<z.ZodArray<z.ZodString>>;
        creator: z.ZodOptional<z.ZodString>;
        publisher: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>;
    authentication: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
        type: z.ZodLiteral<"clerk">;
        clerkPubKey: z.ZodCustom<`pk_test_${string}` | `pk_live_${string}`, `pk_test_${string}` | `pk_live_${string}`>;
        jwtTemplateName: z.ZodDefault<z.ZodOptional<z.ZodString>>;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"firebase">;
        apiKey: z.ZodString;
        authDomain: z.ZodString;
        projectId: z.ZodString;
        storageBucket: z.ZodOptional<z.ZodString>;
        messagingSenderId: z.ZodOptional<z.ZodString>;
        appId: z.ZodString;
        measurementId: z.ZodOptional<z.ZodString>;
        providers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
            apple: "apple";
            facebook: "facebook";
            github: "github";
            phone: "phone";
            twitter: "twitter";
            password: "password";
            google: "google";
            microsoft: "microsoft";
            yahoo: "yahoo";
            emailLink: "emailLink";
        }>>>;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"openid">;
        basePath: z.ZodOptional<z.ZodString>;
        clientId: z.ZodString;
        issuer: z.ZodString;
        audience: z.ZodOptional<z.ZodString>;
        scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"azureb2c">;
        basePath: z.ZodOptional<z.ZodString>;
        clientId: z.ZodString;
        tenantName: z.ZodString;
        policyName: z.ZodString;
        scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
        issuer: z.ZodString;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"auth0">;
        clientId: z.ZodString;
        domain: z.ZodString;
        audience: z.ZodOptional<z.ZodString>;
        scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
        options: z.ZodOptional<z.ZodObject<{
            alwaysPromptLogin: z.ZodOptional<z.ZodBoolean>;
            prompt: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodLiteral<"supabase">;
        basePath: z.ZodOptional<z.ZodString>;
        supabaseUrl: z.ZodString;
        supabaseKey: z.ZodString;
        provider: z.ZodOptional<z.ZodString>;
        providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
        onlyThirdPartyProviders: z.ZodOptional<z.ZodBoolean>;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>, z.ZodObject<{
        type: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"dev-portal">>>;
        apiBaseUrl: z.ZodOptional<z.ZodString>;
        native: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        email: z.ZodOptional<z.ZodObject<{
            provider: z.ZodOptional<z.ZodString>;
            from: z.ZodOptional<z.ZodString>;
            connectionString: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>;
        providers: z.ZodOptional<z.ZodArray<z.ZodObject<{
            id: z.ZodString;
            displayName: z.ZodOptional<z.ZodString>;
            authority: z.ZodOptional<z.ZodString>;
            clientId: z.ZodOptional<z.ZodString>;
            clientSecret: z.ZodOptional<z.ZodString>;
            scopes: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>>;
        redirectToAfterSignUp: z.ZodOptional<z.ZodString>;
        redirectToAfterSignIn: z.ZodOptional<z.ZodString>;
        redirectToAfterSignOut: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>], "type">>;
    search: z.ZodOptional<z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
        type: z.ZodLiteral<"inkeep">;
        apiKey: z.ZodString;
        integrationId: z.ZodString;
        organizationId: z.ZodString;
        primaryBrandColor: z.ZodString;
        organizationDisplayName: z.ZodString;
    }, z.core.$loose>, z.ZodObject<{
        type: z.ZodLiteral<"pagefind">;
        ranking: z.ZodOptional<z.ZodObject<{
            termFrequency: z.ZodNumber;
            pageLength: z.ZodNumber;
            termSimilarity: z.ZodNumber;
            termSaturation: z.ZodNumber;
        }, z.core.$strip>>;
        maxResults: z.ZodOptional<z.ZodNumber>;
        maxSubResults: z.ZodOptional<z.ZodNumber>;
        transformResults: z.ZodOptional<z.ZodCustom<(data: {
            result: PagefindSearchFragment;
            auth: AuthState;
            context: ZudokuContext;
        }) => PagefindSearchFragment | boolean | undefined | void, (data: {
            result: PagefindSearchFragment;
            auth: AuthState;
            context: ZudokuContext;
        }) => PagefindSearchFragment | boolean | undefined | void>>;
    }, z.core.$strip>], "type">>>;
    docs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
        files: z.ZodDefault<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>, z.ZodTransform<string[], string | string[]>>>;
        publishMarkdown: z.ZodDefault<z.ZodBoolean>;
        defaultOptions: z.ZodOptional<z.ZodObject<{
            toc: z.ZodOptional<z.ZodBoolean>;
            copyPage: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
            disablePager: z.ZodOptional<z.ZodBoolean>;
            showLastModified: z.ZodOptional<z.ZodBoolean>;
            suggestEdit: z.ZodOptional<z.ZodOptional<z.ZodObject<{
                url: z.ZodString;
                text: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>>>;
        }, z.core.$strip>>;
        llms: z.ZodOptional<z.ZodObject<{
            llmsTxt: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
            llmsTxtFull: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
            includeProtected: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
        }, z.core.$strip>>;
    }, z.core.$strip>>>;
    modules: z.ZodOptional<z.ZodOptional<z.ZodObject<{
        docs: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
            files: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
            publishMarkdown: z.ZodOptional<z.ZodBoolean>;
            defaultOptions: z.ZodOptional<z.ZodObject<{
                toc: z.ZodOptional<z.ZodBoolean>;
                copyPage: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
                disablePager: z.ZodOptional<z.ZodBoolean>;
                showLastModified: z.ZodOptional<z.ZodBoolean>;
                suggestEdit: z.ZodOptional<z.ZodOptional<z.ZodObject<{
                    url: z.ZodString;
                    text: z.ZodOptional<z.ZodString>;
                }, z.core.$strip>>>;
            }, z.core.$strip>>;
            llms: z.ZodOptional<z.ZodObject<{
                llmsTxt: z.ZodOptional<z.ZodBoolean>;
                llmsTxtFull: z.ZodOptional<z.ZodBoolean>;
                includeProtected: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
        }, z.core.$strip>>;
        landing: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
            path: z.ZodDefault<z.ZodString>;
            component: z.ZodOptional<z.ZodCustom<ReactNode | ComponentType, ReactNode | ComponentType>>;
            page: z.ZodOptional<z.ZodString>;
            layout: z.ZodDefault<z.ZodEnum<{
                default: "default";
                none: "none";
                landing: "landing";
            }>>;
            content: z.ZodOptional<z.ZodObject<{
                hero: z.ZodOptional<z.ZodObject<{
                    title: z.ZodOptional<z.ZodString>;
                    titleAccent: z.ZodOptional<z.ZodString>;
                    subtitle: z.ZodOptional<z.ZodString>;
                    description: z.ZodOptional<z.ZodString>;
                    badge: z.ZodOptional<z.ZodString>;
                    highlights: z.ZodOptional<z.ZodArray<z.ZodString>>;
                    codeExample: z.ZodOptional<z.ZodObject<{
                        filename: z.ZodOptional<z.ZodString>;
                        language: z.ZodOptional<z.ZodString>;
                        code: z.ZodString;
                    }, z.core.$strip>>;
                }, z.core.$strip>>;
                featuresSection: z.ZodOptional<z.ZodObject<{
                    label: z.ZodOptional<z.ZodString>;
                    title: z.ZodOptional<z.ZodString>;
                    description: z.ZodOptional<z.ZodString>;
                }, z.core.$strip>>;
                features: z.ZodOptional<z.ZodArray<z.ZodObject<{
                    title: z.ZodString;
                    description: z.ZodString;
                    icon: z.ZodOptional<z.ZodString>;
                }, z.core.$strip>>>;
                primaryAction: z.ZodOptional<z.ZodObject<{
                    label: z.ZodString;
                    href: z.ZodString;
                }, z.core.$strip>>;
                secondaryAction: z.ZodOptional<z.ZodObject<{
                    label: z.ZodString;
                    href: z.ZodString;
                }, z.core.$strip>>;
                trust: z.ZodOptional<z.ZodObject<{
                    enabled: z.ZodOptional<z.ZodBoolean>;
                    title: z.ZodOptional<z.ZodString>;
                    logos: z.ZodOptional<z.ZodArray<z.ZodString>>;
                }, z.core.$strip>>;
                apiShowcase: z.ZodOptional<z.ZodObject<{
                    enabled: z.ZodOptional<z.ZodBoolean>;
                    title: z.ZodOptional<z.ZodString>;
                    subtitle: z.ZodOptional<z.ZodString>;
                    browseAllHref: z.ZodOptional<z.ZodString>;
                    browseAllLabel: z.ZodOptional<z.ZodString>;
                    autoFromOpenApi: z.ZodOptional<z.ZodBoolean>;
                    items: z.ZodOptional<z.ZodArray<z.ZodObject<{
                        name: z.ZodString;
                        path: z.ZodString;
                        icon: z.ZodOptional<z.ZodString>;
                        latency: z.ZodOptional<z.ZodString>;
                        summary: z.ZodOptional<z.ZodString>;
                    }, z.core.$strip>>>;
                }, z.core.$strip>>;
                pricingCta: z.ZodOptional<z.ZodObject<{
                    enabled: z.ZodOptional<z.ZodBoolean>;
                    title: z.ZodOptional<z.ZodString>;
                    description: z.ZodOptional<z.ZodString>;
                    primaryAction: z.ZodOptional<z.ZodObject<{
                        label: z.ZodString;
                        href: z.ZodString;
                    }, z.core.$strip>>;
                    secondaryAction: z.ZodOptional<z.ZodObject<{
                        label: z.ZodString;
                        href: z.ZodString;
                    }, z.core.$strip>>;
                }, z.core.$strip>>;
                footer: z.ZodOptional<z.ZodObject<{
                    enabled: z.ZodOptional<z.ZodBoolean>;
                    brand: z.ZodOptional<z.ZodObject<{
                        name: z.ZodOptional<z.ZodString>;
                        tagline: z.ZodOptional<z.ZodString>;
                        logoSrc: z.ZodOptional<z.ZodString>;
                    }, z.core.$strip>>;
                    columns: z.ZodOptional<z.ZodArray<z.ZodObject<{
                        title: z.ZodString;
                        links: z.ZodArray<z.ZodObject<{
                            label: z.ZodString;
                            href: z.ZodString;
                        }, z.core.$strip>>;
                    }, z.core.$strip>>>;
                    copyright: z.ZodOptional<z.ZodString>;
                    social: z.ZodOptional<z.ZodArray<z.ZodObject<{
                        icon: z.ZodString;
                        href: z.ZodString;
                        label: z.ZodOptional<z.ZodString>;
                    }, z.core.$strip>>>;
                }, z.core.$strip>>;
                showPoweredBy: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            useDefaults: z.ZodOptional<z.ZodBoolean>;
        }, z.core.$strip>>;
        userPanel: z.ZodOptional<z.ZodObject<{
            enabled: z.ZodOptional<z.ZodBoolean>;
            basePath: z.ZodDefault<z.ZodString>;
            dashboard: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
                path: z.ZodDefault<z.ZodString>;
                page: z.ZodOptional<z.ZodString>;
                component: z.ZodOptional<z.ZodCustom<ReactNode | ComponentType, ReactNode | ComponentType>>;
                content: z.ZodOptional<z.ZodObject<{
                    title: z.ZodOptional<z.ZodString>;
                    subtitle: z.ZodOptional<z.ZodString>;
                    description: z.ZodOptional<z.ZodString>;
                    quickLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
                        label: z.ZodString;
                        href: z.ZodString;
                    }, z.core.$strip>>>;
                }, z.core.$strip>>;
            }, z.core.$strip>>;
            userManagement: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
                routes: z.ZodOptional<z.ZodObject<{
                    login: z.ZodOptional<z.ZodDefault<z.ZodString>>;
                    register: z.ZodOptional<z.ZodDefault<z.ZodString>>;
                    profile: z.ZodOptional<z.ZodDefault<z.ZodString>>;
                    logout: z.ZodOptional<z.ZodDefault<z.ZodString>>;
                }, z.core.$strip>>;
                page: z.ZodOptional<z.ZodString>;
                component: z.ZodOptional<z.ZodCustom<ReactNode | ComponentType, ReactNode | ComponentType>>;
                content: z.ZodOptional<z.ZodObject<{
                    title: z.ZodOptional<z.ZodString>;
                    description: z.ZodOptional<z.ZodString>;
                }, z.core.$strip>>;
            }, z.core.$strip>>;
            apiKeys: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
                path: z.ZodDefault<z.ZodString>;
            }, z.core.$strip>>;
            plans: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
                path: z.ZodDefault<z.ZodString>;
                page: z.ZodOptional<z.ZodString>;
                component: z.ZodOptional<z.ZodCustom<ReactNode | ComponentType, ReactNode | ComponentType>>;
                content: z.ZodOptional<z.ZodObject<{
                    title: z.ZodOptional<z.ZodString>;
                    description: z.ZodOptional<z.ZodString>;
                    tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
                        name: z.ZodString;
                        price: z.ZodOptional<z.ZodString>;
                        description: z.ZodOptional<z.ZodString>;
                    }, z.core.$strip>>>;
                }, z.core.$strip>>;
                items: z.ZodOptional<z.ZodArray<z.ZodObject<{
                    sku: z.ZodString;
                    displayName: z.ZodString;
                    priceAmount: z.ZodDefault<z.ZodNumber>;
                    priceCurrency: z.ZodOptional<z.ZodString>;
                    billingPeriod: z.ZodOptional<z.ZodString>;
                    limitsJson: z.ZodOptional<z.ZodString>;
                    includedActionKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
                }, z.core.$strip>>>;
            }, z.core.$strip>>;
        }, z.core.$strip>>;
    }, z.core.$strip>>>;
    apis: z.ZodOptional<z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.ZodObject<{
        server: z.ZodOptional<z.ZodString>;
        path: z.ZodOptional<z.ZodString>;
        categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            tags: z.ZodArray<z.ZodString>;
        }, z.core.$strip>>>;
        options: z.ZodOptional<z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>>;
        type: z.ZodLiteral<"url">;
        input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
            path: z.ZodString;
            input: z.ZodString;
            label: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>]>;
    }, z.core.$strip>, z.ZodObject<{
        server: z.ZodOptional<z.ZodString>;
        path: z.ZodOptional<z.ZodString>;
        categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            tags: z.ZodArray<z.ZodString>;
        }, z.core.$strip>>>;
        options: z.ZodOptional<z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>>;
        type: z.ZodLiteral<"file">;
        input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
            path: z.ZodString;
            input: z.ZodString;
            label: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>]>>]>;
    }, z.core.$strip>, z.ZodObject<{
        server: z.ZodOptional<z.ZodString>;
        path: z.ZodOptional<z.ZodString>;
        categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            tags: z.ZodArray<z.ZodString>;
        }, z.core.$strip>>>;
        options: z.ZodOptional<z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>>;
        type: z.ZodLiteral<"raw">;
        input: z.ZodString;
    }, z.core.$strip>], "type">, z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
        server: z.ZodOptional<z.ZodString>;
        path: z.ZodOptional<z.ZodString>;
        categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            tags: z.ZodArray<z.ZodString>;
        }, z.core.$strip>>>;
        options: z.ZodOptional<z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>>;
        type: z.ZodLiteral<"url">;
        input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
            path: z.ZodString;
            input: z.ZodString;
            label: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>>]>;
    }, z.core.$strip>, z.ZodObject<{
        server: z.ZodOptional<z.ZodString>;
        path: z.ZodOptional<z.ZodString>;
        categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            tags: z.ZodArray<z.ZodString>;
        }, z.core.$strip>>>;
        options: z.ZodOptional<z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>>;
        type: z.ZodLiteral<"file">;
        input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
            path: z.ZodString;
            input: z.ZodString;
            label: z.ZodOptional<z.ZodString>;
        }, z.core.$strip>]>>]>;
    }, z.core.$strip>, z.ZodObject<{
        server: z.ZodOptional<z.ZodString>;
        path: z.ZodOptional<z.ZodString>;
        categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
            label: z.ZodString;
            tags: z.ZodArray<z.ZodString>;
        }, z.core.$strip>>>;
        options: z.ZodOptional<z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>>;
        type: z.ZodLiteral<"raw">;
        input: z.ZodString;
    }, z.core.$strip>], "type">>]>>;
    catalogs: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
        path: z.ZodString;
        label: z.ZodString;
        items: z.ZodOptional<z.ZodArray<z.ZodString>>;
        filterItems: z.ZodOptional<z.ZodCustom<FilterCatalogItemsFn, FilterCatalogItemsFn>>;
    }, z.core.$strip>, z.ZodArray<z.ZodObject<{
        path: z.ZodString;
        label: z.ZodString;
        items: z.ZodOptional<z.ZodArray<z.ZodString>>;
        filterItems: z.ZodOptional<z.ZodCustom<FilterCatalogItemsFn, FilterCatalogItemsFn>>;
    }, z.core.$strip>>]>>;
    apiKeys: z.ZodOptional<z.ZodObject<{
        enabled: z.ZodBoolean;
        getConsumers: z.ZodOptional<z.ZodCustom<(context: ZudokuContext) => Promise<ApiConsumer[]>, (context: ZudokuContext) => Promise<ApiConsumer[]>>>;
        rollKey: z.ZodOptional<z.ZodCustom<(id: string, context: ZudokuContext) => Promise<void>, (id: string, context: ZudokuContext) => Promise<void>>>;
        deleteKey: z.ZodOptional<z.ZodCustom<(consumerId: string, keyId: string, context: ZudokuContext) => Promise<void>, (consumerId: string, keyId: string, context: ZudokuContext) => Promise<void>>>;
        updateKeyDescription: z.ZodOptional<z.ZodCustom<(apiKey: {
            id: string;
            description: string;
        }, context: ZudokuContext) => Promise<void>, (apiKey: {
            id: string;
            description: string;
        }, context: ZudokuContext) => Promise<void>>>;
        createKey: z.ZodOptional<z.ZodCustom<({ apiKey, context, auth, }: {
            apiKey: {
                description: string;
                expiresOn?: string;
            };
            context: ZudokuContext;
            auth: UseAuthReturn;
        }) => Promise<void>, ({ apiKey, context, auth, }: {
            apiKey: {
                description: string;
                expiresOn?: string;
            };
            context: ZudokuContext;
            auth: UseAuthReturn;
        }) => Promise<void>>>;
    }, z.core.$strip>>;
    aiAssistants: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodArray<z.ZodUnion<readonly [z.ZodEnum<{
        claude: "claude";
        chatgpt: "chatgpt";
    }>, z.ZodObject<{
        label: z.ZodString;
        icon: z.ZodOptional<z.ZodCustom<ReactNode, ReactNode>>;
        url: z.ZodUnion<readonly [z.ZodString, z.ZodCustom<(context: {
            pageUrl: string;
            type: "docs" | "openapi";
        }) => string, (context: {
            pageUrl: string;
            type: "docs" | "openapi";
        }) => string>]>;
    }, z.core.$strip>]>>]>>>;
    redirects: z.ZodOptional<z.ZodArray<z.ZodObject<{
        from: z.ZodString;
        to: z.ZodString;
    }, z.core.$strip>>>;
    sitemap: z.ZodOptional<z.ZodOptional<z.ZodObject<{
        siteUrl: z.ZodString;
        changefreq: z.ZodOptional<z.ZodEnum<{
            never: "never";
            always: "always";
            hourly: "hourly";
            daily: "daily";
            weekly: "weekly";
            monthly: "monthly";
            yearly: "yearly";
        }>>;
        priority: z.ZodOptional<z.ZodNumber>;
        outDir: z.ZodOptional<z.ZodString>;
        autoLastmod: z.ZodOptional<z.ZodBoolean>;
        exclude: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<() => Promise<string[]>, () => Promise<string[]>>, z.ZodArray<z.ZodString>]>>;
    }, z.core.$strip>>>;
    enableStatusPages: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
    defaults: z.ZodOptional<z.ZodObject<{
        apis: z.ZodObject<{
            examplesLanguage: z.ZodOptional<z.ZodString>;
            supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodObject<{
                value: z.ZodString;
                label: z.ZodString;
            }, z.core.$strip>>>;
            disablePlayground: z.ZodOptional<z.ZodBoolean>;
            disableSidecar: z.ZodOptional<z.ZodBoolean>;
            showVersionSelect: z.ZodOptional<z.ZodEnum<{
                always: "always";
                hide: "hide";
                "if-available": "if-available";
            }>>;
            expandAllTags: z.ZodOptional<z.ZodBoolean>;
            showInfoPage: z.ZodOptional<z.ZodBoolean>;
            schemaDownload: z.ZodOptional<z.ZodObject<{
                enabled: z.ZodOptional<z.ZodBoolean>;
            }, z.core.$strip>>;
            transformExamples: z.ZodOptional<z.ZodCustom<TransformExamplesFn, TransformExamplesFn>>;
            generateCodeSnippet: z.ZodOptional<z.ZodCustom<GenerateCodeSnippetFn, GenerateCodeSnippetFn>>;
        }, z.core.$strip>;
        examplesLanguage: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>>;
    __pluginDirs: z.ZodOptional<z.ZodArray<z.ZodString>>;
}, z.core.$strip>;
export type ZudokuApiConfig = z.infer<typeof ApiSchema>;
export type VersionConfig = z.infer<typeof VersionConfigSchema>;
export type ZudokuSiteMapConfig = z.infer<typeof SiteMapSchema>;
export type ZudokuDocsConfig = z.infer<typeof DocsConfigSchema>;
export type { ModulesConfig } from "./ModulesSchema.js";
export type { ResolvedModulesConfig, DocsModuleConfig, LandingModuleConfig, LandingContentConfig, LandingFeatureConfig, LandingLinkConfig, ResolvedLandingContent, ResolvedDashboardContent, ResolvedProfileContent, ResolvedPlansContent, ResolvedLandingModule, ResolvedUserPanelModule, ResolvedDashboardModule, ResolvedUserManagementModule, ResolvedApiKeysModule, ResolvedPlansModule, UserPanelModuleConfig, DashboardModuleConfig, UserManagementModuleConfig, ApiKeysModuleConfig, PlansModuleConfig, DashboardContentConfig, ProfileContentConfig, PlansContentConfig, PlanTierConfig, } from "./ModulesSchema.js";
export type ZudokuLlmsConfig = z.infer<typeof LlmsConfigSchema>;
export type ZudokuRedirect = z.infer<typeof Redirect>;
export type AuthenticationConfig = z.infer<typeof AuthenticationSchema>;
type BaseZudokuConfig = z.input<typeof ZudokuConfig>;
export type ZudokuConfig = Omit<BaseZudokuConfig, "header" | "navigation" | "navigationRules"> & {
    header?: {
        navigation?: z.infer<typeof HeaderNavigationSchema>;
        placements?: {
            navigation?: "start" | "center" | "end";
            search?: "start" | "center" | "end";
            auth?: "start" | "center" | "end" | "navigation";
        };
    };
    navigation?: z.infer<typeof InputNavigationSchema>;
    navigationRules?: z.infer<typeof NavigationRulesSchema>;
};
export declare function validateConfig(config: unknown, configPath?: string): void;
