interaction: Readonly<
    {
        disableTapHighlight: Readonly<
            {
                "-webkit-tap-highlight-color": StyleXClassNameFor<
                    "-webkit-tap-highlight-color",
                    "transparent",
                >;
                userSelect: StyleXClassNameFor<"userSelect", "none">;
            },
        >;
        hideInput: Readonly<
            {
                height: StyleXClassNameFor<"height", "1px">;
                opacity: StyleXClassNameFor<"opacity", 0>;
                pointerEvents: StyleXClassNameFor<"pointerEvents", "none">;
                position: StyleXClassNameFor<"position", "absolute">;
                width: StyleXClassNameFor<"width", "1px">;
            },
        >;
        hideScrollbar: Readonly<
            {
                "::-webkit-scrollbar": StyleXClassNameFor<
                    "::-webkit-scrollbar",
                    { display: "none" },
                >;
                "::-webkit-scrollbar-thumb": StyleXClassNameFor<
                    "::-webkit-scrollbar-thumb",
                    { backgroundColor: "transparent" },
                >;
                "::-webkit-scrollbar-track": StyleXClassNameFor<
                    "::-webkit-scrollbar-track",
                    { background: "transparent" },
                >;
                scrollbarColor: StyleXClassNameFor<
                    "scrollbarColor",
                    "transparent transparent",
                >;
                scrollbarWidth: StyleXClassNameFor<"scrollbarWidth", "thin">;
            },
        >;
        inert: Readonly<
            {
                pointerEvents: StyleXClassNameFor<"pointerEvents", "none">;
                touchAction: StyleXClassNameFor<"touchAction", "none">;
                userSelect: StyleXClassNameFor<"userSelect", "none">;
            },
        >;
    },
> = ...