[
  {
    "path": ".codesandbox/ci.json",
    "content": "{\n  \"node\": \"14\",\n  \"packages\": [\"packages/core\", \"packages/react\"],\n  \"sandboxes\": [\"7njqn\", \"2uwsq\"]\n}\n"
  },
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\nend_of_line = lf\ninsert_final_newline = true\nindent_style = tab\ntrim_trailing_whitespace = true\n\n[*.md]\ntrim_trailing_whitespace = false\n\n[*.{json,md,yml}]\nindent_size = 2\nindent_style = space\n"
  },
  {
    "path": ".github/CODEOWNERS",
    "content": "# Learn how to add code owners here:\n# https://help.github.com/en/articles/about-code-owners\n\n* @jonathantneal @peduarte\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n---\n\n# Bug report\n\n## Describe the bug\n\nA clear and concise description of what the bug is.\n\n## To Reproduce\n\nSteps to reproduce the behavior, please provide code snippets or a repository:\n\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n## Expected behavior\n\nA clear and concise description of what you expected to happen.\n\n## Screenshots\n\nIf applicable, add screenshots to help explain your problem.\n\n## System information\n\n- OS: [e.g. macOS, Windows]\n- Browser (if applies) [e.g. chrome, safari]\n- Version of Stitches: [e.g. 0.0.2]\n- Version of Node.js: [e.g. 10.10.0]\n\n## Additional context\n\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: CI\non: push\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - uses: actions/setup-node@v2\n        with:\n          node-version: '16'\n      - name: Install modules\n        run: yarn\n      - name: Run tests\n        run: yarn test\n"
  },
  {
    "path": ".gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\nlerna-debug.log*\nes\nlib\n.DS_Store\n\n# Diagnostic reports (https://nodejs.org/api/report.html)\nreport.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json\n\n# Runtime data\npids\npackage-lock.json\nyarn.lock\n*.pid\n*.seed\n*.pid.lock\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n*.lcov\n\n# nyc test coverage\n.nyc_output\n\n# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# Bower dependency directory (https://bower.io/)\nbower_components\n\n# node-waf configuration\n.lock-wscript\n\n# Compiled binary addons (https://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directories\nnode_modules/\njspm_packages/\npackages/*/utils/\n\n# TypeScript v1 declaration files\ntypings/\n\n# TypeScript cache\n*.tsbuildinfo\n\n# Optional npm cache directory\n.npm\n\n# Optional eslint cache\n.eslintcache\n\n# Microbundle cache\n.rpt2_cache/\n.rts2_cache_cjs/\n.rts2_cache_es/\n.rts2_cache_umd/\n\n# Optional REPL history\n.node_repl_history\n\n# Output of 'npm pack'\n*.tgz\n\n# Yarn Integrity file\n.yarn-integrity\n\n# dotenv environment variables file\n.env\n.env.test\n\n# parcel-bundler cache (https://parceljs.org/)\n.cache\n\n# Next.js build output\n.next\n\n# Nuxt.js build / generate output\n.nuxt\ndist\n\n# Gatsby files\n.cache/\n# Comment in the public line in if your project uses Gatsby and *not* Next.js\n# https://nextjs.org/blog/next-9-1#public-directory-support\n# public\n\n# vuepress build output\n.vuepress/dist\n\n# Serverless directories\n.serverless/\n\n# FuseBox cache\n.fusebox/\n\n# DynamoDB Local files\n.dynamodb/\n\n# TernJS port file\n.tern-port\n\n# IntelliJ\n.idea/\n"
  },
  {
    "path": ".npmrc",
    "content": "package-lock = false\n\nsave-exact = true\n"
  },
  {
    "path": ".task/build-csstype.js",
    "content": "import * as fs from './internal/fs.js'\nimport URL from './internal/url.js'\n\nconst rootUrl = URL.from(import.meta.url).to('../')\nconst dtsOriginalURL = rootUrl.to('./node_modules/csstype/index.d.ts')\n\nconst generateType = async (packageUrl) => {\n\tconst dtsOriginalTxt = await fs.readFile(dtsOriginalURL, 'utf8')\n\n\tconst dtsModifiedURL = packageUrl.to('types/css.d.ts')\n\tconsole.log(dtsModifiedURL.pathname)\n\n\tconst dtsModifiedTxt = new ModifiedString(dtsOriginalTxt)\n\t\t.withoutVendorTyping\n\n\t\t.withCamelCasedColors\n\n\t\t.withAddedLicense\n\n\t\t.withAddedColorFunctions\n\t\t.withFixedColorScheme\n\t\t.withFixedFontFamily\n\t\t.withFixedMatchingSelector\n\t\t.withFixedNestingSelectors\n\t\t.withFixedProperties\n\t\t.withFixedPropertyAtRule\n\t\t.withFixedStretchValue\n\t\t.withFixedSystemColor\n\n\t\t.withoutBrowserComments\n\t\t.withoutImplicitGlobals\n\t\t.withoutPropertyValueTyping\n\t\t.withoutGenericTyping\n\t\t.withoutNarrowingPatch\n\t\t.withoutNeverInChain\n\t\t.withoutTrailingSpace\n\t.toString()\n\n\tawait fs.writeFile(dtsModifiedURL, dtsModifiedTxt)\n}\n\nconst generateTypes = async () => {\n\tawait generateType(rootUrl.to('packages/core/'))\n\tawait generateType(rootUrl.to('packages/react/'))\n}\n\nclass ModifiedString extends String {\n\treplace(matcher, replacer) {\n\t\treplacer = typeof replacer === 'function' ? replacer : replacer\n\t\treturn new ModifiedString(super.replace(matcher, replacer))\n\t}\n\n\t// with\n\n\tget withAddedColorFunctions() {\n\t\treturn this.replace(\n\t\t\t/\"CurrentColor\"/g,\n\t\t\t'\"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\"'\n\t\t)\n\t}\n\n\tget withAddedLicense() {\n\t\tconst licenseComment = `/** @license MIT License\\n * Copyright (c) 2017-present, Fredrik Nicol\\n * Copyright (c) 2021-present, Jonathan Neal\\n *\\n * Permission is hereby granted, free of charge, to any person obtaining a copy\\n * of this software and associated documentation files (the \"Software\"), to deal\\n * in the Software without restriction, including without limitation the rights\\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\n * copies of the Software, and to permit persons to whom the Software is\\n * furnished to do so, subject to the following conditions:\\n *\\n * The above copyright notice and this permission notice shall be included in\\n * all copies or substantial portions of the Software.\\n *\\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\n * SOFTWARE.\\n */`\n\n\t\treturn this.replace(\n\t\t\t/^/,\n\t\t\t`${licenseComment}\\n\\n`\n\t\t)\n\t}\n\n\tget withCamelCasedColors() {\n\t\tconst cssColorNames = ['AliceBlue', 'AntiqueWhite', 'Aqua', 'Aquamarine', 'Azure', 'Beige', 'Bisque', 'Black', 'BlanchedAlmond', 'Blue', 'BlueViolet', 'Brown', 'BurlyWood', 'CadetBlue', 'Chartreuse', 'Chocolate', 'Coral', 'CornflowerBlue', 'Cornsilk', 'CurrentColor', 'Crimson', 'Cyan', 'DarkBlue', 'DarkCyan', 'DarkGoldenRod', 'DarkGray', 'DarkGrey', 'DarkGreen', 'DarkKhaki', 'DarkMagenta', 'DarkOliveGreen', 'DarkOrange', 'DarkOrchid', 'DarkRed', 'DarkSalmon', 'DarkSeaGreen', 'DarkSlateBlue', 'DarkSlateGray', 'DarkSlateGrey', 'DarkTurquoise', 'DarkViolet', 'DeepPink', 'DeepSkyBlue', 'DimGray', 'DimGrey', 'DodgerBlue', 'FireBrick', 'FloralWhite', 'ForestGreen', 'Fuchsia', 'Gainsboro', 'GhostWhite', 'Gold', 'GoldenRod', 'Gray', 'Grey', 'Green', 'GreenYellow', 'HoneyDew', 'HotPink', 'IndianRed', 'Indigo', 'Ivory', 'Khaki', 'Lavender', 'LavenderBlush', 'LawnGreen', 'LemonChiffon', 'LightBlue', 'LightCoral', 'LightCyan', 'LightGoldenRodYellow', 'LightGray', 'LightGrey', 'LightGreen', 'LightPink', 'LightSalmon', 'LightSeaGreen', 'LightSkyBlue', 'LightSlateGray', 'LightSlateGrey', 'LightSteelBlue', 'LightYellow', 'Lime', 'LimeGreen', 'Linen', 'Magenta', 'Maroon', 'MediumAquaMarine', 'MediumBlue', 'MediumOrchid', 'MediumPurple', 'MediumSeaGreen', 'MediumSlateBlue', 'MediumSpringGreen', 'MediumTurquoise', 'MediumVioletRed', 'MidnightBlue', 'MintCream', 'MistyRose', 'Moccasin', 'NavajoWhite', 'Navy', 'OldLace', 'Olive', 'OliveDrab', 'Orange', 'OrangeRed', 'Orchid', 'PaleGoldenRod', 'PaleGreen', 'PaleTurquoise', 'PaleVioletRed', 'PapayaWhip', 'PeachPuff', 'Peru', 'Pink', 'Plum', 'PowderBlue', 'Purple', 'RebeccaPurple', 'Red', 'RosyBrown', 'RoyalBlue', 'SaddleBrown', 'Salmon', 'SandyBrown', 'SeaGreen', 'SeaShell', 'Sienna', 'Silver', 'SkyBlue', 'SlateBlue', 'SlateGray', 'SlateGrey', 'Snow', 'SpringGreen', 'SteelBlue', 'Tan', 'Teal', 'Thistle', 'Tomato', 'Turquoise', 'Violet', 'Wheat', 'White', 'WhiteSmoke', 'Yellow', 'YellowGreen'].reduce(\n\t\t\t(colors, UpperCamelCaseColorName) =>\n\t\t\t\tObject.assign(colors, {\n\t\t\t\t\t[`\"${UpperCamelCaseColorName.toLowerCase()}\"`]: `\"${UpperCamelCaseColorName}\"`,\n\t\t\t\t}),\n\t\t\tObject.create(null),\n\t\t)\n\n\t\treturn this.replace(\n\t\t\tRegExp(Object.keys(cssColorNames).join('|'), 'ig'),\n\t\t\t$0 => cssColorNames[$0.toLowerCase()]\n\t\t)\n\t}\n\n\tget withFixedColorScheme() {\n\t\treturn this.replace(\n\t\t\t'type ColorScheme = Globals | \"dark\" | \"light\" | \"normal\"',\n\t\t\t'type ColorScheme = Globals | \"dark\" | \"light\" | \"light dark\" | \"normal\"'\n\t\t)\n\t}\n\n\tget withFixedFontFamily() {\n\t\treturn this.replace(\n\t\t\t'type GenericFamily = \"cursive\" | \"fantasy\" | \"monospace\" | \"sans-serif\" | \"serif\"',\n\t\t\t'type GenericFamily = \"cursive\" | \"emoji\" | \"fangsong\" | \"fantasy\" | \"math\" | \"monospace\" | \"sans-serif\" | \"serif\" | \"system-ui\" | \"ui-monospace\" | \"ui-rounded\" | \"ui-sans-serif\" | \"ui-serif\"'\n\t\t)\n\t}\n\n\tget withFixedNestingSelectors() {\n\t\treturn this.replace(\n\t\t\t/Pseudos =[\\W\\w]+?;/g,\n\t\t\tfragment => fragment.replace(\n\t\t\t\t/\":/g,\n\t\t\t\t'\"&:'\n\t\t\t).replace(\n\t\t\t\t/  \\| \"&:matches\"\\n/,\n\t\t\t\t''\n\t\t\t)\n\t\t).replace(\n\t\t\t/AdvancedPseudos =[\\W\\w]+?;/g,\n\t\t\tfragment => fragment.replace(\n\t\t\t\t/\"&[^\"]+/g,\n\t\t\t\t'$&('\n\t\t\t)\n\t\t)\n\t}\n\n\tget withFixedProperties() {\n\t\treturn this.replace(\n\t\t\t'type ZIndex = Globals | \"auto\" | (number & {})',\n\t\t\t'type ZIndex = Globals | \"auto\" | (number & {}) | (string & {})'\n\t\t).replace(\n\t\t\t'type LetterSpacing<TLength = (string & {}) | 0> = Globals | TLength | \"normal\"',\n\t\t\t'type LetterSpacing = Globals | \"normal\" | (number & {}) | (string & {})'\n\t\t).replace(\n\t\t\t/Property.LetterSpacing<TLength>/g,\n\t\t\t'Property.LetterSpacing'\n\t\t).replace(\n\t\t\t'FontWeightAbsolute = \"bold\" | \"normal\"',\n\t\t\t'FontWeightAbsolute = \"bold\" | \"normal\" | (string & {})'\n\t\t).replace(\n\t\t\t'DataType.FontWeightAbsolute | (string & {})',\n\t\t\t'DataType.FontWeightAbsolute'\n\t\t).replace(\n\t\t\t'FlexGrow = Globals | (number & {})',\n\t\t\t'FlexGrow = Globals | (number & {}) | (string & {})'\n\t\t)\n\t}\n\n\tget withFixedPropertyAtRule() {\n\t\treturn this.replace(\n\t\t\t'type Inherits = \"false\" | \"true\";',\n\t\t\t'type Inherits = \"false\" | \"true\" | boolean;'\n\t\t).replace(\n\t\t\t'initialValue?: string;',\n\t\t\t'initialValue?: boolean | number | string',\n\t\t)\n\t}\n\n\tget withFixedMatchingSelector() {\n\t\treturn this.replace(\n\t\t\t/matches\\(\\)/g,\n\t\t\t'matches'\n\t\t)\n\t}\n\n\tget withFixedStretchValue() {\n\t\treturn this.replace(\n\t\t\t/(\\n +\\| +)?\"fit-content\"/g,\n\t\t\t($0, $1) => $1 ? `${$1}\"stretch\"${$1}\"fit-content\"` : '\"stretch\" | \"fit-content\"'\n\t\t)\n\t}\n\n\tget withFixedSystemColor() {\n\t\treturn this.replace(\n\t\t\t/type DeprecatedSystemColor[^;]+;/,\n\t\t\t'type DeprecatedSystemColor = \"ActiveText\" | \"ButtonFace\" | \"ButtonText\" | \"ButtonBorder\" | \"Canvas\" | \"CanvasText\" | \"Field\" | \"FieldText\" | \"GrayText\" | \"Highlight\" | \"HighlightText\" | \"LinkText\" | \"Mark\" | \"MarkText\" | \"VisitedText\"'\n\t\t).replace(\n\t\t\t/DeprecatedSystemColor/g,\n\t\t\t'SystemColor'\n\t\t)\n\t}\n\n\t// without\n\n\tget withoutGenericTyping() {\n\t\treturn this.replace(\n\t\t\t/\\n? *(<(TLength|TTime)[^>]*>)|\\| TTime|TTime \\|/g,\n\t\t\t''\n\t\t).replace(\n\t\t\t/\\| TLength/g,\n\t\t\t'| number'\n\t\t).replace(\n\t\t\t/TLength \\|/g,\n\t\t\t'number |'\n\t\t)\n\t}\n\n\tget withoutBrowserComments() {\n\t\treturn this.replace(\n\t\t\t/(?<=   )\\* [-_|][\\W\\w]+?(?=\\*\\/)/g,\n\t\t\t''\n\t\t)\n\t}\n\n\tget withoutImplicitGlobals() {\n\t\treturn this.replace(\n\t\t\t/\\n?( +\\| +)?(?<!type )Globals/g,\n\t\t\t'$1never'\n\t\t)\n\t}\n\n\tget withoutNarrowingPatch() {\n\t\treturn this.replace(\n\t\t\t/\\(number & \\{\\}\\)/g,\n\t\t\t'OnlyNumber'\n\t\t).replace(\n\t\t\t/\\(string & \\{\\}\\)/g,\n\t\t\t'OnlyString'\n\t\t)\n\t\t.replace(\n\t\t\t/number \\| \"([^\\n]+)\" \\| OnlyString/g,\n\t\t\t'\"$1\" | number | OnlyString'\n\t\t).replace(\n\t\t\t/((number|OnlyNumber) \\| (string|OnlyString)( \\| OnlyNumber)?|OnlyString \\| OnlyNumber)/g,\n\t\t\t'OnlyStringNumeric'\n\t\t).replace(\n\t\t\t/export namespace Property/,\n\t\t\t'export type OnlyObject = Record<never,never>\\n\\n' +\n\t\t\t'export type OnlyNumber = number & OnlyObject\\n\\n' +\n\t\t\t'export type OnlyString = string & OnlyObject\\n\\n' +\n\t\t\t'export type OnlyStringNumeric = (number | string) & OnlyObject\\n\\n' +\n\t\t\t'export namespace Property'\n\t\t)\n\t}\n\n\tget withoutNeverInChain() {\n\t\treturn this.replace(\n\t\t\t/(never \\| | \\| never)/g,\n\t\t\t''\n\t\t)\n\t}\n\n\tget withoutPropertyValueTyping() {\n\t\treturn this.replace(\n\t\t\t/export type PropertyValue[\\W\\w]+?;/,\n\t\t\t''\n\t\t)\n\t}\n\n\tget withoutTrailingSpace() {\n\t\treturn this.replace(\n\t\t\t/\\n? +(?=\\n)/g,\n\t\t\t''\n\t\t).replace(\n\t\t\t/\\n{4,}/g,\n\t\t\t'\\n\\n\\n'\n\t\t)\n\t}\n\n\tget withoutVendorTyping() {\n\t\treturn this.replace(\n\t\t\t/\\nexport (interface|type) (Obsolete|Vendor)[^\\n]+?\\{\\n[\\W\\w]+?\\n\\};?(?=\\n)/g, ''\n\t\t).replace(\n\t\t\t/\\nexport interface (Obsolete|Vendor)[^\\n]+?\\>\\n[\\W\\w]+?\\{\\};?(?=\\n)/g, ''\n\t\t).replace(\n\t\t\t/\\nexport interface (Obsolete|Vendor)[^\\n]+?{};?(?=\\n)/g, ''\n\t\t).replace(\n\t\t\t/\\n    (Obsolete|Vendor)[^\\n]+?,(?=\\n)/g, ''\n\t\t).replace(\n\t\t\t/\\n *\\| *\":*-[^\"]+\"/g, ''\n\t\t).replace(\n\t\t\t'\\n    \"-moz-font-feature-settings\"?: FontFeatureSettings;', ''\n\t\t).replace(\n\t\t\t/\\n? *\\| *\"-[^\"]+\"/g, ''\n\t\t).replace(\n\t\t\t/\"-[^\"]+\" *\\| *\\n?/g, ''\n\t\t).replace(\n\t\t\t/\\n? *\\| *\"-[^\\n]+(?=\\n)/g, ''\n\t\t).replace(\n\t\t\t/\\n    MozFontFeatureSettings?: FontFeatureSettings;/, ''\n\t\t)\n\t}\n}\n\ngenerateTypes()\n"
  },
  {
    "path": ".task/build.js",
    "content": "import * as fs from './internal/fs.js'\nimport * as js from './internal/js.js'\nimport URL from './internal/url.js'\nimport { box } from './internal/color.js'\nimport { transformDestructuring } from './internal/js.transformDestructuring.js'\nimport { transformModulesToCJS } from './internal/js.transformModulesToCJS.js'\nimport { transformOptionalCatchToParam } from './internal/js.transformOptionalCatchToParam.js'\nimport { transformIIFE } from './internal/js.transformIIFE.js'\nimport { corePackageUrl, reactPackageUrl, stringifyPackageUrl } from './internal/dirs.js'\nimport { isProcessMeta, getProcessArgOf } from './internal/process.js'\nimport esbuild from 'esbuild'\nimport nodemon from 'nodemon'\nimport zlib from 'zlib'\nimport { minify } from 'terser'\n\nconst matchImports = /import\\s*([\\w*${}\\n\\r\\t, ]+)from\\s*[\"']([^\"']+)[\"'];?/g\nconst matchExports = /export\\s*([\\w*${}\\n\\r\\t, ]+);?$/g\nconst matchNamings = /[{,]?([$\\w]+)(?:\\s+as\\s+(\\w+))?/gy\n\nconst variants = {\n\tesm: {\n\t\textension: 'mjs',\n\t\tasync transform(code, smap) {\n\t\t\treturn await minify(code, {\n\t\t\t\tsourceMap: { content: smap },\n\t\t\t\tcompress: true,\n\t\t\t\tmodule: true,\n\t\t\t\tmangle: true,\n\t\t\t\ttoplevel: true,\n\t\t\t})\n\t\t},\n\t},\n\tcjs: {\n\t\textension: 'cjs',\n\t\tasync transform(code, smap) {\n\t\t\tlet cjsast = js.parse(code)\n\n\t\t\ttransformModulesToCJS(cjsast)\n\t\t\ttransformOptionalCatchToParam(cjsast)\n\t\t\ttransformDestructuring(cjsast)\n\n\t\t\treturn await minify(cjsast.toString(), {\n\t\t\t\tsourceMap: { content: smap },\n\t\t\t\tcompress: true,\n\t\t\t\tmodule: true,\n\t\t\t\tmangle: true,\n\t\t\t\ttoplevel: true,\n\t\t\t})\n\t\t},\n\t},\n\tgjs: {\n\t\textension: 'global.js',\n\t\tasync transform(code, smap) {\n\t\t\tlet cjsast = js.parse(code)\n\n\t\t\ttransformIIFE(cjsast)\n\n\t\t\treturn await minify(cjsast.toString(), {\n\t\t\t\tsourceMap: { content: smap },\n\t\t\t\tcompress: true,\n\t\t\t\tmodule: true,\n\t\t\t\tmangle: true,\n\t\t\t\ttoplevel: true,\n\t\t\t})\n\t\t},\n\t},\n}\n\nexport const build = async (packageUrl, opts) => {\n\topts = Object.assign({ only: [] }, opts)\n\n\tconst initPackageUrl = new URL('src/', packageUrl)\n\tconst distPackageUrl = new URL('dist/', packageUrl)\n\n\tconst packageJsonUrl = new URL(`package.json`, packageUrl)\n\tconst packageName = JSON.parse(await fs.readFile(packageJsonUrl, 'utf8')).name\n\n\tif (!opts.only.length || opts.only.includes(packageName)) {\n\t\tconst targetPathname = new URL('index.js', initPackageUrl).pathname\n\t\tconst outputPathname = new URL('index.js', distPackageUrl).pathname\n\n\t\t// Build ESM version\n\t\tlet {\n\t\t\toutputFiles: [{ text: smap }, { text: code }],\n\t\t} = await esbuild.build({\n\t\t\tentryPoints: [targetPathname],\n\t\t\toutfile: outputPathname,\n\t\t\tbundle: true,\n\t\t\texternal: ['react'],\n\t\t\tformat: 'esm',\n\t\t\tsourcemap: 'external',\n\t\t\twrite: false,\n\t\t})\n\n\t\t// ensure empty dist directory\n\t\tawait fs.mkdir(distPackageUrl, { recursive: true })\n\n\t\t// write map\n\t\tfs.writeFile(new URL(`index.map`, distPackageUrl), smap)\n\n\t\t// prepare variations\n\t\tconst size = {\n\t\t\tname: packageName,\n\t\t\ttypes: {},\n\t\t}\n\n\t\t// write variation builds\n\t\tfor (const variant in variants) {\n\t\t\tconst variantInfo = variants[variant]\n\t\t\tconst variantPath = new URL(`dist/index.${variantInfo.extension}`, packageUrl).pathname\n\n\t\t\tlet { code: variantCode } = await variantInfo.transform(code, smap)\n\n\t\t\tconst variantMins = (Buffer.byteLength(variantCode) / 1000).toFixed(2)\n\t\t\tconst variantGzip = Number(zlib.gzipSync(variantCode, { level: 9 }).length / 1000).toFixed(2)\n\n\t\t\tsize.types[variant] = {\n\t\t\t\tmin: variantMins,\n\t\t\t\tgzp: variantGzip,\n\t\t\t}\n\n\t\t\tawait fs.writeFile(variantPath, variantCode + `\\n//# sourceMappingUrl=index.map`)\n\t\t}\n\n\t\tconsole.log(box(size))\n\t}\n}\n\nexport const buildAll = async (opts) => {\n\tawait build(stringifyPackageUrl, opts)\n\tawait build(corePackageUrl, opts)\n\tawait build(reactPackageUrl, opts)\n}\n\nif (isProcessMeta(import.meta)) {\n\tif (getProcessArgOf('watch').includes(true)) {\n\t\tlet onlyArgs = getProcessArgOf('only')\n\n\t\tonlyArgs = onlyArgs.length ? ['--only', ...onlyArgs] : onlyArgs\n\n\t\tnodemon(\n\t\t\t[\n\t\t\t\t'-q',\n\t\t\t\t`--watch packages/core/src`,\n\t\t\t\t`--watch packages/core/tests`,\n\t\t\t\t`--watch packages/core/types`,\n\t\t\t\t`--watch packages/react/src`,\n\t\t\t\t`--watch packages/react/tests`,\n\t\t\t\t`--watch packages/react/types`,\n\t\t\t\t`--watch packages/stringify/src`,\n\t\t\t\t`--watch packages/stringify/tests`,\n\t\t\t\t`--watch packages/stringify/types`,\n\n\t\t\t\t// exec\n\t\t\t\t`--exec \"${['node', './.task/build.js', ...onlyArgs].join(' ')}\"`,\n\t\t\t].join(' '),\n\t\t).on('start', () => {\n\t\t\tprocess.stdout.write('\\u001b[3J\\u001b[2J\\u001b[1J')\n\t\t\tconsole.clear()\n\t\t}).on('quit', () => process.exit())\n\t} else {\n\t\tbuildAll({\n\t\t\tonly: getProcessArgOf('only'),\n\t\t}).catch((error) => {\n\t\t\tconsole.error(error)\n\n\t\t\tprocess.exitCode = 1\n\t\t})\n\t}\n}\n"
  },
  {
    "path": ".task/internal/child_process.js",
    "content": "import cp from 'child_process'\nimport { rootUrl } from './dirs.js'\n\nexport * from 'child_process'\n\nexport const spawn = (\n\t/** @type {string} */ exec,\n\t/** @type {readonly string[]} */ args = [],\n\t/** @type {cp.SpawnOptionsWithoutStdio} */ opts = {}\n) => new Promise(\n\t(close, error) => {\n\t\tcp.spawn(exec, [].concat(args || []), {\n\t\t\tcwd: rootUrl.pathname,\n\t\t\tenv: { ...process.env },\n\t\t\tstdio: 'inherit',\n\t\t\t...Object(opts)\n\t\t})._events = { close, error }\n\t}\n)\n"
  },
  {
    "path": ".task/internal/color.js",
    "content": "const ansi = (id) => `\\x1b[${id}m`\nconst escape = (string) => string.replace(/[\\\\^$*+?.()|[\\]{}]/g, '\\\\$&')\nconst ansiRe = RegExp(escape(ansi(0)), 'g')\n\nexport const color = (string, id) => ansi(id) + string.replace(ansiRe, ansi(0) + ansi(id)) + ansi(0)\n\nexport const bold = (string) => color(string, 1)\nexport const dim = (string) => color(string, 2)\nexport const underline = (string) => color(string, 4)\nexport const invert = (string) => color(string, 7)\n\nexport const black = (string) => color(string, 30)\nexport const red = (string) => color(string, 31)\nexport const green = (string) => color(string, 32)\nexport const yellow = (string) => color(string, 33)\nexport const blue = (string) => color(string, 34)\nexport const magenta = (string) => color(string, 35)\nexport const cyan = (string) => color(string, 36)\nexport const white = (string) => color(string, 37)\n\nexport const bgBlack = (string) => color(string, 40)\nexport const bgRed = (string) => color(string, 41)\nexport const bgGreen = (string) => color(string, 42)\nexport const bgYellow = (string) => color(string, 43)\nexport const bgBlue = (string) => color(string, 44)\nexport const bgMagenta = (string) => color(string, 45)\nexport const bgCyan = (string) => color(string, 46)\nexport const bgWhite = (string) => color(string, 47)\n\nexport const pad = (string, size = 0, char = ' ') => string.padStart((string.length + size) / 2, char).padEnd(size, char)\n\nexport const box = ({\n\tname,\n\ttypes\n}) => {\n\tconst border = (text) => dim(cyan(text))\n\tconst v = border('│')\n\tconst h = (size) => border(pad('', size, '┈'))\n\n\tconst nameLead = pad('', 16 - name.length / 2)\n\tconst nameTail = pad('', nameLead.length + name.length % 2)\n\tconst nullLine = pad('', 32)\n\n\tconst kb = (kb) => bold(green(kb.slice(0, -3))) + ' ' + dim(kb.slice(-2))\n\n\treturn [\n\t\tborder(`╭────────────────────────────────╮`),\n\t\t`${v}${nameLead}${bold(white(name))}${nameTail}${v}`,\n\t\t`${v}${nullLine}${v}`,\n\t\t...Object.entries(types).map(([type, { min, gzp }]) => [\n\t\t\t`${v}  ${h(15 - type.length)} ${cyan(type)} ${h(15 - type.length - type.length % 2)}  ${v}`,\n\t\t\t`${v}  ${' '.repeat(3 - min.length % 2)}${kb(min + ' kB')}${' '.repeat(3)} ${border('╷')} ${' '.repeat(3 - gzp.length % 2)}${kb(gzp + ' kB')}${' '.repeat(3)} ${v}`,\n\t\t\t`${v}    ${dim(cyan('minified'))}    ${border('╵')}    ${dim(cyan('gzipped'))}    ${v}`,\n\t\t].join('\\n')),\n\t\tborder(`╰────────────────────────────────╯`),\n\t].join('\\n')\n}\n\nexport const passIcon = green('✔')\nexport const failIcon = red('✖')\n\nexport const passText = (text = 'PASS') => invert(green(bold(` ${text} `)))\nexport const failText = (text = 'FAIL') => invert(red(bold(` ${text} `)))\nexport const infoText = (text = 'INFO') => dim(text)\n"
  },
  {
    "path": ".task/internal/dirs.js",
    "content": "import process from 'node:process'\nimport URL from './url.js'\n\n/** Root directory. */\nexport const rootUrl = new URL('../../', import.meta.url)\n\n/** Packages directory. */\nexport const packagesUrl = new URL('packages/', rootUrl)\n\n/** Core package directory. */\nexport const corePackageUrl = new URL('core/', packagesUrl)\n\n/** Core tests directory. */\nexport const coreTestsUrl = new URL('tests/', corePackageUrl)\n\n/** React package directory. */\nexport const reactPackageUrl = new URL('react/', packagesUrl)\n\n/** React tests directory. */\nexport const reactTestsUrl = new URL('tests/', reactPackageUrl)\n\n/** Stringify package directory */\nexport const stringifyPackageUrl = new URL('stringify/', packagesUrl)\n\n/** React tests directory. */\nexport const stringifyTestsUrl = new URL('tests/', stringifyPackageUrl)\n\n/** Current file href. */\nexport const argv1Url = new URL(process.argv[1], 'file:').href\n"
  },
  {
    "path": ".task/internal/expect.js",
    "content": "import { deepEqual as toEqual, equal as toBe, notDeepEqual as toNotEqual, notEqual as toNotBe } from 'node:assert/strict'\n\nexport default function expect(actual) {\n\treturn {\n\t\t/** Tests for strict equality between the actual and expected parameters. */\n\t\ttoBe: toBe.bind(this, actual),\n\t\t/** Tests that the actual object is an instance of the expected class. */\n\t\ttoBeInstanceOf: toBeInstanceOf.bind(this, actual),\n\t\t/** Tests for deep equality between the actual and expected parameters. */\n\t\ttoEqual: toEqual.bind(this, actual),\n\t\t/** Tests that the actual function does throw when it is called. */\n\t\ttoThrow: toThrow.bind(this, actual),\n\n\t\t/** Tests for strict inequality between the actual and expected parameters. */\n\t\ttoNotBe: toNotBe.bind(this, actual),\n\t\t/** Tests that the actual object is not an instance of the expected class. */\n\t\ttoNotBeInstanceOf: toNotBeInstanceOf.bind(this, actual),\n\t\t/** Tests for deep inequality between the actual and expected parameters. */\n\t\ttoNotEqual: toNotEqual.bind(this, actual),\n\t\t/** Tests that the actual function does not throw when it is called. */\n\t\ttoNotThrow: toNotThrow.bind(this, actual),\n\t}\n}\n\n/** Tests that the actual object is an instance of the expected class. */\nfunction toBeInstanceOf(actual, expected) {\n\tif (!(actual instanceof expected)) {\n\t\tthrow new AssertionError({\n\t\t\tmessage: 'Expected value to be instance:',\n\t\t\toperator: 'instanceOf',\n\t\t\tactual,\n\t\t\texpected,\n\t\t\tstackStartFn: toBeInstanceOf,\n\t\t})\n\t}\n}\n\n/** Tests that the actual object is not an instance of the expected class. */\nfunction toNotBeInstanceOf(actual, expected) {\n\tif (actual instanceof expected) {\n\t\tthrow new AssertionError({\n\t\t\tmessage: 'Expected value to be instance:',\n\t\t\toperator: 'instanceOf',\n\t\t\tactual,\n\t\t\texpected,\n\t\t\tstackStartFn: toNotBeInstanceOf,\n\t\t})\n\t}\n}\n\n/** Tests that the actual function does throw when it is called. */\nasync function toThrow(actualFunction, expected) {\n\tlet actual = undefined\n\n\ttry {\n\t\tactual = await actualFunction()\n\t} catch (error) {\n\t\t// do nothing and continue\n\t\treturn\n\t}\n\n\tthrow new AssertionError({\n\t\tmessage: 'Expected exception:',\n\t\toperator: 'throws',\n\t\tstackStartFn: toThrow,\n\t\tactual,\n\t\texpected,\n\t})\n}\n\n/** Tests that the actual function does not throw when it is called. */\nasync function toNotThrow(actualFunction, expected) {\n\tlet actual = undefined\n\n\ttry {\n\t\tactual = await actualFunction()\n\n\t\t// do nothing and continue\n\t\treturn\n\t} catch (error) {\n\t\tthrow new AssertionError({\n\t\t\tmessage: 'Unexpected exception:',\n\t\t\toperator: 'doesNotThrow',\n\t\t\tstackStartFn: toThrow,\n\t\t\tactual,\n\t\t\texpected,\n\t\t})\n\t}\n}\n"
  },
  {
    "path": ".task/internal/fs-test.js",
    "content": "import * as fs from './fs.js'\n\nlet source = new URL('./test-source/', import.meta.url)\nlet target = new URL('./test-target/', import.meta.url)\n\nfs.copydir(source, target)\n"
  },
  {
    "path": ".task/internal/fs.js",
    "content": "import fs from 'fs/promises'\nimport { copyFile, mkdir, readdir } from 'fs/promises'\nimport URL from './url.js'\n\nexport * from 'fs/promises'\nexport { existsSync as exists } from 'fs'\n\n/** Asynchronously copies dir to dest. By default, dest is overwritten if it already exists. */\nexport const copydir = async function copydir(src, dst) {\n\tlet copydir = async (src, dst) => {\n\t\tawait mkdir(dst, { recursive: true })\n\n\t\tfor (const dirent of await readdir(src, { withFileTypes: true })) {\n\t\t\tawait (dirent.isDirectory() ? copydir : copyFile)(\n\t\t\t\tsrc.dir.to(dirent.name),\n\t\t\t\tdst.dir.to(dirent.name)\n\t\t\t)\n\t\t}\n\t}\n\n\tcopydir(URL.from(src), URL.from(dst))\n}\n\n/** Asynchronously reads a file as parsed JSON. */\nexport const readFileJson = {\n\tasync readFileJson(/** @type {import('fs').PathLike | fs.FileHandle} */ path) {\n\t\tconst json = await fs.readFile(path, 'utf8')\n\n\t\t/** @type {JSONValue} */\n\t\tconst data = JSON.parse(json)\n\n\t\treturn data\n\t}\n}.readFileJson\n\nfs.copydir = copydir\nfs.readFileJson = readFileJson\n\n/** @typedef { string | number | boolean | null | JSONArray | JSONObject } JSONValue */\n/** @typedef { JSONValue[] } JSONArray */\n/** @typedef {{ [k: string]: JSONValue }} JSONObject */\n\nexport default fs\n"
  },
  {
    "path": ".task/internal/js.js",
    "content": "import { generate } from 'astring'\nimport { importAssertions } from 'acorn-import-assertions'\nimport { Node, Parser } from 'acorn'\nimport acornClassFields from 'acorn-class-fields'\nimport acornJsx from 'acorn-jsx'\nimport acornLogicalAssignment from 'acorn-logical-assignment'\nimport acornPrivateMethods from 'acorn-private-methods'\n\nlet acornPlugins = [\n\tacornJsx({ allowNamespaces: true, allowNamespacedObjects: true }),\n\tacornClassFields,\n\tacornLogicalAssignment,\n\tacornPrivateMethods,\n\timportAssertions\n]\n\nlet prototype = Node.prototype\nlet parser = Parser.extend(...acornPlugins)\n\nexport let parse = (code) => {\n\tlet parsed = parser.parse(code, { sourceType: 'module', ecmaVersion: 'latest' })\n\n\treturn parsed\n}\n\nexport let stringify = (ast) => generate(ast)\n\nlet defaultProps = {\n\tArrowFunctionExpression: {\n\t\texpression: false,\n\t\tgenerator: false,\n\t\tasync: false,\n\t\tparams: [],\n\t\tbody: null,\n\t},\n\tAssignmentExpression: {\n\t\toperator: '=',\n\t\tleft: null,\n\t\tright: null,\n\t},\n\tBlockStatement: {\n\t\tbody: [],\n\t},\n\tCallExpression: {\n\t\tcallee: null,\n\t\targuments: [],\n\t\toptional: false,\n\t},\n\tCatchClause: {\n\t\tparam: null,\n\t\tbody: { type: 'BlockStatement', body: [] }\n\t},\n\tExportNamedDeclaration: {\n\t\tdeclaration: null,\n\t\tspecifiers: []\n\t},\n\tExportSpecifier: {\n\t\tlocal: null,\n\t\texported: null,\n\t},\n\tExpressionStatement: {\n\t\texpression: {\n\t\t\toperator: '=',\n\t\t\tleft: null,\n\t\t\tright: null,\n\t\t},\n\t},\n\tIdentifier: { name: '_' },\n\tImportDefaultSpecifier: {\n\t\tlocal: null\n\t},\n\tImportDeclaration: {\n\t\tspecifiers: [],\n\t\tsource: null,\n\t},\n\tLiteral: {\n\t\tvalue: '_',\n\t\traw: '\\'_\\'',\n\t\toptional: false,\n\t},\n\tMemberExpression: {\n\t\tobject: null,\n\t\tproperty: null,\n\t\tcomputed: false,\n\t\toptional: false,\n\t},\n\tObjectExpression: {\n\t\tproperties: [],\n\t},\n\tObjectPattern: {\n\t\tproperties: [],\n\t},\n\tProgram: {\n\t\tbody: [],\n\t},\n\tProperty: {\n\t\tmethod: false,\n\t\tshorthand: false,\n\t\tcomputed: false,\n\t\tkey: null,\n\t\tvalue: null,\n\t\tkind: 'init',\n\t},\n\tRestElement: {\n\t\targument: null,\n\t},\n\tReturnStatement: {\n\t\targument: null,\n\t},\n\tTryStatement: {\n\t\tblock: null,\n\t\thandler: null,\n\t\tfinalizer: null,\n\t},\n\tVariableDeclaration: {\n\t\tdeclarations: [],\n\t\tkind: 'var',\n\t},\n\tVariableDeclarator: {\n\t\tid: null,\n\t\tinit: {\n\t\t\ttype: 'CallExpression',\n\t\t\tcallee: null,\n\t\t\targuments: [],\n\t\t}\n\t},\n}\n\n\nlet createNode = (...props) => Object.assign(Object.create(prototype), ...props)\n\nexport let create = (type, props) => createNode({ type }, defaultProps[type], props)\n\nexport let ArrowFunctionExpression = (props) => create('ArrowFunctionExpression', props)\nexport let AssignmentExpression = (props) => create('AssignmentExpression', props)\nexport let BlockStatement = (props) => create('BlockStatement', props)\nexport let CallExpression = (props) => create('CallExpression', props)\nexport let CatchClause = (props) => create('CatchClause', props)\nexport let ExportNamedDeclaration = (props) => create('ExportNamedDeclaration', props)\nexport let ExportSpecifier = (props) => create('ExportSpecifierExportSpecifier', props)\nexport let ExpressionStatement = (props) => create('ExpressionStatement', props)\nexport let Identifier = (props) => create('Identifier', props)\nexport let ImportDeclaration = (props) => create('ImportDeclaration', props)\nexport let ImportDefaultSpecifier = (props) => create('ImportDefaultSpecifier', props)\nexport let Literal = (props) => create('Literal', props)\nexport let MemberExpression = (props) => create('MemberExpression', props)\nexport let ObjectExpression = (props) => create('ObjectExpression', props)\nexport let Program = (props) => create('Program', props)\nexport let Property = (props) => create('Property', props)\nexport let ReturnStatement = (props) => create('ReturnStatement', props)\nexport let TryStatement = (props) => create('TryStatement', props)\nexport let VariableDeclaration = (props) => create('VariableDeclaration', props)\nexport let VariableDeclarator = (props) => create('VariableDeclarator', props)\n\nexport let parents = new WeakMap()\n\nlet createPrototypeOf = (value) => value == null ? value : Array.isArray(value) ? [] : Object.create(Object.getPrototypeOf(value))\n\nObject.defineProperties(prototype, {\n\tclone: {\n\t\tvalue: {\n\t\t\tclone(overrides) {\n\t\t\t\tlet process = (object) => {\n\t\t\t\t\tlet clone = createPrototypeOf(object)\n\n\t\t\t\t\tfor (let name of Object.keys(object)) {\n\t\t\t\t\t\tif (object[name] instanceof Object) {\n\t\t\t\t\t\t\tclone[name] = process(object[name])\n\n\t\t\t\t\t\t\tparents.set(clone[name], [name, clone])\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tclone[name] = object[name]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn clone\n\t\t\t\t}\n\n\t\t\t\treturn Object.assign(process(this), overrides)\n\t\t\t}\n\t\t}.clone,\n\t\tconfigurable: true,\n\t\twritable: true,\n\t},\n\tfind: {\n\t\tvalue: {\n\t\t\tfind(type, call) {\n\t\t\t\tlet find = (object) => {\n\t\t\t\t\tif (object.type === type) call(object)\n\n\t\t\t\t\tfor (let name of Object.keys(object)) {\n\t\t\t\t\t\tif (object[name] instanceof Object) {\n\t\t\t\t\t\t\tparents.set(object[name], [name, object])\n\n\t\t\t\t\t\t\tfind(object[name])\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfind(this)\n\t\t\t}\n\t\t}.find,\n\t\tconfigurable: true,\n\t\twritable: true,\n\t},\n\tparent: {\n\t\tget: {\n\t\t\tparent() {\n\t\t\t\treturn (parents.get(this) || [])[1] || null\n\t\t\t},\n\t\t}.parent,\n\t\tconfigurable: true,\n\t},\n\tparentNode: {\n\t\tget: {\n\t\t\tparentNode() {\n\t\t\t\tlet object = this\n\t\t\t\twhile (true) {\n\t\t\t\t\tobject = parentOf(object)\n\t\t\t\t\tif (object == null) return null\n\t\t\t\t\tif (object instanceof Array) continue\n\t\t\t\t\treturn object\n\t\t\t\t}\n\t\t\t},\n\t\t}.parentNode,\n\t\tconfigurable: true,\n\t},\n\tkeyOfParent: {\n\t\tget: {\n\t\t\tkeyOfParent() {\n\t\t\t\treturn (parents.get(this) || [])[0] || null\n\t\t\t}\n\t\t}.keyOfParent,\n\t\tconfigurable: true,\n\t},\n\tkeyOfParentNode: {\n\t\tget: {\n\t\t\tkeyOfParentNode() {\n\t\t\t\tlet object = this, key\n\t\t\t\twhile (true) {\n\t\t\t\t\tkey = keyOfParent(object)\n\t\t\t\t\tobject = parentOf(object)\n\t\t\t\t\tif (object == null) return null\n\t\t\t\t\tif (Array.isArray(object)) continue\n\t\t\t\t\treturn key\n\t\t\t\t}\n\t\t\t},\n\t\t}.keyOfParentNode,\n\t\tconfigurable: true,\n\t},\n\tremove: {\n\t\tvalue: {\n\t\t\tremove() {\n\t\t\t\treturn this.replaceWith()\n\t\t\t}\n\t\t}.remove,\n\t\tconfigurable: true,\n\t\twritable: true,\n\t},\n\treplaceWith: {\n\t\tvalue: {\n\t\t\treplaceWith(...nodes) {\n\t\t\t\tlet [name, node] = parents.get(this) || []\n\t\t\t\tif (!node) return\n\n\t\t\t\tif (Array.isArray(node)) {\n\t\t\t\t\tnode.splice(name, 1, ...nodes)\n\t\t\t\t} else {\n\t\t\t\t\tnode[name] = Array.isArray(node[name]) || nodes.length > 1 ? nodes : nodes[0] || null\n\t\t\t\t}\n\t\t\t}\n\t\t}.replaceWith,\n\t\tconfigurable: true,\n\t\twritable: true,\n\t},\n\ttoString: {\n\t\tvalue: {\n\t\t\ttoString() {\n\t\t\t\treturn stringify(this)\n\t\t\t},\n\t\t}.toString,\n\t\tconfigurable: true,\n\t\twritable: true,\n\t},\n})\n\nexport let keyOfParent = (object) => (parents.get(object) || [])[0] || null\nexport let parentOf = (object) => (parents.get(object) || [])[1] || null\n\nexport let find = (node, type, next) => {\n\tif (node.type === type) {\n\t\tif (next) next(node)\n\t\telse return node\n\t}\n\tfor (let name in node) {\n\t\tif (name === 'type') continue\n\n\t\tlet data = node[name]\n\n\t\tif (Array.isArray(data)) {\n\t\t\tparents.set(data, this)\n\n\t\t\tfor (let each of data) {\n\t\t\t\tif (each instanceof Node) {\n\t\t\t\t\tparents.set(each, data)\n\n\t\t\t\t\tlet deep = find(each, type, next)\n\n\t\t\t\t\tif (deep && !next) return deep\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (data instanceof Node) {\n\t\t\tparents.set(data, this)\n\n\t\t\tlet deep = find(data, type, next)\n\n\t\t\tif (deep && !next) return deep\n\t\t}\n\t}\n\treturn null\n}\n"
  },
  {
    "path": ".task/internal/js.transformDestructuring.js",
    "content": "import * as js from './js.js'\n\nexport let transformDestructuring = (ast) => {\n\t// replace destructuring\n\tast.find('ObjectPattern', (objectPattern) => {\n\t\tif (objectPattern.keyOfParentNode === 'params') {\n\t\t\tlet { parentNode } = objectPattern\n\n\t\t\tif (\n\t\t\t\tparentNode.body.type !== 'BlockStatement'\n\t\t\t) {\n\t\t\t\tparentNode.body.replaceWith(\n\t\t\t\t\tjs.BlockStatement({\n\t\t\t\t\t\tbody: [\n\t\t\t\t\t\t\tjs.ReturnStatement({\n\t\t\t\t\t\t\t\targument: parentNode.body\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t]\n\t\t\t\t\t})\n\t\t\t\t)\n\t\t\t}\n\n\t\t\tlet argName = `_arg${objectPattern.keyOfParent}`\n\n\t\t\tobjectPattern.replaceWith(\n\t\t\t\tjs.Identifier({ name: argName })\n\t\t\t)\n\n\t\t\tparentNode.body.body.unshift(\n\t\t\t\tjs.VariableDeclaration({\n\t\t\t\t\tkind: 'let',\n\t\t\t\t\tdeclarations: [\n\t\t\t\t\t\tjs.VariableDeclarator({\n\t\t\t\t\t\t\tid: objectPattern,\n\t\t\t\t\t\t\tinit: js.Identifier({ name: argName }),\n\t\t\t\t\t\t})\n\t\t\t\t\t]\n\t\t\t\t})\n\t\t\t)\n\t\t}\n\t})\n\n\treturn ast\n}\n"
  },
  {
    "path": ".task/internal/js.transformIIFE.js",
    "content": "import * as js from './js.js'\n\nexport let transformIIFE = (ast) => {\n\tast.body = [\n\t\tjs.ExpressionStatement({\n\t\t\texpression: js.AssignmentExpression({\n\t\t\t\tleft: js.Identifier({ name: 'stitches' }),\n\t\t\t\tright: js.CallExpression({\n\t\t\t\t\tcallee: js.ArrowFunctionExpression({\n\t\t\t\t\t\tbody: js.BlockStatement({\n\t\t\t\t\t\t\tbody: ast.body\n\t\t\t\t\t\t})\n\t\t\t\t\t})\n\t\t\t\t})\n\t\t\t})\n\t\t})\n\t]\n\n\t// remove imports\n\tast.find('ImportDeclaration', (importDeclaration) => {\n\t\timportDeclaration.remove()\n\t})\n\n\t// change exports to returns\n\tast.find('ExportNamedDeclaration', (exportNamedDeclaration) => {\n\t\texportNamedDeclaration.replaceWith(\n\t\t\tjs.ReturnStatement({\n\t\t\t\targument: js.ObjectExpression({\n\t\t\t\t\tproperties: exportNamedDeclaration.specifiers.map(\n\t\t\t\t\t\t(exportSpecifier) => js.Property({\n\t\t\t\t\t\t\tkey: exportSpecifier.exported,\n\t\t\t\t\t\t\tvalue: exportSpecifier.local,\n\t\t\t\t\t\t})\n\t\t\t\t\t)\n\t\t\t\t})\n\t\t\t})\n\t\t)\n\t})\n\n\treturn ast\n}\n"
  },
  {
    "path": ".task/internal/js.transformModulesToCJS.js",
    "content": "import * as js from './js.js'\n\nexport let transformModulesToCJS = (ast) => {\n\t// replace exports\n\tast.find('ExportNamedDeclaration', (exportNamedDeclaration) => {\n\t\tlet expressionStatement = js.ExpressionStatement({\n\t\t\texpression: js.AssignmentExpression({\n\t\t\t\tleft: js.MemberExpression({\n\t\t\t\t\tobject: js.Identifier({ name: 'module' }),\n\t\t\t\t\tproperty: js.Identifier({ name: 'exports' })\n\t\t\t\t}),\n\t\t\t\tright: js.ObjectExpression({\n\t\t\t\t\tproperties: [],\n\t\t\t\t}),\n\t\t\t})\n\t\t})\n\n\t\texportNamedDeclaration.find('ExportSpecifier', (exportSpecifier) => {\n\t\t\texpressionStatement.expression.right.properties.push(\n\t\t\t\tjs.create('Property', {\n\t\t\t\t\tkey: js.create('Identifier', { name: exportSpecifier.exported.name }),\n\t\t\t\t\tvalue: js.create('Identifier', { name: exportSpecifier.local.name }),\n\t\t\t\t})\n\t\t\t)\n\t\t})\n\n\t\texportNamedDeclaration.replaceWith(expressionStatement)\n\t})\n\n\t// replace imports\n\tast.find('ImportDeclaration', (importDeclaration) => {\n\t\tlet variableDeclaration = js.VariableDeclaration({\n\t\t\tdeclarations: [\n\t\t\t\tjs.VariableDeclarator({\n\t\t\t\t\tid: js.Identifier({ name: importDeclaration.specifiers[0].local.name }),\n\t\t\t\t\tinit: js.CallExpression({\n\t\t\t\t\t\tcallee: js.Identifier({ name: 'require' }),\n\t\t\t\t\t\targuments: [\n\t\t\t\t\t\t\timportDeclaration.source,\n\t\t\t\t\t\t],\n\t\t\t\t\t}),\n\t\t\t\t})\n\t\t\t]\n\t\t})\n\n\t\timportDeclaration.replaceWith(variableDeclaration)\n\t})\n\n\treturn ast\n}\n"
  },
  {
    "path": ".task/internal/js.transformOptionalCatchToParam.js",
    "content": "import * as js from './js.js'\n\nexport let transformOptionalCatchToParam = (ast) => {\n\t// replace optional catch\n\tast.find('CatchClause', (catchClause) => {\n\t\tif (catchClause.param === null) {\n\t\t\tcatchClause.param = js.Identifier({ name: 'e' })\n\t\t}\n\t})\n\n\treturn ast\n}\n"
  },
  {
    "path": ".task/internal/process.js",
    "content": "import URL from './url.js'\n\nconst {\n\targv: [, file, ...argv],\n} = process\n\n/** Returns whether the import.meta matches the current process. */\nexport const isProcessMeta = (meta) => new URL(meta.url).href === URL.from(file).href\n\n/** Returns the values for a given process argument. */\nexport const getProcessArgOf = (name) => {\n\tconst lead = argv.indexOf('--' + name) + 1\n\tconst tail = lead ? argv.slice(lead).findIndex((arg) => arg.startsWith('--')) : 0\n\n\tconst vals = lead ? argv.slice(lead, ~tail ? lead + tail : argv.length) : []\n\n\treturn lead ? (vals.length ? vals : [true]) : vals\n}\n"
  },
  {
    "path": ".task/internal/readline.js",
    "content": "import * as readline from 'readline'\n\nexport * from 'readline'\n\n/** Displays the query, awaits user input, and returns the provided input. */\nexport const question = (\n\t/** @type {string} */ query,\n\t/** @type {import('events').Abortable} */\n\topts = undefined\n) => new Promise(resolver => {\n\tquery = String(query).replace(/[^\\s]$/, '$& ')\n\n\topts = Object(opts)\n\n\tconst int = readline.createInterface({\n\t\tinput: process.stdin,\n\t\toutput: process.stdout,\n\t})\n\n\tint.question(query, opts, answer => {\n\t\tint.close()\n\n\t\tresolver(answer)\n\t})\n})\n"
  },
  {
    "path": ".task/internal/url.js",
    "content": "import { fileURLToPath, pathToFileURL } from 'url';\n\nexport default class URL extends globalThis.URL {\n\tto(/** @type {string[]} */ ...segments) {\n\t\treturn segments.reduce((/** @type URL */ url, segment) => new URL(segment, url), this)\n\t}\n\n\tincludes(/** @type {string} */ searchString, position = 0) {\n\t\treturn this.href.includes(searchString, position)\n\t}\n\n\tendsWith(/** @type {string} */ searchString, length = this.href.length) {\n\t\treturn this.href.endsWith(searchString, length)\n\t}\n\n\tget dir() {\n\t\treturn new URL(this.href + '/')\n\t}\n\n\tget ospathname() {\n\t\treturn fileURLToPath(this)\n\t}\n\n\tstatic from(/** @type {string | globalThis.URL} */ segment, /** @type {string[]} */ ...segments) {\n\t\treturn (\n\t\t\t/^file:/.test(segment)\n\t\t\t\t? new URL(segment)\n\t\t\t: new URL(pathToFileURL(segment))\n\t\t).to(...segments)\n\t}\n}\n"
  },
  {
    "path": ".task/lint-esm.js",
    "content": "import fs from './internal/fs.js'\nimport { bold, underline } from './internal/color.js'\nimport { corePackageUrl, reactPackageUrl, stringifyPackageUrl } from './internal/dirs.js'\nimport { isProcessMeta, getProcessArgOf } from './internal/process.js'\nimport { ESLint } from 'eslint'\n\nexport const lint = async (packageUrl, opts) => {\n\topts = Object.assign({ only: [] }, opts)\n\n\tconst packageJsonUrl = new URL(`package.json`, packageUrl)\n\tconst packageName = JSON.parse(await fs.readFile(packageJsonUrl, 'utf8')).name\n\tconst packageTsUrl = new URL(`types/index.d.ts`, packageUrl)\n\n\tif (!opts.only.length || opts.only.includes(packageName)) {\n\t\tconsole.log(underline(bold(packageName)))\n\t\tconsole.log(packageTsUrl.pathname)\n\n\t\tconst eslint = new ESLint()\n\n\t\tconst results = await eslint.lintFiles([packageTsUrl.pathname])\n\n\t\tconst formatter = await eslint.loadFormatter('stylish')\n\t\tconst resultText = formatter.format(results)\n\n\t\tif (resultText) console.log(resultText)\n\t\telse console.log('\\x1b[32m✔\\x1b[0m', 'Your code is flawless.', 'Hopefully this determination is flawless, too.')\n\t}\n}\n\nexport const lintAll = async (opts) => {\n\tawait lint(stringifyPackageUrl, opts)\n\tawait lint(corePackageUrl, opts)\n\tawait lint(reactPackageUrl, opts)\n}\n\nif (isProcessMeta(import.meta)) {\n\tlintAll({\n\t\tonly: getProcessArgOf('only'),\n\t}).catch((error) => {\n\t\tconsole.error(error)\n\n\t\tprocess.exitCode = 1\n\t})\n}\n"
  },
  {
    "path": ".task/lint-pkg.js",
    "content": "import fs from './internal/fs.js'\nimport { bold, underline } from './internal/color.js'\nimport { isProcessMeta, getProcessArgOf } from './internal/process.js'\nimport { corePackageUrl, reactPackageUrl, stringifyPackageUrl } from './internal/dirs.js'\nimport * as cp from './internal/child_process.js'\n\nexport const lint = async (packageUrl, opts) => {\n\topts = Object.assign({ only: [] }, opts)\n\n\tconst packageJsonUrl = new URL(`package.json`, packageUrl)\n\tconst packageName = JSON.parse(await fs.readFile(packageJsonUrl, 'utf8')).name\n\n\tif (!opts.only.length || opts.only.includes(packageName)) {\n\t\tconsole.log(underline(bold(packageName)))\n\n\t\tawait cp.spawn('./node_modules/.bin/package-check', ['--cwd', packageUrl.pathname])\n\t}\n}\n\nexport const lintAll = async (opts) => {\n\tawait lint(stringifyPackageUrl, opts)\n\tawait lint(corePackageUrl, opts)\n\tawait lint(reactPackageUrl, opts)\n}\n\nif (isProcessMeta(import.meta)) {\n\tlintAll({\n\t\tonly: getProcessArgOf('only'),\n\t}).catch((error) => {\n\t\tconsole.error(error)\n\n\t\tprocess.exitCode = 1\n\t})\n}\n"
  },
  {
    "path": ".task/lint-tsc.js",
    "content": "import fs from './internal/fs.js'\nimport { bold, underline } from './internal/color.js'\nimport { corePackageUrl, reactPackageUrl, stringifyPackageUrl } from './internal/dirs.js'\nimport { isProcessMeta, getProcessArgOf } from './internal/process.js'\nimport * as cp from './internal/child_process.js'\n\nexport const lint = async (packageUrl, opts) => {\n\topts = Object.assign({ only: [] }, opts)\n\n\tconst packageJsonUrl = new URL(`package.json`, packageUrl)\n\tconst packageName = JSON.parse(await fs.readFile(packageJsonUrl, 'utf8')).name\n\tconst packageTsUrl = new URL(`types/index.d.ts`, packageUrl)\n\n\tif (!opts.only.length || opts.only.includes(packageName)) {\n\t\tconsole.log(underline(bold(packageName)))\n\t\tconsole.log(packageTsUrl.pathname)\n\n\t\tawait cp.spawn('./node_modules/.bin/tsc', ['--noEmit', '--skipLibCheck', packageTsUrl.pathname])\n\t}\n}\n\nexport const lintAll = async (opts) => {\n\tawait lint(stringifyPackageUrl, opts)\n\tawait lint(corePackageUrl, opts)\n\tawait lint(reactPackageUrl, opts)\n}\n\nif (isProcessMeta(import.meta)) {\n\tlintAll({\n\t\tonly: getProcessArgOf('only'),\n\t}).catch((error) => {\n\t\tconsole.error(error)\n\n\t\tprocess.exitCode = 1\n\t})\n}\n"
  },
  {
    "path": ".task/lint.js",
    "content": "import { isProcessMeta, getProcessArgOf } from './internal/process.js'\nimport { lintAll as lintAllEsm } from './lint-esm.js'\nimport { lintAll as lintAllPkg } from './lint-pkg.js'\nimport { lintAll as lintAllTsc } from './lint-tsc.js'\n\nexport const lintAll = async (opts) => {\n\tawait lintAllEsm(opts)\n\tawait lintAllTsc(opts)\n\tawait lintAllPkg(opts)\n}\n\nif (isProcessMeta(import.meta)) {\n\tlintAll({\n\t\tonly: getProcessArgOf('only'),\n\t}).catch((error) => {\n\t\tconsole.error(error)\n\n\t\tprocess.exitCode = 1\n\t})\n}\n"
  },
  {
    "path": ".task/release.js",
    "content": "import URL from './internal/url.js'\nimport * as co from './internal/color.js'\nimport * as cp from './internal/child_process.js'\nimport * as fs from './internal/fs.js'\nimport * as rl from './internal/readline.js'\n\nconst main = async () => {\n\tconst root = URL.from(import.meta.url).to('../')\n\tconst pkg = await fs.readFileJson(root.to('package.json'), 'utf8')\n\n\tconst state = {}\n\n\tconst q1option = new Set(['major', 'minor', 'patch', 'prerelease'])\n\n\tstate.release = await rl.question(`Release Type ${co.dim('(major, minor, patch, prerelease)')}:`)\n\tstate.npmtag = state.release === 'prerelease' ? 'canary' : 'latest'\n\n\tif (!q1option.has(state.release)) return\n\n\tawait cp.spawn('npm', ['version', state.release, '--workspaces'], { stdio: 'pipe' })\n\n\tconst workspacepkgpaths = new Set\n\tconst workspacetags = new Set\n\n\tfor (let workspace of pkg.workspaces) {\n\t\tworkspace = root.to(workspace).dir\n\n\t\tconst workspacepkgpath = workspace.to('package.json')\n\t\tconst workspacepkg = await fs.readFileJson(workspacepkgpath)\n\n\t\tstate.version = `v${workspacepkg.version}`\n\n\t\tworkspacepkgpaths.add(workspacepkgpath)\n\t\tworkspacetags.add(`${workspacepkg.name}@${workspacepkg.version}`)\n\t}\n\n\tconsole.log(`Bumped ${co.bold(state.version)}`)\n\n\tconst confirm = await rl.question(`Publish ${co.bold(state.version)} as ${co.bold(state.npmtag)} ${co.dim('(y/n)')}:`)\n\n\tif (confirm !== 'y') {\n\t\tfor (const workspacepkgpath of workspacepkgpaths) {\n\t\t\tawait cp.spawn('git', ['checkout', '--', workspacepkgpath.ospathname])\n\t\t}\n\n\t\treturn\n\t}\n\n\tawait cp.spawn('npm', ['run', 'build'], { stdio: 'ignore' })\n\n\tstate.otp = await rl.question(`OTP:`)\n\n\tif (!state.otp) return\n\n\tfor (const workspacepkgpath of workspacepkgpaths) {\n\t\tawait cp.spawn('git', ['add', workspacepkgpath.ospathname])\n\t}\n\n\tawait cp.spawn('git', ['commit', '-m', state.version])\n\tawait cp.spawn('git', ['tag', state.version])\n\tawait cp.spawn('git', ['push'])\n\tawait cp.spawn('git', ['push', '--tags'])\n\n\tawait cp.spawn('npm', ['publish', '--tag', state.npmtag, '--workspaces', '--otp', state.otp])\n}\n\nmain()\n"
  },
  {
    "path": ".task/test-coverage.js",
    "content": "import * as cp from './internal/child_process.js'\nimport * as fp from 'path'\nimport * as fs from './internal/fs.js'\nimport * as os from 'os'\nimport { bold, dim, green, red } from './internal/color.js'\n\n// Creates a unique temporary directory\n!(async () => {\n\t/** Directory storing code coverage. */\n\tconst NODE_V8_COVERAGE = await fs.mkdtemp(os.tmpdir())\n\n\t/** Exit code from the covered NodeJS process. */\n\tawait new Promise((close, error) => {\n\t\tcp.spawn('node', process.argv.slice(2), {\n\t\t\tstdio: 'inherit',\n\t\t\tenv: { ...process.env, NODE_V8_COVERAGE },\n\t\t})._events = { close, error }\n\t})\n\n\t/** Combined coverage results */\n\tconst results = []\n\n\tfor (const filename of await fs.readdir(NODE_V8_COVERAGE)) {\n\t\tresults.push(...JSON.parse(await fs.readFile(fp.join(NODE_V8_COVERAGE, filename), 'utf8')).result)\n\t}\n\n\tawait fs.rmdir(NODE_V8_COVERAGE, { recursive: true })\n\n\t/** Combined LCOV results. */\n\tlet lcovList = []\n\n\t/** Combined LCOV results. */\n\tlet lcovInfo = ''\n\n\t/** Filter for filtered results */\n\tconst filter = (url) => !url.protocol.startsWith('node') && !url.pathname.includes('/node_modules/') && url.pathname.includes('/src/')\n\n\tfor (let result of results) {\n\t\t/** URL classed result URL */\n\t\tconst url = new URL(result.url)\n\n\t\tif (filter(url)) {\n\t\t\t/** Contents of the file whose coverage was collected. */\n\t\t\tconst data = await fs.readFile(url, 'utf8')\n\n\t\t\t/** List of code lines, where the line of code is a `data` property on the object. */\n\t\t\tconst rows = data.split(/^/gm).map((line) => ({ data: line }))\n\n\t\t\tconst lcov = {\n\t\t\t\t/** Test name */\n\t\t\t\tTN: [''],\n\n\t\t\t\t/** Source file */\n\t\t\t\tSF: [url.pathname],\n\n\t\t\t\t/** Line numbers for each function name. */\n\t\t\t\tFN: [],\n\n\t\t\t\t/** Execution count for the given function.*/\n\t\t\t\tFNDA: [],\n\n\t\t\t\t/** Number of functions found. */\n\t\t\t\tFNF: [0],\n\n\t\t\t\t/** Number of functions hit. */\n\t\t\t\tFNH: [0],\n\n\t\t\t\t/** Execution count for the given line. */\n\t\t\t\tDA: [],\n\n\t\t\t\t/** Number of collected lines with a positive execution count. */\n\t\t\t\tLH: [0],\n\n\t\t\t\t/** Number of collected lines. */\n\t\t\t\tLF: [0],\n\t\t\t}\n\n\t\t\tlcovList.push(lcov)\n\n\t\t\t/** Convert */\n\t\t\tconst convert = (range, isFirstRun) => {\n\t\t\t\tlet lineOffset = 0\n\n\t\t\t\tfor (const lineIndex in rows) {\n\t\t\t\t\tconst nextLineOffset = lineOffset + rows[lineIndex].data.length\n\n\t\t\t\t\tif (range.startLine == null && range.startOffset >= lineOffset && range.startOffset < nextLineOffset) {\n\t\t\t\t\t\trange.startLine = Number(lineIndex) + 1\n\t\t\t\t\t\trange.startCol = range.startOffset - lineOffset + 1\n\t\t\t\t\t}\n\n\t\t\t\t\tif (range.endOffset >= lineOffset && range.endOffset < nextLineOffset) {\n\t\t\t\t\t\trange.endLine = Number(lineIndex) + 1\n\t\t\t\t\t\trange.endCol = range.endOffset - lineOffset + 1\n\n\t\t\t\t\t\tif (!isFirstRun) {\n\t\t\t\t\t\t\tfor (let j = range.startLine; j <= range.endLine; ++j) {\n\t\t\t\t\t\t\t\tif (rows[j]) {\n\t\t\t\t\t\t\t\t\tif (!range.count) {\n\t\t\t\t\t\t\t\t\t\trows[j].exec = 0\n\t\t\t\t\t\t\t\t\t} else if (rows[j].exec == null) {\n\t\t\t\t\t\t\t\t\t\trows[j].exec = range.count\n\t\t\t\t\t\t\t\t\t} else if (rows[j].exec > 0) {\n\t\t\t\t\t\t\t\t\t\trows[j].exec += range.count\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\n\t\t\t\t\tlineOffset = nextLineOffset\n\t\t\t\t}\n\n\t\t\t\treturn range\n\t\t\t}\n\n\t\t\tfor (const coverage of result.functions) {\n\t\t\t\tlet startRange = convert(coverage.ranges[0], true)\n\t\t\t\tlet count = 0\n\n\t\t\t\t++lcov.FNF[0]\n\n\t\t\t\tlcov.FN.push([startRange.startLine, coverage.functionName])\n\n\t\t\t\tfor (const range of coverage.ranges) {\n\t\t\t\t\tcount += convert(range).count\n\t\t\t\t}\n\n\t\t\t\tlcov.FNDA.push([count, coverage.functionName])\n\n\t\t\t\tif (count) ++lcov.FNH[0]\n\t\t\t}\n\n\t\t\tfor (const line in rows) {\n\t\t\t\t++lcov.LF[0]\n\n\t\t\t\tif ('exec' in rows[line]) {\n\t\t\t\t\tlcov.DA.push([line, rows[line].exec])\n\n\t\t\t\t\tif (rows[line].exec) ++lcov.LH[0]\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlcovInfo += `${Object.entries(lcov).reduce((report, [name, data]) => report.concat(data.reduce((string, each) => string.concat(`${name.toUpperCase()}:${each}\\n`), '')), '')}end_of_record\\n`\n\t\t}\n\t}\n\n\tfs.writeFile('coverage/lcov.info', lcovInfo)\n\n\t/** Returns a unicode meter based on LCOV coverage. */\n\tconst meter = (lcov) => {\n\t\tconst per = (lcov.FNH[0] / lcov.FNF[0]) * 100\n\t\tconst sol = Math.trunc(per / 10)\n\t\tconst haf = per % 10 >= 5 ? 1 : 0\n\t\tconst emt = 10 - sol - haf\n\t\treturn [`▰`.repeat(sol), `▱`.repeat(haf), dim(`▱`.repeat(emt))].join('')\n\t}\n\n\t/** Returns the ratio of 2 fields in LCOV data. */\n\tconst ratio = (lcov, l, r) => `${lcov[l]}${dim('/')}${lcov[r]}`.padStart(17)\n\n\t/** Based on the given LCOV data, returns the given data in a shade of green or red. */\n\tconst shade = (lcov, data) => (lcov.FNH / lcov.FNF > 0.6 ? green : red)(data)\n\n\tconst trtd = (lcov) =>\n\t\tdim('│ ') +\n\t\tshade(\n\t\t\tlcov,\n\t\t\tlcov.SF[0]\n\t\t\t\t.slice(-31)\n\t\t\t\t.replace(/^[^/]*\\//, '')\n\t\t\t\t.padEnd(31, ' '),\n\t\t) +\n\t\t' ' +\n\t\tshade(lcov, meter(lcov)) +\n\t\tdim(' │ ') +\n\t\tshade(lcov, ratio(lcov, 'FNH', 'FNF')) +\n\t\tdim(' │ ') +\n\t\tshade(lcov, ratio(lcov, 'LH', 'LF')) +\n\t\tdim(' │')\n\n\tlcovList.sort((a, b) => a.SF[0] - b.SF[0])\n\n\tconsole.log(\n\t\t[\n\t\t\t[dim('╭'), dim('─'.repeat(44)), dim('┬'), dim('─'.repeat(11)), dim('┬'), dim('─'.repeat(11)), dim('╮')].join(''),\n\t\t\t[dim('│'), bold('Coverage') + ' '.repeat(34), dim('│'), bold('Functions'), dim('│'), ' '.repeat(4) + bold('Lines'), dim('│')].join(' '),\n\t\t\t[dim('├'), dim('─'.repeat(44)), dim('┼'), dim('─'.repeat(11)), dim('┼'), dim('─'.repeat(11)), dim('┤')].join(''),\n\t\t\ttrtd(\n\t\t\t\tlcovList.reduce(\n\t\t\t\t\t(all, lcov) => {\n\t\t\t\t\t\tall.FNF[0] += lcov.FNF[0]\n\t\t\t\t\t\tall.FNH[0] += lcov.FNH[0]\n\t\t\t\t\t\tall.LF[0] += lcov.LF[0]\n\t\t\t\t\t\tall.LH[0] += lcov.LH[0]\n\t\t\t\t\t\treturn all\n\t\t\t\t\t},\n\t\t\t\t\t{ TN: [''], SF: ['All files'], FN: [], FNDA: [], FNF: [0], FNH: [0], DA: [], LH: [0], LF: [0] },\n\t\t\t\t),\n\t\t\t),\n\t\t\t[dim('╞'), ' '.repeat(42), dim('╪'), ' '.repeat(9), dim('╪'), ' '.repeat(9), dim('╡')].join(' '),\n\t\t\t...lcovList.map((lcov) => trtd(lcov)),\n\t\t\t[dim('╰'), dim('─'.repeat(44)), dim('┴'), dim('─'.repeat(11)), dim('┴'), dim('─'.repeat(11)), dim('╯')].join(''),\n\t\t].join('\\n'),\n\t)\n})()\n"
  },
  {
    "path": ".task/test.js",
    "content": "import { passIcon, failIcon, passText, failText, infoText, dim, green } from './internal/color.js'\nimport { isProcessMeta, getProcessArgOf } from './internal/process.js'\nimport * as fs from './internal/fs.js'\nimport nodemon from 'nodemon'\nimport URL from './internal/url.js'\n\nconst root = URL.from(import.meta.url).to('../')\n\nconst main = async (pkg, opts) => {\n\tlet didFailLast\n\n\t// for each file in the testing directory\n\tfor (let file of await fs.readdir(pkg.to('tests/'))) {\n\t\tfile = pkg.to('tests/').to(file)\n\n\t\t// filter non-js files\n\t\tif (!file.endsWith('.js')) continue\n\n\t\t// filter non-matching files\n\t\tif (opts.only.length && !opts.only.some(name => file.includes(name))) continue\n\n\t\t/** Test results. */\n\t\tconst results = Object.create(null)\n\n\t\t// bootstrap the expect api\n\t\tglobalThis.expect = (await import('./internal/expect.js')).default\n\n\t\t// bootstrap the describe api\n\t\tglobal.describe = async (description, call) => {\n\t\t\t// prepare description results\n\t\t\tresults[description] = Object.create(null)\n\n\t\t\t// bootstrap the test api\n\t\t\tglobal.test = async (test, call) => {\n\t\t\t\t// prepare test results\n\t\t\t\tresults[description][test] = []\n\n\t\t\t\ttry {\n\t\t\t\t\t// run the test\n\t\t\t\t\tawait call()\n\n\t\t\t\t\t// assign success to the results\n\t\t\t\t\tresults[description][test].push(`${passIcon} ${infoText(test)}`)\n\t\t\t\t} catch (error) {\n\t\t\t\t\terror.stack = error.stack || error.message || String(error || '')\n\n\t\t\t\t\terror.stack = [ ...error.stack.split(/\\n/g).slice(1)].join('\\n')\n\n\t\t\t\t\t// assign failure to the results\n\t\t\t\t\tconst errorMessage = error.message.split('\\n')[0]\n\t\t\t\t\tresults[description][test].push(`${failIcon} ${infoText(test)}\\n\\t${errorMessage}`, getErrorStack(error), '')\n\t\t\t\t\tresults[description][test][didFail] = error\n\t\t\t\t\tresults[description][didFail] = true\n\t\t\t\t\tresults[didFail] = true\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\t// run the description\n\t\t\t\tawait call()\n\t\t\t} catch (error) {\n\t\t\t\t// assign description failure to the results\n\t\t\t\tresults[description][''] = [`${failIcon} ${infoText('Error')}`, String(error.message)]\n\t\t\t}\n\t\t}\n\n\t\ttry {\n\t\t\t// run the test file\n\t\t\tawait import(file)\n\t\t} catch (error) {\n\t\t\t// report errors running the test file\n\t\t\tresults[didFail] = error\n\t\t}\n\n\t\tconst failure = results[didFail]\n\n\t\t// space out failures\n\t\tif (didFailLast && !!didFailLast != !!failure) console.log()\n\n\t\t// report details if there is a failure\n\t\tconsole.group(failure ? failText('FAIL') : passText('PASS'), infoText(file.href.slice(root.href.length)))\n\n\t\tif (failure) {\n\t\t\tprocess.exitCode = 1\n\n\t\t\tfor (let description in results) {\n\t\t\t\t// report each description\n\t\t\t\tconsole.group(failure ? failIcon : passIcon, infoText(description))\n\n\t\t\t\tfor (let test in results[description]) {\n\t\t\t\t\t// report each test\n\t\t\t\t\tconsole.log(results[description][test].join('\\n'))\n\t\t\t\t}\n\n\t\t\t\tconsole.groupEnd()\n\t\t\t}\n\n\t\t\t// report any file error\n\t\t\tif (typeof failure === 'object') {\n\t\t\t\tconsole.log(getErrorStack(failure))\n\t\t\t}\n\t\t}\n\n\t\tconsole.groupEnd()\n\n\t\tdidFailLast = results[didFail]\n\t}\n}\n\nconst didFail = Symbol.for('test.failure')\n\nconst getErrorStack = (error) => error.stack.split(/\\n/g).filter(\n\t(line) => !line.includes(import.meta.url) && !line.includes('node:')\n).map(\n\t(line) => line.replace(\n\t\t/(.*?)\\(?(file:[^:]+)(.*?)\\)?$/,\n\t\t($0, before, file, after) => (\n\t\t\tbefore.replace(/(at) ([^\\s]+)?(.*)/, `${dim('$1')} ${green('$2')}$3`) +\n\t\t\tfile.slice(root.href.length) +\n\t\t\tdim(after)\n\t\t)\n\t)\n).join('\\n')\n\nexport const testAll = async (opts) => {\n\tawait main(URL.from(import.meta.url, '../packages/stringify/'), opts)\n\tawait main(URL.from(import.meta.url, '../packages/core/'), opts)\n\tawait main(URL.from(import.meta.url, '../packages/react/'), opts)\n}\n\nif (isProcessMeta(import.meta)) {\n\tif (getProcessArgOf('watch').includes(true)) {\n\t\tlet onlyArgs = getProcessArgOf('only')\n\n\t\tonlyArgs = onlyArgs.length ? ['--only', ...onlyArgs] : onlyArgs\n\n\t\tnodemon(\n\t\t\t[\n\t\t\t\t'-q',\n\t\t\t\t`--watch packages/core/src`,\n\t\t\t\t`--watch packages/core/tests`,\n\t\t\t\t`--watch packages/core/types`,\n\t\t\t\t`--watch packages/react/src`,\n\t\t\t\t`--watch packages/react/tests`,\n\t\t\t\t`--watch packages/react/types`,\n\t\t\t\t`--watch packages/stringify/src`,\n\t\t\t\t`--watch packages/stringify/tests`,\n\t\t\t\t`--watch packages/stringify/types`,\n\n\t\t\t\t// exec\n\t\t\t\t`--exec \"${['node', './.task/test.js', ...onlyArgs].join(' ')}\"`,\n\t\t\t].join(' '),\n\t\t).on('start', () => {\n\t\t\tprocess.stdout.write('\\u001b[3J\\u001b[2J\\u001b[1J')\n\t\t\tconsole.clear()\n\t\t}).on('quit', () => process.exit())\n\t} else {\n\t\ttestAll({\n\t\t\tonly: getProcessArgOf('only'),\n\t\t}).catch((error) => {\n\t\t\tconsole.error(error)\n\n\t\t\tprocess.exitCode = 1\n\t\t})\n\t}\n}\n"
  },
  {
    "path": ".vscode/package.schema.json",
    "content": "{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"allOf\": [\n    {\n      \"$ref\": \"http://json.schemastore.org/package\"\n    },\n    {\n      \"properties\": {\n        \"eslintConfig\": {\n          \"title\": \"ESLint configuration\",\n          \"$ref\": \"http://json.schemastore.org/eslintrc\"\n        },\n        \"prettier\": {\n          \"title\": \"Prettier configuration\",\n          \"$ref\": \"http://json.schemastore.org/prettierrc\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n  \"debug.console.historySuggestions\": false,\n  \"editor.formatOnSave\": false,\n  \"editor.insertSpaces\": false,\n  \"editor.snippetSuggestions\": \"none\",\n  \"editor.suggest.snippetsPreventQuickSuggestions\": false,\n  \"editor.suggestSelection\": \"recentlyUsedByPrefix\",\n  \"editor.wordBasedSuggestions\": false,\n  \"emmet.showAbbreviationSuggestions\": false,\n  \"emmet.showExpandedAbbreviation\": \"never\",\n  \"files.exclude\": {\n    \"**/.DS_Store\": true,\n    \"**/.git\": true,\n    \"**/node_modules\": true,\n    \"**/package-lock.json\": true,\n    \"**/yarn.lock\": true\n  },\n  \"javascript.suggest.enabled\": false,\n  \"javascript.suggest.names\": false,\n  \"typescript.tsserver.maxTsServerMemory\": 8192\n}\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n- Using welcoming and inclusive language\n- Being respectful of differing viewpoints and experiences\n- Gracefully accepting constructive criticism\n- Focusing on what is best for the community\n- Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n- The use of sexualized language or imagery and unwelcome sexual attention or\n  advances\n- Trolling, insulting/derogatory comments, and personal or political attacks\n- Public or private harassment\n- Publishing others' private information, such as a physical or electronic\n  address, without explicit permission\n- Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at colm@workos.com. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to Stitches\n\nWelcome and thanks for your interest! Before submitting a pull request, please take a moment to review these guidelines.\n\n## Reporting Issues\n\nFound a problem? Want a new feature?\n\n- See if your issue or idea has [already been reported].\n- Provide a [reduced test case] or a [live example].\n\nRemember, a bug is a _demonstrable problem_ caused by _our_ code.\n\n## Submitting Pull Requests\n\nPull requests are the greatest contributions, so be sure they are focused in\nscope and avoid unrelated commits.\n\n1. To begin: [fork this project], clone your fork, and add our upstream.\n\n   ```bash\n   # Clone your fork of the repo into the current directory\n   git clone git@github.com:$(npx github-username-cli $(git config user.email))/stitches.git\n\n   # Navigate to the newly cloned directory\n   cd stitches\n\n   # Assign the original repo to a remote called \"upstream\"\n   git remote add upstream git@github.com:modulez/stitches.git\n\n   # Install the tools necessary for testing\n   yarn # or npm install\n   ```\n\n2. Create a branch for your feature or fix:\n\n   ```bash\n   # Move into a new branch for your feature\n   git checkout -b feature/thing\n   ```\n\n   ```bash\n   # Move into a new branch for your fix\n   git checkout -b fix/something\n   ```\n\n3. If your code passes all the tests, then push your feature branch:\n\n   ```bash\n   # Test current code\n   yarn test # or npm test\n\n   # Build current code\n   yarn build # or npm run build\n   ```\n   \n   > Note: ensure your version of Node is 14 or higher to run scripts\n\n   ```bash\n   # Push the branch for your new feature\n   git push origin feature/thing\n   ```\n\n   ```bash\n   # Or, push the branch for your update\n   git push origin update/something\n   ```\n\nThat’s it! Now [open a pull request] with a clear title and description.\n\n[already been reported]: https://github.com/stitchesjs/stitches/issues\n[fork this project]: https://github.com/stitchesjs/stitches/fork\n[live example]: https://codesandbox.io/\n[open a pull request]: https://help.github.com/articles/using-pull-requests/\n[reduced test case]: https://css-tricks.com/reduced-test-cases/\n"
  },
  {
    "path": "LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2022 WorkOS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "Update June 19, 2023: Stitches is no longer actively maintained due to changes in the React ecosystem and maintainer availability. You can <a href=\"https://github.com/stitchesjs/stitches/discussions/1149#discussioncomment-6223090\">read more here</a>.\n\n---\n\n<a href=\"https://stitches.dev\">\n  <img alt=\"stitches\" src=\"https://user-images.githubusercontent.com/372831/112011920-03e21400-8b29-11eb-9c9a-4e14d5a1f575.png\" />\n</a>\n\n# Stitches\n\n## Style your components with confidence\n\nCSS-in-JS with near-zero runtime, SSR, multi-variant support, and a best-in-class developer experience.\n\n#### Stitches Core\n\nFramework-agnostic implementation.\n\n```sh\nnpm install @stitches/core\n```\n\n[Read more](https://github.com/stitchesjs/stitches/tree/main/packages/core)\n\n#### Stitches React\n\nReact wrapper including the `styled` API.\n\n```sh\nnpm install @stitches/react\n```\n\n[Read more](https://github.com/stitchesjs/stitches/tree/main/packages/react)\n\n---\n\n## Documentation\n\nFor full documentation, visit [stitches.dev](https://stitches.dev).\n\n## Contributing\n\nPlease follow our [contributing guidelines](./CONTRIBUTING.md).\n\n## Community\n\nYou can join the [Stitches Discord](https://discord.com/invite/H4eG3Mk) to chat with other members of the community.\n\nHere's a list of community-built projects:\n\n- [babel-plugin-transform-stitches-display-name](https://github.com/afzalsayed96/babel-plugin-transform-stitches-display-name)\n- [stitches-normalize-css](https://github.com/psongpin/stitches-normalize-css)\n- [stitches-crochet](https://github.com/orenelbaum/stitches-crochet)\n- [stitches-native](https://github.com/Temzasse/stitches-native)\n\n## Authors\n\n- Pedro Duarte ([@peduarte](https://twitter.com/peduarte))\n- Jonathan Neal ([@jon_neal](https://twitter.com/jon_neal))\n- Abdulhadi Alhallak ([@hadi_hlk](https://twitter.com/hadi_hlk)) - [WorkOS](https://workos.com)\n\n## License\n\nLicensed under the MIT License, Copyright © 2022-present WorkOS.\n\nSee [LICENSE](./LICENSE.md) for more information.\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"$schema\": \"./.vscode/package.schema.json\",\n  \"name\": \"stitches\",\n  \"type\": \"module\",\n  \"license\": \"MIT\",\n  \"contributors\": [\n    \"Pedro Duarte\",\n    \"Abdulhadi Alhallak <abdul@workos.com>\",\n    \"Jonathan Neal\"\n  ],\n  \"scripts\": {\n    \"build:test:types\": \"yarn workspace @stitches/test build\",\n    \"build\": \"node .task/build.js\",\n    \"build:watch\": \"node .task/build.js --watch\",\n    \"lint\": \"node .task/lint.js\",\n    \"lint:esm\": \"node .task/lint-esm.js\",\n    \"lint:pkg\": \"node .task/lint-pkg.js\",\n    \"lint:tsc\": \"node .task/lint-tsc.js\",\n    \"release\": \"node .task/release.js\",\n    \"test\": \"node .task/test.js\",\n    \"test:coverage\": \"node .task/test-coverage.js .task/test.js\",\n    \"test:watch\": \"node .task/test.js --watch\"\n  },\n  \"workspaces\": [\n    \"packages/core\",\n    \"packages/react\",\n    \"packages/test\",\n    \"packages/stringify\"\n  ],\n  \"dependencies\": {\n    \"@radix-ui/react-polymorphic\": \"0.0.14\",\n    \"@radix-ui/react-separator\": \"0.1.0\",\n    \"@skypack/package-check\": \"0.2.2\",\n    \"@types/node\": \"16.9.6\",\n    \"@types/react\": \"17.0.33\",\n    \"@types/react-dom\": \"17.0.9\",\n    \"@types/react-test-renderer\": \"17.0.1\",\n    \"@typescript-eslint/eslint-plugin\": \"5.36.2\",\n    \"@typescript-eslint/parser\": \"5.36.2\",\n    \"acorn\": \"8.5.0\",\n    \"acorn-class-fields\": \"1.0.0\",\n    \"acorn-import-assertions\": \"1.7.6\",\n    \"acorn-jsx\": \"5.3.2\",\n    \"acorn-logical-assignment\": \"0.1.4\",\n    \"acorn-private-methods\": \"1.0.0\",\n    \"astring\": \"1.7.5\",\n    \"csstype\": \"3.0.9\",\n    \"esbuild\": \"0.13.2\",\n    \"eslint\": \"7.32.0\",\n    \"nodemon\": \"2.0.13\",\n    \"react\": \"17.0.2\",\n    \"react-test-renderer\": \"17.0.2\",\n    \"terser\": \"5.9.0\",\n    \"typescript\": \"4.8.2\"\n  },\n  \"browserslist\": [\n    \"last 1 chrome versions\",\n    \"last 1 firefox versions\",\n    \"last 1 safari versions\",\n    \"maintained node versions\"\n  ],\n  \"eslintConfig\": {\n    \"env\": {\n      \"browser\": true,\n      \"es6\": true,\n      \"node\": true\n    },\n    \"extends\": \"eslint:recommended\",\n    \"globals\": {\n      \"describe\": false,\n      \"expect\": false,\n      \"test\": false\n    },\n    \"parserOptions\": {\n      \"ecmaVersion\": 12,\n      \"sourceType\": \"module\",\n      \"ecmaFeatures\": {\n        \"modules\": true\n      }\n    },\n    \"rules\": {\n      \"semi\": [\n        \"error\",\n        \"never\"\n      ]\n    },\n    \"overrides\": [\n      {\n        \"files\": \"*.ts\",\n        \"env\": {\n          \"browser\": true,\n          \"es6\": true,\n          \"node\": true\n        },\n        \"extends\": [\n          \"plugin:@typescript-eslint/recommended\"\n        ],\n        \"parser\": \"@typescript-eslint/parser\",\n        \"parserOptions\": {\n          \"ecmaVersion\": 2020,\n          \"sourceType\": \"module\",\n          \"ecmaFeatures\": {\n            \"jsx\": true\n          }\n        },\n        \"settings\": {\n          \"react\": {\n            \"version\": \"detect\"\n          }\n        },\n        \"rules\": {\n          \"@typescript-eslint/ban-types\": [\n            \"error\",\n            {\n              \"extendDefaults\": true,\n              \"types\": {\n                \"{}\": false\n              }\n            }\n          ],\n          \"@typescript-eslint/no-explicit-any\": \"off\",\n          \"@typescript-eslint/no-for-in-array\": \"off\",\n          \"@typescript-eslint/no-unnecessary-qualifier\": \"off\",\n          \"@typescript-eslint/no-unnecessary-type-assertion\": \"off\",\n          \"@typescript-eslint/promise-function-async\": \"off\",\n          \"@typescript-eslint/restrict-plus-operands\": \"off\"\n        }\n      }\n    ]\n  },\n  \"prettier\": {\n    \"arrowParens\": \"always\",\n    \"bracketSpacing\": true,\n    \"printWidth\": 240,\n    \"quoteProps\": \"consistent\",\n    \"semi\": false,\n    \"singleQuote\": true,\n    \"tabWidth\": 2,\n    \"trailingComma\": \"all\",\n    \"useTabs\": true,\n    \"overrides\": [\n      {\n        \"files\": [\n          \"*.json\",\n          \"*.md\",\n          \".prettierrc\",\n          \"*.yml\"\n        ],\n        \"options\": {\n          \"useTabs\": false\n        }\n      }\n    ]\n  },\n  \"private\": true\n}\n"
  },
  {
    "path": "packages/core/README.md",
    "content": "# @stitches/core\n\n**@stitches/core** is a framework-agnostic implementation of [stitches](https://stitches.dev), a CSS-in-JS library with a best-in-class developer experience.\n\n<p><br /></p>\n\n```sh\n# with npm\nnpm install @stitches/core\n\n# with yarn\nyarn add @stitches/core\n```\n\n<p><br /></p>\n\n<a href=\"https://codepen.io/embed/prefill?editable=true&default-tab=js%2Cresult&data=%7B%22js%22%3A%22import+%7B+css+%7D+from+%27https%3A%2F%2Fcdn.skypack.dev%2F%40stitches%2Fcore%27%3B%5Cn%5Cn%2F%2F+add+your+code+here%21%5Cn%2F%2F+see+https%3A%2F%2Fstitches.dev+for+documentation%22%7D\"><img src=\"https://img.shields.io/badge/-open_in_codepen-2b354f?logo=codepen&style=flat-square\" alt=\"open in codepen\" valign=\"middle\" align=\"right\"></a>\n\n<br />\n\n```html\n<script type=\"module\">\n\nimport { css } from 'https://cdn.skypack.dev/@stitches/core'\n\n</script>\n```\n\n<p><br /></p>\n\n<a href=\"https://codepen.io/embed/prefill?editable=true&default-tab=js%2Cresult&data=%7B%22js%22%3A%22const+%7B+css+%7D+%3D+stitches%5Cn%5Cn%2F%2F+add+your+code+here%21%5Cn%2F%2F+see+https%3A%2F%2Fstitches.dev+for+documentation%22%2C%22js_external%22%3A%22https%3A%2F%2Funpkg.com%2F%40stitches%2Fcore%2Fdist%2Findex.global.js%22%7D\"><img src=\"https://img.shields.io/badge/-open_in_codepen-2b354f?logo=codepen&style=flat-square\" alt=\"open in codepen\" valign=\"middle\" align=\"right\"></a>\n\n<br />\n\n```js\n<script src=\"https://unpkg.com/@stitches/core/dist/index.global.js\"></script>\n<script>\n\nconst { css } = stitches\n\n</script>\n```\n\n<p><br /></p>\n\n## Documentation\n\nFor full documentation, visit [stitches.dev](https://stitches.dev).\n\n## Contributing\n\nPlease follow our [contributing guidelines](./CONTRIBUTING.md).\n\n## Authors\n\n- Pedro Duarte ([@peduarte](https://twitter.com/peduarte))\n- Abdulhadi Alhallak ([@hadi_hlk](https://twitter.com/hadi_hlk)) - [WorkOS](https://workos.com)\n- Jonathan Neal ([@jon_neal](https://twitter.com/jon_neal))\n\n## License\n\nLicensed under the MIT License, Copyright © 2022-present WorkOS.\n\nSee [LICENSE](./LICENSE.md) for more information.\n"
  },
  {
    "path": "packages/core/package.json",
    "content": "{\n  \"name\": \"@stitches/core\",\n  \"version\": \"1.3.1-1\",\n  \"description\": \"The modern CSS-in-JS library\",\n  \"type\": \"module\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.mjs\",\n  \"types\": \"types/index.d.ts\",\n  \"typesVersions\": {\n    \">= 4.1\": {\n      \"*\": [\n        \"types/*\"\n      ]\n    }\n  },\n  \"jsdelivr\": \"dist/index.global.js\",\n  \"unpkg\": \"dist/index.global.js\",\n  \"exports\": {\n    \".\": {\n      \"require\": \"./dist/index.cjs\",\n      \"import\": \"./dist/index.mjs\",\n      \"types\": \"./types/index.d.ts\"\n    },\n    \"./global\": \"./dist/index.global.js\"\n  },\n  \"files\": [\n    \"dist/*.cjs\",\n    \"dist/*.js\",\n    \"dist/*.map\",\n    \"dist/*.mjs\",\n    \"types/*.d.ts\"\n  ],\n  \"sideEffects\": false,\n  \"license\": \"MIT\",\n  \"repository\": \"stitchesjs/stitches\",\n  \"homepage\": \"https://stitches.dev/\",\n  \"bugs\": \"https://github.com/stitchesjs/stitches/issues\",\n  \"contributors\": [\n    \"Pedro Duarte\",\n    \"Abdulhadi Alhallak <abdul@workos.com>\",\n    \"Jonathan Neal\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"component\",\n    \"components\",\n    \"create\",\n    \"css\",\n    \"css-in-js\",\n    \"global\",\n    \"globals\",\n    \"javascript\",\n    \"js\",\n    \"nesting\",\n    \"object\",\n    \"object-oriented\",\n    \"oo\",\n    \"oocss\",\n    \"oriented\",\n    \"scope\",\n    \"scoped\",\n    \"style\",\n    \"styled\",\n    \"styles\",\n    \"stylesheet\",\n    \"stylesheets\",\n    \"theme\",\n    \"themes\",\n    \"theming\",\n    \"token\",\n    \"tokens\",\n    \"type\",\n    \"typed\",\n    \"types\",\n    \"transform\",\n    \"ts\",\n    \"variable\",\n    \"variables\"\n  ]\n}\n"
  },
  {
    "path": "packages/core/src/ThemeToken.js",
    "content": "import { toTailDashed } from './convert/toTailDashed.js'\n\nexport class ThemeToken {\n\tconstructor(token, value, scale, prefix) {\n\t\tthis.token = token == null ? '' : String(token)\n\t\tthis.value = value == null ? '' : String(value)\n\t\tthis.scale = scale == null ? '' : String(scale)\n\t\tthis.prefix = prefix == null ? '' : String(prefix)\n\t}\n\n\tget computedValue() {\n\t\treturn 'var(' + this.variable + ')'\n\t}\n\n\tget variable() {\n\t\treturn '--' + toTailDashed(this.prefix) + toTailDashed(this.scale) + this.token\n\t}\n\n\ttoString() {\n\t\treturn this.computedValue\n\t}\n}\n"
  },
  {
    "path": "packages/core/src/convert/toCamelCase.js",
    "content": "/** Returns the given value converted to camel-case. */\nexport const toCamelCase = (/** @type {string} */ value) => (!/[A-Z]/.test(value) ? value.replace(/-[^]/g, (capital) => capital[1].toUpperCase()) : value)\n"
  },
  {
    "path": "packages/core/src/convert/toCssRules.js",
    "content": "import { toCamelCase } from './toCamelCase.js'\nimport { toHyphenCase } from './toHyphenCase.js'\nimport { toPolyfilledValue } from './toPolyfilledValue.js'\nimport { toResolvedMediaQueryRanges } from './toResolvedMediaQueryRanges.js'\nimport { toResolvedSelectors } from './toResolvedSelectors.js'\nimport { toSizingValue } from './toSizingValue.js'\nimport { toTailDashed } from './toTailDashed.js'\nimport { toTokenizedValue } from './toTokenizedValue.js'\n\n/** Comma matcher outside rounded brackets. */\nconst comma = /\\s*,\\s*(?![^()]*\\))/\n\n/** Default toString method of Objects. */\nconst toStringOfObject = Object.prototype.toString\n\nexport const toCssRules = (\n\t style,\n\t selectors,\n\t conditions,\n\t config,\n\t onCssText\n) => {\n\t/** @type {[string[], string[], string[]]} CSSOM-compatible rule being created. */\n\tlet currentRule = undefined\n\n\t/** Last utility that was used, cached to prevent recursion. */\n\tlet lastUtil\n\n\t/** Last polyfill that was used, cached to prevent recursion. */\n\tlet lastPoly\n\n\t/** Walks CSS styles and converts them into CSSOM-compatible rules. */\n\tconst walk = (\n\t\t/** @type {Style} Set of CSS styles */ style,\n\t\t/** @type {string[]} Selectors that define the elements to which a set of CSS styles apply. */ selectors,\n\t\t/** @type {string[]} Conditions that define the queries to which a set of CSS styles apply. */ conditions,\n\t) => {\n\t\t/** @type {keyof style} Represents the left-side \"name\" for the property (the at-rule prelude, style-rule selector, or declaration name). */\n\t\tlet name\n\n\t\t/** @type {style[keyof style]} Represents the right-side \"data\" for the property (the rule block, or declaration value). */\n\t\tlet data\n\n\t\tconst each = (style) => {\n\t\t\tfor (name in style) {\n\t\t\t\t/** Whether the current name represents an at-rule. */\n\t\t\t\tconst isAtRuleLike = name.charCodeAt(0) === 64\n\n\t\t\t\tconst datas = isAtRuleLike && Array.isArray(style[name]) ? style[name] : [style[name]]\n\n\t\t\t\tfor (data of datas) {\n\t\t\t\t\tconst camelName = toCamelCase(name)\n\t\t\t\t\t\n\t\t\t\t\t/** Whether the current data represents a nesting rule, which is a plain object whose key is not already a util. */\n\t\t\t\t\tconst isRuleLike = typeof data === 'object' && data && data.toString === toStringOfObject && (!config.utils[camelName] || !selectors.length)\n\n\t\t\t\t\t// if the left-hand \"name\" matches a configured utility\n\t\t\t\t\t// conditionally transform the current data using the configured utility\n\t\t\t\t\tif (camelName in config.utils && !isRuleLike) {\n\t\t\t\t\t\tconst util = config.utils[camelName]\n\n\t\t\t\t\t\tif (util !== lastUtil) {\n\t\t\t\t\t\t\tlastUtil = util\n\n\t\t\t\t\t\t\teach(util(data))\n\n\t\t\t\t\t\t\tlastUtil = null\n\n\t\t\t\t\t\t\tcontinue\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// otherwise, if the left-hand \"name\" matches a configured polyfill\n\t\t\t\t\t// conditionally transform the current data using the polyfill\n\t\t\t\t\telse if (camelName in toPolyfilledValue) {\n\t\t\t\t\t\tconst poly = toPolyfilledValue[camelName]\n\n\t\t\t\t\t\tif (poly !== lastPoly) {\n\t\t\t\t\t\t\tlastPoly = poly\n\n\t\t\t\t\t\t\teach(poly(data))\n\n\t\t\t\t\t\t\tlastPoly = null\n\n\t\t\t\t\t\t\tcontinue\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// if the left-hand \"name\" matches a configured at-rule\n\t\t\t\t\tif (isAtRuleLike) {\n\t\t\t\t\t\t// transform the current name with the configured media at-rule prelude\n\t\t\t\t\t\tname = toResolvedMediaQueryRanges(name.slice(1) in config.media ? '@media ' + config.media[name.slice(1)] : name)\n\t\t\t\t\t}\n\n\t\t\t\t\tif (isRuleLike) {\n\t\t\t\t\t\t/** Next conditions, which may include one new condition (if this is an at-rule). */\n\t\t\t\t\t\tconst nextConditions = isAtRuleLike ? conditions.concat(name) : [...conditions]\n\n\t\t\t\t\t\t/** Next selectors, which may include one new selector (if this is not an at-rule). */\n\t\t\t\t\t\tconst nextSelections = isAtRuleLike ? [...selectors] : toResolvedSelectors(selectors, name.split(comma))\n\n\t\t\t\t\t\tif (currentRule !== undefined) {\n\t\t\t\t\t\t\tonCssText(toCssString(...currentRule))\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tcurrentRule = undefined\n\n\t\t\t\t\t\twalk(data, nextSelections, nextConditions)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (currentRule === undefined) currentRule = [[], selectors, conditions]\n\n\t\t\t\t\t\t/** CSS left-hand side value, which may be a specially-formatted custom property. */\n\t\t\t\t\t\tname = !isAtRuleLike && name.charCodeAt(0) === 36 ? `--${toTailDashed(config.prefix)}${name.slice(1).replace(/\\$/g, '-')}` : name\n\n\t\t\t\t\t\t/** CSS right-hand side value, which may be a specially-formatted custom property. */\n\t\t\t\t\t\tdata = (\n\t\t\t\t\t\t\t// preserve object-like data\n\t\t\t\t\t\t\tisRuleLike ? data\n\t\t\t\t\t\t\t// replace all non-unitless props that are not custom properties with pixel versions\n\t\t\t\t\t\t\t: typeof data === 'number'\n\t\t\t\t\t\t\t\t? data && !(camelName in unitlessProps) && !(name.charCodeAt(0) === 45)\n\t\t\t\t\t\t\t\t\t? String(data) + 'px'\n\t\t\t\t\t\t\t\t: String(data)\n\t\t\t\t\t\t\t// replace tokens with stringified primitive values\n\t\t\t\t\t\t\t: toTokenizedValue(\n\t\t\t\t\t\t\t\ttoSizingValue(camelName, data == null ? '' : data),\n\t\t\t\t\t\t\t\tconfig.prefix,\n\t\t\t\t\t\t\t\tconfig.themeMap[camelName]\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t)\n\n\t\t\t\t\t\tcurrentRule[0].push(`${isAtRuleLike ? `${name} ` : `${toHyphenCase(name)}:`}${data}`)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\teach(style)\n\n\t\tif (currentRule !== undefined) {\n\t\t\tonCssText(toCssString(...currentRule))\n\t\t}\n\t\tcurrentRule = undefined\n\t}\n\n\twalk(style, selectors, conditions)\n}\n\nconst toCssString = (declarations,  selectors,  conditions) => (\n\t`${conditions.map((condition) => `${condition}{`).join('')}${selectors.length ? `${selectors.join(',')}{` : ''}${declarations.join(';')}${selectors.length ? `}` : ''}${Array(conditions.length ? conditions.length + 1 : 0).join('}')}`\n)\n\n/** CSS Properties whose number values should be unitless. */\nexport const unitlessProps = {\n\tanimationIterationCount: 1,\n\tborderImageOutset: 1,\n\tborderImageSlice: 1,\n\tborderImageWidth: 1,\n\tboxFlex: 1,\n\tboxFlexGroup: 1,\n\tboxOrdinalGroup: 1,\n\tcolumnCount: 1,\n\tcolumns: 1,\n\tflex: 1,\n\tflexGrow: 1,\n\tflexPositive: 1,\n\tflexShrink: 1,\n\tflexNegative: 1,\n\tflexOrder: 1,\n\tgridRow: 1,\n\tgridRowEnd: 1,\n\tgridRowSpan: 1,\n\tgridRowStart: 1,\n\tgridColumn: 1,\n\tgridColumnEnd: 1,\n\tgridColumnSpan: 1,\n\tgridColumnStart: 1,\n\tmsGridRow: 1,\n\tmsGridRowSpan: 1,\n\tmsGridColumn: 1,\n\tmsGridColumnSpan: 1,\n\tfontWeight: 1,\n\tlineHeight: 1,\n\topacity: 1,\n\torder: 1,\n\torphans: 1,\n\ttabSize: 1,\n\twidows: 1,\n\tzIndex: 1,\n\tzoom: 1,\n\tWebkitLineClamp: 1,\n\n\t// SVG-related properties\n\tfillOpacity: 1,\n\tfloodOpacity: 1,\n\tstopOpacity: 1,\n\tstrokeDasharray: 1,\n\tstrokeDashoffset: 1,\n\tstrokeMiterlimit: 1,\n\tstrokeOpacity: 1,\n\tstrokeWidth: 1\n}\n"
  },
  {
    "path": "packages/core/src/convert/toHash.js",
    "content": "const toAlphabeticChar = (/** @type {number} */ code) => String.fromCharCode(code + (code > 25 ? 39 : 97))\n\nconst toAlphabeticName = (/** @type {number} */ code) => {\n\tlet name = ''\n\tlet x\n\n\tfor (x = Math.abs(code); x > 52; x = (x / 52) | 0) name = toAlphabeticChar(x % 52) + name\n\n\treturn toAlphabeticChar(x % 52) + name\n}\n\nconst toPhash = (/** @type {number} */ h, /** @type {string} */ x) => {\n\tlet i = x.length\n\twhile (i) h = (h * 33) ^ x.charCodeAt(--i)\n\treturn h\n}\n\nexport const toHash = (/** @type {object} */ value) => toAlphabeticName(\n\ttoPhash(\n\t\t5381,\n\t\tJSON.stringify(value)\n\t) >>> 0\n)\n"
  },
  {
    "path": "packages/core/src/convert/toHyphenCase.js",
    "content": "/** Returns the given value converted to kebab-case. */\nexport const toHyphenCase = (/** @type {string} */ value) => (\n\t// ignore kebab-like values\n\tvalue.includes('-')\n\t\t? value\n\t// replace any upper-case letter with a dash and the lower-case variant\n\t: value.replace(/[A-Z]/g, (capital) => '-' + capital.toLowerCase())\n)\n"
  },
  {
    "path": "packages/core/src/convert/toPolyfilledValue.js",
    "content": "const splitBySpace = /\\s+(?![^()]*\\))/\nconst split = (fn) => (data) => fn(...(typeof data === 'string' ? String(data).split(splitBySpace) : [data]))\n\nexport const toPolyfilledValue = {\n\t// prefixed properties\n\tappearance: (d) => ({ WebkitAppearance: d, appearance: d }),\n\tbackfaceVisibility: (d) => ({ WebkitBackfaceVisibility: d, backfaceVisibility: d }),\n\tbackdropFilter: (d) => ({ WebkitBackdropFilter: d, backdropFilter: d }),\n\tbackgroundClip: (d) => ({ WebkitBackgroundClip: d, backgroundClip: d }),\n\tboxDecorationBreak: (d) => ({ WebkitBoxDecorationBreak: d, boxDecorationBreak: d }),\n\tclipPath: (d) => ({ WebkitClipPath: d, clipPath: d }),\n\tcontent: (d) => ({ content: d.includes('\"') || d.includes(\"'\") || /^([A-Za-z]+\\([^]*|[^]*-quote|inherit|initial|none|normal|revert|unset)$/.test(d) ? d : `\"${d}\"` }),\n\thyphens: (d) => ({ WebkitHyphens: d, hyphens: d }),\n\tmaskImage: (d) => ({ WebkitMaskImage: d, maskImage: d }),\n\tmaskSize: (d) => ({ WebkitMaskSize: d, maskSize: d }),\n\ttextSizeAdjust: (d) => ({ WebkitTextSizeAdjust: d, textSizeAdjust: d }),\n\tuserSelect: (d) => ({ WebkitUserSelect: d, userSelect: d }),\n\n\t// logical properties\n\tmarginBlock: split((s, e) => ({ marginBlockStart: s, marginBlockEnd: e || s })),\n\tmarginInline: split((s, e) => ({ marginInlineStart: s, marginInlineEnd: e || s })),\n\tmaxSize: split((b, i) => ({ maxBlockSize: b, maxInlineSize: i || b })),\n\tminSize: split((b, i) => ({ minBlockSize: b, minInlineSize: i || b })),\n\tpaddingBlock: split((s, e) => ({ paddingBlockStart: s, paddingBlockEnd: e || s })),\n\tpaddingInline: split((s, e) => ({ paddingInlineStart: s, paddingInlineEnd: e || s })),\n}\n"
  },
  {
    "path": "packages/core/src/convert/toResolvedMediaQueryRanges.js",
    "content": "const mqunit = /([\\d.]+)([^]*)/\n\n/** Returns a media query with polyfilled ranges. */\nexport const toResolvedMediaQueryRanges = (\n\t/** @type {string} */\n\tmedia\n) => media.replace(\n\t/\\(\\s*([\\w-]+)\\s*(=|<|<=|>|>=)\\s*([\\w-]+)\\s*(?:(<|<=|>|>=)\\s*([\\w-]+)\\s*)?\\)/g,\n\t(\n\t\t__,\n\t\t/** @type {string} 1st param, either the name or value in the query. */\n\t\tp1,\n\t\t/** @type {string} 1st operator. */\n\t\to1,\n\t\t/** @type {string} 2nd param, either the name or value in the query. */\n\t\tp2,\n\t\t/** @type {string} Optional 2nd operator. */\n\t\to2,\n\t\t/** @type {string} Optional 3rd param, always a value in the query.*/\n\t\tp3\n\t) => {\n\t\t/** Whether the first param is a value. */\n\t\tconst isP1Value = mqunit.test(p1)\n\n\t\t/** Numeric shift applied to a value when an operator is `<` or `>`. */\n\t\tconst shift = 0.0625 * (isP1Value ? -1 : 1)\n\n\t\tconst [name, value] = isP1Value ? [p2, p1] : [p1, p2]\n\n\t\treturn (\n\t\t\t'(' +\n\t\t\t\t(\n\t\t\t\t\to1[0] === '=' ? '' : (o1[0] === '>' === isP1Value ? 'max-' : 'min-')\n\t\t\t\t) + name + ':' +\n\t\t\t\t(o1[0] !== '=' && o1.length === 1 ? value.replace(mqunit, (_, v, u) => Number(v) + shift * (o1 === '>' ? 1 : -1) + u) : value) +\n\t\t\t\t(\n\t\t\t\t\to2\n\t\t\t\t\t\t? ') and (' + (\n\t\t\t\t\t\t\t(o2[0] === '>' ? 'min-' : 'max-') + name + ':' +\n\t\t\t\t\t\t\t(o2.length === 1 ? p3.replace(mqunit, (_, v, u) => Number(v) + shift * (o2 === '>' ? -1 : 1) + u) : p3)\n\t\t\t\t\t\t)\n\t\t\t\t\t: ''\n\t\t\t\t) +\n\t\t\t')'\n\t\t)\n\t}\n)\n"
  },
  {
    "path": "packages/core/src/convert/toResolvedSelectors.js",
    "content": "/** Returns selectors resolved from parent selectors and nested selectors. */\nexport const toResolvedSelectors = (\n\t/** @type {string[]} Parent selectors (e.g. `[\"a\", \"button\"]`). */\n\tparentSelectors,\n\t/** @type {string[]} Nested selectors (e.g. `[\"&:hover\", \"&:focus\"]`). */\n\tnestedSelectors,\n) => (\n\tparentSelectors.length\n\t\t? parentSelectors.reduce(\n\t\t\t(resolvedSelectors, parentSelector) => {\n\t\t\t\tresolvedSelectors.push(\n\t\t\t\t\t...nestedSelectors.map(\n\t\t\t\t\t\t(selector) => (\n\t\t\t\t\t\t\tselector.includes('&') ? selector.replace(\n\t\t\t\t\t\t\t\t/&/g,\n\t\t\t\t\t\t\t\t/[ +>|~]/.test(parentSelector) && /&.*&/.test(selector)\n\t\t\t\t\t\t\t\t\t? `:is(${parentSelector})`\n\t\t\t\t\t\t\t\t: parentSelector\n\t\t\t\t\t\t\t) : parentSelector + ' ' + selector\n\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t\t)\n\n\t\t\t\treturn resolvedSelectors\n\t\t\t},\n\t\t\t[]\n\t\t)\n\t: nestedSelectors\n)\n"
  },
  {
    "path": "packages/core/src/convert/toSizingValue.js",
    "content": "import { toHyphenCase } from './toHyphenCase.js'\n\n/** Returns a declaration sizing value with polyfilled sizing keywords. */\nexport const toSizingValue = (/** @type {string} */ declarationName, /** @type {string} */ declarationValue) => (\n\tdeclarationName in sizeProps && typeof declarationValue === 'string'\n\t\t? declarationValue.replace(\n\t\t\t/^((?:[^]*[^\\w-])?)(fit-content|stretch)((?:[^\\w-][^]*)?)$/,\n\t\t\t(data, lead, main, tail) => (\n\t\t\t\tlead + (\n\t\t\t\t\tmain === 'stretch'\n\t\t\t\t\t\t? `-moz-available${tail};${toHyphenCase(declarationName)}:${lead}-webkit-fill-available`\n\t\t\t\t\t: `-moz-fit-content${tail};${toHyphenCase(declarationName)}:${lead}fit-content`\n\t\t\t\t) + tail\n\t\t\t),\n\t\t)\n\t: String(declarationValue)\n)\n\n/** CSS Properties whose value include a sizing keyword. */\nconst sizeProps = {\n\tblockSize: 1,\n\theight: 1,\n\tinlineSize: 1,\n\tmaxBlockSize: 1,\n\tmaxHeight: 1,\n\tmaxInlineSize: 1,\n\tmaxWidth: 1,\n\tminBlockSize: 1,\n\tminHeight: 1,\n\tminInlineSize: 1,\n\tminWidth: 1,\n\twidth: 1,\n}\n"
  },
  {
    "path": "packages/core/src/convert/toTailDashed.js",
    "content": "/** Returns a filled value with a dash prefix. */\nexport const toTailDashed = (/** @type {string} */ value) => value ? value + '-' : ''\n"
  },
  {
    "path": "packages/core/src/convert/toTokenizedValue.js",
    "content": "import { toTailDashed } from './toTailDashed.js'\n\n/** Returns a declaration value with transformed token values. */\nexport const toTokenizedValue = (\n\t/** @type {string} */\n\tvalue,\n\t/** @type {string} */\n\tprefix,\n\t/** @type {string} */\n\tscale,\n) => value.replace(\n\t/([+-])?((?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[Ee][+-]?\\d+)?)?(\\$|--)([$\\w-]+)/g,\n\t($0, direction, multiplier, separator, token) => (\n\t\tseparator == \"$\" == !!multiplier\n\t\t\t? $0\n\t\t: (\n\t\t\tdirection || separator == '--'\n\t\t\t\t? 'calc('\n\t\t\t: ''\n\t\t) + (\n\t\t\t'var(--' + (\n\t\t\t\tseparator === '$'\n\t\t\t\t\t? toTailDashed(prefix) + (\n\t\t\t\t\t\t!token.includes('$')\n\t\t\t\t\t\t\t? toTailDashed(scale)\n\t\t\t\t\t\t: ''\n\t\t\t\t\t) + token.replace(/\\$/g, '-')\n\t\t\t\t: token\n\t\t\t) + ')' + (\n\t\t\t\tdirection || separator == '--'\n\t\t\t\t\t? '*' + (\n\t\t\t\t\t\tdirection || ''\n\t\t\t\t\t) + (\n\t\t\t\t\t\tmultiplier || '1'\n\t\t\t\t\t) + ')'\n\t\t\t\t: ''\n\t\t\t)\n\t\t)\n\t),\n)\n"
  },
  {
    "path": "packages/core/src/createStitches.js",
    "content": "import { defaultThemeMap } from './default/defaultThemeMap.js'\n\nimport { createMemo } from './utility/createMemo.js'\n\nimport { createCssFunction } from './features/css.js'\nimport { createGlobalCssFunction } from './features/globalCss.js'\nimport { createKeyframesFunction } from './features/keyframes.js'\nimport { createCreateThemeFunction } from './features/createTheme.js'\n\nimport { createSheet } from './sheet.js'\n\nconst createCssMap = createMemo()\n\nexport const createStitches = (config) => {\n\tlet didRun = false\n\n\tconst instance = createCssMap(config, (initConfig) => {\n\t\tdidRun = true\n\n\t\tinitConfig = typeof initConfig === 'object' && initConfig || {}\n\n\t\t// internal configuration\n\t\tconst prefix = 'prefix' in initConfig ? String(initConfig.prefix) : ''\n\t\tconst media = typeof initConfig.media === 'object' && initConfig.media || {}\n\t\tconst root = typeof initConfig.root === 'object' ? initConfig.root || null : globalThis.document || null\n\t\tconst theme = typeof initConfig.theme === 'object' && initConfig.theme || {}\n\t\tconst themeMap = typeof initConfig.themeMap === 'object' && initConfig.themeMap || { ...defaultThemeMap }\n\t\tconst utils = typeof initConfig.utils === 'object' && initConfig.utils || {}\n\n\t\t/** External configuration. */\n\t\tconst config = {\n\t\t\tprefix,\n\t\t\tmedia,\n\t\t\ttheme,\n\t\t\tthemeMap,\n\t\t\tutils,\n\t\t}\n\n\t\t/** Internal stylesheet. */\n\t\tconst sheet = createSheet(root)\n\n\t\tconst returnValue = {\n\t\t\tcss: createCssFunction(config, sheet),\n\t\t\tglobalCss: createGlobalCssFunction(config, sheet),\n\t\t\tkeyframes: createKeyframesFunction(config, sheet),\n\t\t\tcreateTheme: createCreateThemeFunction(config, sheet),\n\t\t\treset() {\n\t\t\t\tsheet.reset()\n\t\t\t\treturnValue.theme.toString()\n\t\t\t},\n\t\t\ttheme: {},\n\t\t\tsheet,\n\t\t\tconfig,\n\t\t\tprefix,\n\t\t\tgetCssText: sheet.toString,\n\t\t\ttoString: sheet.toString,\n\t\t}\n\n\t\t// initialize default theme\n\t\tString(\n\t\t\treturnValue.theme = returnValue.createTheme(theme)\n\t\t)\n\n\t\treturn returnValue\n\t})\n\n\tif (!didRun) instance.reset()\n\n\treturn instance\n}\n"
  },
  {
    "path": "packages/core/src/default/defaultThemeMap.js",
    "content": "const borderStyles = 'borderStyles'\nconst borderWidths = 'borderWidths'\nconst colors = 'colors'\nconst fonts = 'fonts'\nconst fontSizes = 'fontSizes'\nconst fontWeights = 'fontWeights'\nconst letterSpacings = 'letterSpacings'\nconst lineHeights = 'lineHeights'\nconst radii = 'radii'\nconst shadows = 'shadows'\nconst sizes = 'sizes'\nconst space = 'space'\nconst transitions = 'transitions'\nconst zIndices = 'zIndices'\n\n/** @type {DefaultThemeMap} */\nexport const defaultThemeMap = {\n\tgap: space,\n\tgridGap: space,\n\tcolumnGap: space,\n\tgridColumnGap: space,\n\trowGap: space,\n\tgridRowGap: space,\n\tinset: space,\n\tinsetBlock: space,\n\tinsetBlockEnd: space,\n\tinsetBlockStart: space,\n\tinsetInline: space,\n\tinsetInlineEnd: space,\n\tinsetInlineStart: space,\n\tmargin: space,\n\tmarginTop: space,\n\tmarginRight: space,\n\tmarginBottom: space,\n\tmarginLeft: space,\n\tmarginBlock: space,\n\tmarginBlockEnd: space,\n\tmarginBlockStart: space,\n\tmarginInline: space,\n\tmarginInlineEnd: space,\n\tmarginInlineStart: space,\n\tpadding: space,\n\tpaddingTop: space,\n\tpaddingRight: space,\n\tpaddingBottom: space,\n\tpaddingLeft: space,\n\tpaddingBlock: space,\n\tpaddingBlockEnd: space,\n\tpaddingBlockStart: space,\n\tpaddingInline: space,\n\tpaddingInlineEnd: space,\n\tpaddingInlineStart: space,\n\ttop: space,\n\tright: space,\n\tbottom: space,\n\tleft: space,\n\tscrollMargin: space,\n\tscrollMarginTop: space,\n\tscrollMarginRight: space,\n\tscrollMarginBottom: space,\n\tscrollMarginLeft: space,\n\tscrollMarginX: space,\n\tscrollMarginY: space,\n\tscrollMarginBlock: space,\n\tscrollMarginBlockEnd: space,\n\tscrollMarginBlockStart: space,\n\tscrollMarginInline: space,\n\tscrollMarginInlineEnd: space,\n\tscrollMarginInlineStart: space,\n\tscrollPadding: space,\n\tscrollPaddingTop: space,\n\tscrollPaddingRight: space,\n\tscrollPaddingBottom: space,\n\tscrollPaddingLeft: space,\n\tscrollPaddingX: space,\n\tscrollPaddingY: space,\n\tscrollPaddingBlock: space,\n\tscrollPaddingBlockEnd: space,\n\tscrollPaddingBlockStart: space,\n\tscrollPaddingInline: space,\n\tscrollPaddingInlineEnd: space,\n\tscrollPaddingInlineStart: space,\n\n\tfontSize: fontSizes,\n\n\tbackground: colors,\n\tbackgroundColor: colors,\n\tbackgroundImage: colors,\n\tborderImage: colors,\n\tborder: colors,\n\tborderBlock: colors,\n\tborderBlockEnd: colors,\n\tborderBlockStart: colors,\n\tborderBottom: colors,\n\tborderBottomColor: colors,\n\tborderColor: colors,\n\tborderInline: colors,\n\tborderInlineEnd: colors,\n\tborderInlineStart: colors,\n\tborderLeft: colors,\n\tborderLeftColor: colors,\n\tborderRight: colors,\n\tborderRightColor: colors,\n\tborderTop: colors,\n\tborderTopColor: colors,\n\tcaretColor: colors,\n\tcolor: colors,\n\tcolumnRuleColor: colors,\n\tfill: colors,\n\toutline: colors,\n\toutlineColor: colors,\n\tstroke: colors,\n\ttextDecorationColor: colors,\n\n\tfontFamily: fonts,\n\n\tfontWeight: fontWeights,\n\n\tlineHeight: lineHeights,\n\n\tletterSpacing: letterSpacings,\n\n\tblockSize: sizes,\n\tminBlockSize: sizes,\n\tmaxBlockSize: sizes,\n\tinlineSize: sizes,\n\tminInlineSize: sizes,\n\tmaxInlineSize: sizes,\n\twidth: sizes,\n\tminWidth: sizes,\n\tmaxWidth: sizes,\n\theight: sizes,\n\tminHeight: sizes,\n\tmaxHeight: sizes,\n\tflexBasis: sizes,\n\tgridTemplateColumns: sizes,\n\tgridTemplateRows: sizes,\n\n\tborderWidth: borderWidths,\n\tborderTopWidth: borderWidths,\n\tborderRightWidth: borderWidths,\n\tborderBottomWidth: borderWidths,\n\tborderLeftWidth: borderWidths,\n\n\tborderStyle: borderStyles,\n\tborderTopStyle: borderStyles,\n\tborderRightStyle: borderStyles,\n\tborderBottomStyle: borderStyles,\n\tborderLeftStyle: borderStyles,\n\n\tborderRadius: radii,\n\tborderTopLeftRadius: radii,\n\tborderTopRightRadius: radii,\n\tborderBottomRightRadius: radii,\n\tborderBottomLeftRadius: radii,\n\n\tboxShadow: shadows,\n\ttextShadow: shadows,\n\n\ttransition: transitions,\n\n\tzIndex: zIndices,\n}\n\n/**\n * @typedef {Object} DefaultThemeMap\n * @property {space} gap\n * @property {space} gridGap\n * @property {space} columnGap\n * @property {space} gridColumnGap\n * @property {space} rowGap\n * @property {space} gridRowGap\n * @property {space} inset\n * @property {space} insetBlock\n * @property {space} insetBlockEnd\n * @property {space} insetBlockStart\n * @property {space} insetInline\n * @property {space} insetInlineEnd\n * @property {space} insetInlineStart\n * @property {space} margin\n * @property {space} marginTop\n * @property {space} marginRight\n * @property {space} marginBottom\n * @property {space} marginLeft\n * @property {space} marginBlock\n * @property {space} marginBlockEnd\n * @property {space} marginBlockStart\n * @property {space} marginInline\n * @property {space} marginInlineEnd\n * @property {space} marginInlineStart\n * @property {space} padding\n * @property {space} paddingTop\n * @property {space} paddingRight\n * @property {space} paddingBottom\n * @property {space} paddingLeft\n * @property {space} paddingBlock\n * @property {space} paddingBlockEnd\n * @property {space} paddingBlockStart\n * @property {space} paddingInline\n * @property {space} paddingInlineEnd\n * @property {space} paddingInlineStart\n * @property {space} top\n * @property {space} right\n * @property {space} bottom\n * @property {space} left\n * @property {space} scrollMargin\n * @property {space} scrollMarginTop\n * @property {space} scrollMarginRight\n * @property {space} scrollMarginBottom\n * @property {space} scrollMarginLeft\n * @property {space} scrollMarginX\n * @property {space} scrollMarginY\n * @property {space} scrollMarginBlock\n * @property {space} scrollMarginBlockEnd\n * @property {space} scrollMarginBlockStart\n * @property {space} scrollMarginInline\n * @property {space} scrollMarginInlineEnd\n * @property {space} scrollMarginInlineStart\n * @property {space} scrollPadding\n * @property {space} scrollPaddingTop\n * @property {space} scrollPaddingRight\n * @property {space} scrollPaddingBottom\n * @property {space} scrollPaddingLeft\n * @property {space} scrollPaddingX\n * @property {space} scrollPaddingY\n * @property {space} scrollPaddingBlock\n * @property {space} scrollPaddingBlockEnd\n * @property {space} scrollPaddingBlockStart\n * @property {space} scrollPaddingInline\n * @property {space} scrollPaddingInlineEnd\n * @property {space} scrollPaddingInlineStart\n\n * @property {fontSizes} fontSize\n\n * @property {colors} background\n * @property {colors} backgroundColor\n * @property {colors} backgroundImage\n * @property {colors} border\n * @property {colors} borderBlock\n * @property {colors} borderBlockEnd\n * @property {colors} borderBlockStart\n * @property {colors} borderBottom\n * @property {colors} borderBottomColor\n * @property {colors} borderColor\n * @property {colors} borderInline\n * @property {colors} borderInlineEnd\n * @property {colors} borderInlineStart\n * @property {colors} borderLeft\n * @property {colors} borderLeftColor\n * @property {colors} borderRight\n * @property {colors} borderRightColor\n * @property {colors} borderTop\n * @property {colors} borderTopColor\n * @property {colors} caretColor\n * @property {colors} color\n * @property {colors} columnRuleColor\n * @property {colors} fill\n * @property {colors} outline\n * @property {colors} outlineColor\n * @property {colors} stroke\n * @property {colors} textDecorationColor\n\n * @property {fonts} fontFamily\n\n * @property {fontWeights} fontWeight\n\n * @property {lineHeights} lineHeight\n\n * @property {letterSpacings} letterSpacing\n\n * @property {sizes} blockSize\n * @property {sizes} minBlockSize\n * @property {sizes} maxBlockSize\n * @property {sizes} inlineSize\n * @property {sizes} minInlineSize\n * @property {sizes} maxInlineSize\n * @property {sizes} width\n * @property {sizes} minWidth\n * @property {sizes} maxWidth\n * @property {sizes} height\n * @property {sizes} minHeight\n * @property {sizes} maxHeight\n * @property {sizes} flexBasis\n * @property {sizes} gridTemplateColumns\n * @property {sizes} gridTemplateRows\n\n * @property {borderWidths} borderWidth\n * @property {borderWidths} borderTopWidth\n * @property {borderWidths} borderRightWidth\n * @property {borderWidths} borderBottomWidth\n * @property {borderWidths} borderLeftWidth\n\n * @property {borderStyles} borderStyle\n * @property {borderStyles} borderTopStyle\n * @property {borderStyles} borderRightStyle\n * @property {borderStyles} borderBottomStyle\n * @property {borderStyles} borderLeftStyle\n\n * @property {radii} borderRadius\n * @property {radii} borderTopLeftRadius\n * @property {radii} borderTopRightRadius\n * @property {radii} borderBottomRightRadius\n * @property {radii} borderBottomLeftRadius\n\n * @property {shadows} boxShadow\n * @property {shadows} textShadow\n\n * @property {transitions} transition\n\n * @property {zIndices} zIndex\n */\n"
  },
  {
    "path": "packages/core/src/features/createTheme.js",
    "content": "import { ThemeToken } from '../ThemeToken.js'\nimport { createMemo } from '../utility/createMemo.js'\n\nimport { toHash } from '../convert/toHash.js'\nimport { toTailDashed } from '../convert/toTailDashed.js'\nimport { toTokenizedValue } from '../convert/toTokenizedValue.js'\n\nconst createCreateThemeFunctionMap = createMemo()\n\n/** Returns a function that applies a theme and returns tokens of that theme. */\nexport const createCreateThemeFunction = (\n\tconfig,\n\tsheet\n) => (\n\tcreateCreateThemeFunctionMap(config, () => (className, style) => {\n\t\t// theme is the first argument if it is an object, otherwise the second argument as an object\n\t\tstyle = typeof className === 'object' && className || Object(style)\n\n\t\t// class name is the first argument if it is a string, otherwise an empty string\n\t\tclassName = typeof className === 'string' ? className : ''\n\n\t\t/** @type {string} Theme name. @see `{CONFIG_PREFIX}t-{THEME_UUID}` */\n\t\tclassName = className || `${toTailDashed(config.prefix)}t-${toHash(style)}`\n\n\t\tconst selector = `.${className}`\n\n\t\tconst themeObject = {}\n\t\tconst cssProps = []\n\n\t\tfor (const scale in style) {\n\t\t\tthemeObject[scale] = {}\n\n\t\t\tfor (const token in style[scale]) {\n\t\t\t\tconst propertyName = `--${toTailDashed(config.prefix)}${scale}-${token}`\n\t\t\t\tconst propertyValue = toTokenizedValue(String(style[scale][token]), config.prefix, scale)\n\n\t\t\t\tthemeObject[scale][token] = new ThemeToken(token, propertyValue, scale, config.prefix)\n\n\t\t\t\tcssProps.push(`${propertyName}:${propertyValue}`)\n\t\t\t}\n\t\t}\n\n\t\tconst render = () => {\n\t\t\tif (cssProps.length && !sheet.rules.themed.cache.has(className)) {\n\t\t\t\tsheet.rules.themed.cache.add(className)\n\n\t\t\t\tconst rootPrelude = style === config.theme ? ':root,' : ''\n\t\t\t\tconst cssText = `${rootPrelude}.${className}{${cssProps.join(';')}}`\n\n\t\t\t\tsheet.rules.themed.apply(cssText)\n\t\t\t}\n\n\t\t\treturn className\n\t\t}\n\n\t\treturn {\n\t\t\t...themeObject,\n\t\t\tget className() {\n\t\t\t\treturn render()\n\t\t\t},\n\t\t\tselector,\n\t\t\ttoString: render,\n\t\t}\n\t})\n)\n"
  },
  {
    "path": "packages/core/src/features/css.js",
    "content": "import { internal } from '../utility/internal.js'\nimport { createMemo } from '../utility/createMemo.js'\nimport { define } from '../utility/define.js'\nimport { hasNames } from '../utility/hasNames.js'\nimport { hasOwn } from '../utility/hasOwn.js'\n\nimport { toCssRules } from '../convert/toCssRules.js'\nimport { toHash } from '../convert/toHash.js'\nimport { toTailDashed } from '../convert/toTailDashed.js'\nimport { createRulesInjectionDeferrer } from '../sheet.js'\n\nconst createCssFunctionMap = createMemo()\n\n/** Returns a function that applies component styles. */\nexport const createCssFunction = (config, sheet) =>\n  createCssFunctionMap(config, () => {\n    const _css = (args, componentConfig = {}) => {\n      let internals = {\n        type: null,\n        composers: new Set(),\n      }\n\n      for (const arg of args) {\n        // skip any void argument\n        if (arg == null) continue\n\n        // conditionally extend the component\n        if (arg[internal]) {\n          if (internals.type == null) internals.type = arg[internal].type\n\n          for (const composer of arg[internal].composers) {\n            internals.composers.add(composer)\n          }\n        }\n\n        // otherwise, conditionally define the component type\n        else if (arg.constructor !== Object || arg.$$typeof) {\n          if (internals.type == null) internals.type = arg\n        }\n\n        // otherwise, add a new composer to this component\n        else {\n          internals.composers.add(createComposer(arg, config, componentConfig))\n        }\n      }\n\n      // set the component type if none was set\n      if (internals.type == null) internals.type = 'span'\n      if (!internals.composers.size) internals.composers.add(['PJLV', {}, [], [], {}, []])\n\n      return createRenderer(config, internals, sheet, componentConfig)\n    }\n\n\t\tconst css = (...args) => _css(args)\n\n\t\tcss.withConfig = (componentConfig) => (...args) => _css(args, componentConfig)\n\n    return css\n  })\n\n\n/** Creates a composer from a configuration object. */\nconst createComposer = ({ variants: initSingularVariants, compoundVariants: initCompoundVariants, defaultVariants: initDefaultVariants, ...style },  config, {componentId, displayName}) => {\n\t/** @type {string} Composer Unique Identifier. @see `{CONFIG_PREFIX}-?c-{STYLE_HASH}` */\n\tconst hash = componentId || toHash(style)\n\tconst componentNamePrefix =  displayName ? ('c-' + displayName +'') : 'c'\n\tconst className = `${toTailDashed(config.prefix)}${componentNamePrefix}-${hash}`\n\n\tconst singularVariants = []\n\n\tconst compoundVariants = []\n\n\tconst prefilledVariants = Object.create(null)\n\n\tconst undefinedVariants = []\n\n\tfor (const variantName in initDefaultVariants) {\n\t\tprefilledVariants[variantName] = String(initDefaultVariants[variantName])\n\t}\n\n\t// add singular variants\n\tif (typeof initSingularVariants === 'object' && initSingularVariants) {\n\t\tfor (const name in initSingularVariants) {\n\t\t\tif (!hasOwn(prefilledVariants, name)) prefilledVariants[name] = 'undefined'\n\n\t\t\tconst variantPairs = initSingularVariants[name]\n\n\t\t\tfor (const pair in variantPairs) {\n\t\t\t\tconst vMatch = { [name]: String(pair) }\n\n\t\t\t\tif (String(pair) === 'undefined') undefinedVariants.push(name)\n\n\t\t\t\tconst vStyle = variantPairs[pair]\n\n\t\t\t\tconst variant = [vMatch, vStyle, !hasNames(vStyle)]\n\n\t\t\t\tsingularVariants.push(variant)\n\t\t\t}\n\t\t}\n\t}\n\n\t// add compound variants\n\tif (typeof initCompoundVariants === 'object' && initCompoundVariants) {\n\t\tfor (const compoundVariant of initCompoundVariants) {\n\t\t\tlet { css: vStyle, ...vMatch } = compoundVariant\n\n\t\t\tvStyle = typeof vStyle === 'object' && vStyle || {}\n\n\t\t\t// serialize all compound variant pairs\n\t\t\tfor (const name in vMatch) vMatch[name] = String(vMatch[name])\n\n\t\t\tconst variant = [vMatch, vStyle, !hasNames(vStyle)]\n\n\t\t\tcompoundVariants.push(variant)\n\t\t}\n\t}\n\n\treturn  ([className, style, singularVariants, compoundVariants, prefilledVariants, undefinedVariants])\n}\n\nconst createRenderer = (config, internals, sheet, { shouldForwardStitchesProp }) => {\n\tconst [\n\t\tbaseClassName,\n\t\tbaseClassNames,\n\t\tprefilledVariants,\n\t\tundefinedVariants\n\t] = getPreparedDataFromComposers(internals.composers)\n\n\tconst deferredInjector = typeof internals.type === 'function' || !!internals.type.$$typeof ? createRulesInjectionDeferrer(sheet) : null\n\tconst injectionTarget = (deferredInjector || sheet).rules\n\n\tconst selector = `.${baseClassName}${baseClassNames.length > 1 ? `:where(.${baseClassNames.slice(1).join('.')})` : ``}`\n\n\tconst render = (props) => {\n\t\tprops = typeof props === 'object' && props || empty\n\n\t\t// 1. we cannot mutate `props`\n\t\t// 2. we delete variant props\n\t\t// 3. we delete `css` prop\n\t\t// therefore: we must create a new props & css variables\n\t\tconst { ...forwardProps } = props\n\n\t\tconst variantProps = {}\n\n\t\tfor (const name in prefilledVariants) {\n\t\t\tif (name in props) {\n\t\t\t\tif (!shouldForwardStitchesProp?.(name)) delete forwardProps[name]\n\t\t\t\tlet data = props[name]\n\n\t\t\t\tif (typeof data === 'object' && data) {\n\t\t\t\t\tvariantProps[name] = {\n\t\t\t\t\t\t'@initial': prefilledVariants[name],\n\t\t\t\t\t\t...data,\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tdata = String(data)\n\n\t\t\t\t\tvariantProps[name] = (\n\t\t\t\t\t\tdata === 'undefined' && !undefinedVariants.has(name)\n\t\t\t\t\t\t\t? prefilledVariants[name]\n\t\t\t\t\t\t: data\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tvariantProps[name] = prefilledVariants[name]\n\t\t\t}\n\t\t}\n\n\t\tconst classSet = new Set([ ...baseClassNames ])\n\n\t\t// 1. builds up the variants (fills in defaults, calculates @initial on responsive, etc.)\n\t\t// 2. iterates composers\n\t\t// 2.1. add their base class\n\t\t// 2.2. iterate their variants, add their variant classes\n\t\t// 2.2.1. orders regular variants before responsive variants\n\t\t// 2.3. iterate their compound variants, add their compound variant classes\n\n\t\tfor (const [composerBaseClass, composerBaseStyle, singularVariants, compoundVariants] of internals.composers) {\n\t\t\tif (!sheet.rules.styled.cache.has(composerBaseClass)) {\n\t\t\t\tsheet.rules.styled.cache.add(composerBaseClass)\n\n\t\t\t\ttoCssRules(composerBaseStyle, [`.${composerBaseClass}`], [], config, (cssText) => {\n\t\t\t\t\tinjectionTarget.styled.apply(cssText)\n\t\t\t\t})\n\t\t\t}\n\n\t\t\tconst singularVariantsToAdd = getTargetVariantsToAdd(singularVariants, variantProps, config.media)\n\t\t\tconst compoundVariantsToAdd = getTargetVariantsToAdd(compoundVariants, variantProps, config.media, true)\n\n\t\t\tfor (const variantToAdd of singularVariantsToAdd) {\n\t\t\t\tif (variantToAdd === undefined) continue\n\n\t\t\t\tfor (const [vClass, vStyle, isResponsive] of variantToAdd) {\n\t\t\t\t\tconst variantClassName = `${composerBaseClass}-${toHash(vStyle)}-${vClass}`\n\n\t\t\t\t\tclassSet.add(variantClassName)\n\n\t\t\t\t\tconst groupCache = (isResponsive ? sheet.rules.resonevar : sheet.rules.onevar ).cache\n\t\t\t\t\t/* \n\t\t\t\t\t * make sure that normal variants are injected before responsive ones\n\t\t\t\t\t * @see {@link https://github.com/stitchesjs/stitches/issues/737|github}\n\t\t\t\t\t */\n\t\t\t\t\tconst targetInjectionGroup = isResponsive ? injectionTarget.resonevar : injectionTarget.onevar\n\n\t\t\t\t\tif (!groupCache.has(variantClassName)) {\n\t\t\t\t\t\tgroupCache.add(variantClassName)\n\t\t\t\t\t\ttoCssRules(vStyle, [`.${variantClassName}`], [], config, (cssText) => {\n\t\t\t\t\t\t\ttargetInjectionGroup.apply(cssText)\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor (const variantToAdd of compoundVariantsToAdd) {\n\t\t\t\tif (variantToAdd === undefined) continue\n\n\t\t\t\tfor (const [vClass, vStyle] of variantToAdd) {\n\t\t\t\t\tconst variantClassName = `${composerBaseClass}-${toHash(vStyle)}-${vClass}`\n\n\t\t\t\t\tclassSet.add(variantClassName)\n\n\t\t\t\t\tif (!sheet.rules.allvar.cache.has(variantClassName)) {\n\t\t\t\t\t\tsheet.rules.allvar.cache.add(variantClassName)\n\n\t\t\t\t\t\ttoCssRules(vStyle, [`.${variantClassName}`], [], config, (cssText) => {\n\t\t\t\t\t\t\tinjectionTarget.allvar.apply(cssText)\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// apply css property styles\n\t\tconst css = forwardProps.css\n\t\tif (typeof css === 'object' && css) {\n\t\t\tif (!shouldForwardStitchesProp?.('css')) delete forwardProps.css \n\t\t\t/** @type {string} Inline Class Unique Identifier. @see `{COMPOSER_UUID}-i{VARIANT_UUID}-css` */\n\t\t\tconst iClass = `${baseClassName}-i${toHash(css)}-css`\n\n\t\t\tclassSet.add(iClass)\n\n\t\t\tif (!sheet.rules.inline.cache.has(iClass)) {\n\t\t\t\tsheet.rules.inline.cache.add(iClass)\n\n\t\t\t\ttoCssRules(css, [`.${iClass}`], [], config, (cssText) => {\n\t\t\t\t\tinjectionTarget.inline.apply(cssText)\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\n\t\tfor (const propClassName of String(props.className || '').trim().split(/\\s+/)) {\n\t\t\tif (propClassName) classSet.add(propClassName)\n\t\t}\n\n\t\tconst renderedClassName = forwardProps.className = [ ...classSet ].join(' ')\n\n\t\tconst renderedToString = () => renderedClassName\n\n\t\treturn {\n\t\t\ttype: internals.type,\n\t\t\tclassName: renderedClassName,\n\t\t\tselector,\n\t\t\tprops: forwardProps,\n\t\t\ttoString: renderedToString,\n\t\t\tdeferredInjector,\n\t\t}\n\t}\n\n\tconst toString = () => {\n\t\tif (!sheet.rules.styled.cache.has(baseClassName)) render()\n\n\t\treturn baseClassName\n\t}\n\n\treturn define(render, {\n\t\tclassName: baseClassName,\n\t\tselector,\n\t\t[internal]: internals,\n\t\ttoString,\n\t})\n}\n\n/** Returns useful data that can be known before rendering. */\nconst getPreparedDataFromComposers = (composers) => {\n\t/** Class name of the first composer. */\n\tlet baseClassName = ''\n\n\t/** @type {string[]} Combined class names for all composers. */\n\tconst baseClassNames = []\n\n\t/** @type {PrefilledVariants} Combined variant pairings for all composers. */\n\tconst combinedPrefilledVariants = {}\n\n\t/** @type {UndefinedVariants} List of variant names that can have an \"undefined\" pairing. */\n\tconst combinedUndefinedVariants = []\n\n\tfor (const [className, , , , prefilledVariants, undefinedVariants] of composers) {\n\t\tif (baseClassName === '') baseClassName = className\n\n\t\tbaseClassNames.push(className)\n\n\t\tcombinedUndefinedVariants.push(...undefinedVariants)\n\n\t\tfor (const name in prefilledVariants) {\n\t\t\tconst data = prefilledVariants[name]\n\t\t\tif (combinedPrefilledVariants[name] === undefined || data !== 'undefined' || undefinedVariants.includes(data)) combinedPrefilledVariants[name] = data\n\t\t}\n\t}\n\n\tconst preparedData = [\n\t\tbaseClassName,\n\t\tbaseClassNames,\n\t\tcombinedPrefilledVariants,\n\t\tnew Set(combinedUndefinedVariants)\n\t]\n\n\treturn preparedData\n}\n\nconst getTargetVariantsToAdd = (\n\ttargetVariants,\n\tvariantProps,\n\tmedia,\n\tisCompoundVariant,\n) => {\n\t\n\tconst targetVariantsToAdd = []\n\n\ttargetVariants: for (let [vMatch, vStyle, vEmpty] of targetVariants) {\n\t\t// skip empty variants\n\t\tif (vEmpty) continue\n\n\t\t/** Position the variant should be inserted into. */\n\t\tlet vOrder = 0\n\n\t\tlet vName\n\n\t\tlet isResponsive = false\n\t\tfor (vName in vMatch) {\n\t\t\tconst vPair = vMatch[vName]\n\n\t\t\tlet pPair = variantProps[vName]\n\n\t\t\t// exact matches\n\t\t\tif (pPair === vPair) continue\n\t\t\t// responsive matches\n\t\t\telse if (typeof pPair === 'object' && pPair) {\n\t\t\t\t/** @type {boolean} Whether the responsive variant is matched. */\n\t\t\t\tlet didMatch\n\n\t\t\t\tlet qOrder = 0\n\t\t\t\t// media queries matching the same variant\n\t\t\t\tlet matchedQueries\n\t\t\t\tfor (const query in pPair) {\n\t\t\t\t\tif (vPair === String(pPair[query])) {\n\t\t\t\t\t\tif (query !== '@initial') {\n\t\t\t\t\t\t\t// check if the cleanQuery is in the media config and then we push the resulting media query to the matchedQueries array, \n\t\t\t\t\t\t\t// if not, we remove the @media from the beginning and push it to the matched queries which then will be resolved a few lines down\n\t\t\t\t\t\t\t// when we finish working on this variant and want wrap the vStyles with the matchedQueries\n\t\t\t\t\t\t\tconst cleanQuery = query.slice(1);\n\t\t\t\t\t\t\t(matchedQueries = matchedQueries || []).push(cleanQuery in media ? media[cleanQuery] : query.replace(/^@media ?/, ''))\n\t\t\t\t\t\t\tisResponsive = true\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvOrder += qOrder\n\t\t\t\t\t\tdidMatch = true\n\t\t\t\t\t}\n\n\t\t\t\t\t++qOrder\n\t\t\t\t}\n\t\t\t\tif (matchedQueries && matchedQueries.length) {\n\t\t\t\t\tvStyle = {\n\t\t\t\t\t\t['@media ' + matchedQueries.join(', ')]: vStyle,\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!didMatch) continue targetVariants\n\t\t\t}\n\n\t\t\t// non-matches\n\t\t\telse continue targetVariants\n\t\t}\n\t\t(targetVariantsToAdd[vOrder] = targetVariantsToAdd[vOrder] || []).push([isCompoundVariant ? `cv` : `${vName}-${vMatch[vName]}`, vStyle, isResponsive])\n\t}\n\n\treturn targetVariantsToAdd\n}\n\n/** Fallback props object used when no props are passed. */\nconst empty = {}\n"
  },
  {
    "path": "packages/core/src/features/globalCss.js",
    "content": "import { createMemo } from '../utility/createMemo.js'\nimport { define } from '../utility/define.js'\n\nimport { toCssRules } from '../convert/toCssRules.js'\nimport { toHash } from '../convert/toHash.js'\n\nconst createGlobalCssFunctionMap = createMemo()\n\n/** Returns a function that applies global styles. */\nexport const createGlobalCssFunction = (\n\t config,\n\t sheet\n) => createGlobalCssFunctionMap(config, () => (\n\t ...styles\n) => {\n\tconst render = () => {\n\t\tfor (let style of styles) {\n\t\t\tstyle = typeof style === 'object' && style || {}\n\n\t\t\tlet uuid = toHash(style)\n\n\t\t\tif (!sheet.rules.global.cache.has(uuid)) {\n\t\t\t\tsheet.rules.global.cache.add(uuid)\n\n\t\t\t\t// support @import rules\n\t\t\t\tif ('@import' in style) {\n\t\t\t\t\tlet importIndex = [].indexOf.call(sheet.sheet.cssRules, sheet.rules.themed.group) - 1\n\n\t\t\t\t\t// wrap import in quotes as a convenience\n\t\t\t\t\tfor (\n\t\t\t\t\t\tlet importValue of /** @type {string[]} */ ([].concat(style['@import']))\n\t\t\t\t\t) {\n\t\t\t\t\t\timportValue = importValue.includes('\"') || importValue.includes(\"'\") ? importValue : `\"${importValue}\"`\n\n\t\t\t\t\t\tsheet.sheet.insertRule(`@import ${importValue};`, importIndex++)\n\t\t\t\t\t}\n\n\t\t\t\t\tdelete style['@import']\n\t\t\t\t}\n\n\t\t\t\ttoCssRules(style, [], [], config, (cssText) => {\n\t\t\t\t\tsheet.rules.global.apply(cssText)\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\n\t\treturn ''\n\t}\n\n\treturn define(render, {\n\t\ttoString: render,\n\t})\n})\n"
  },
  {
    "path": "packages/core/src/features/keyframes.js",
    "content": "import { createMemo } from '../utility/createMemo.js'\nimport { define } from '../utility/define.js'\n\nimport { toCssRules } from '../convert/toCssRules.js'\nimport { toHash } from '../convert/toHash.js'\nimport { toTailDashed } from '../convert/toTailDashed.js'\n\n/** @typedef {import('..').Config} Config */\n/** @typedef {import('..').Style} Style */\n/** @typedef {import('..').GroupSheet} GroupSheet */\n\nconst createKeyframesFunctionMap = createMemo()\n\n/** Returns a function that applies a keyframes rule. */\nexport const createKeyframesFunction = (/** @type {Config} */ config, /** @type {GroupSheet} */ sheet) => (\n\tcreateKeyframesFunctionMap(config, () => (style) => {\n\t\t/** @type {string} Keyframes Unique Identifier. @see `{CONFIG_PREFIX}-?k-{KEYFRAME_UUID}` */\n\t\tconst name = `${toTailDashed(config.prefix)}k-${toHash(style)}`\n\n\t\tconst render = () => {\n\t\t\tif (!sheet.rules.global.cache.has(name)) {\n\t\t\t\tsheet.rules.global.cache.add(name)\n\n\t\t\t\tconst cssRules = []\n\n\t\t\t\ttoCssRules(style, [], [], config, (cssText) => cssRules.push(cssText))\n\n\t\t\t\tconst cssText = `@keyframes ${name}{${cssRules.join('')}}`\n\n\t\t\t\tsheet.rules.global.apply(cssText)\n\t\t\t}\n\n\t\t\treturn name\n\t\t}\n\n\t\treturn define(render, {\n\t\t\tget name() {\n\t\t\t\treturn render()\n\t\t\t},\n\t\t\ttoString: render,\n\t\t})\n\t})\n)\n"
  },
  {
    "path": "packages/core/src/index.js",
    "content": "import { getCachedConfig } from './utility/getCachedConfig.js'\n\nexport { createStitches } from './createStitches.js'\nexport { defaultThemeMap } from './default/defaultThemeMap.js'\n\nexport const createTheme = (...args) => getCachedConfig().createTheme(...args)\nexport const globalCss = (...args) => getCachedConfig().globalCss(...args)\nexport const keyframes = (...args) => getCachedConfig().keyframes(...args)\n\nexport const css = (...args) => getCachedConfig().css(...args)\n"
  },
  {
    "path": "packages/core/src/sheet.js",
    "content": "import { getNonce } from './utility/getNonce.js'\n\n/**\n * Rules in the sheet appear in this order:\n * 1. theme rules (themed)\n * 2. global rules (global)\n * 3. component rules (styled)\n * 4. non-responsive variants rules (onevar)\n * 5. responsive variants rules (resonevar)\n * 6. compound variants rules (allvar)\n * 7. inline rules (inline)\n */\n/** @type {RuleGroupNames} */\nexport const names = ['themed', 'global', 'styled', 'onevar', 'resonevar', 'allvar', 'inline']\n\nconst isSheetAccessible = (/** @type {CSSStyleSheet} */ sheet) => {\n\tif (sheet.href && !sheet.href.startsWith(location.origin)) {\n\t\treturn false\n\t}\n\n\ttry {\n\t\treturn !!sheet.cssRules\n\t} catch (e) {\n\t\treturn false\n\t}\n}\n\nexport const createSheet = (/** @type {DocumentOrShadowRoot} */ root) => {\n\t/** @type {SheetGroup} Object hosting the hydrated stylesheet. */\n\tlet groupSheet\n\n\tconst toString = () => {\n\t\tconst { cssRules } = groupSheet.sheet\n\t\treturn [].map\n\t\t\t.call(cssRules, (cssRule, cssRuleIndex) => {\n\t\t\t\tconst { cssText } = cssRule\n\n\t\t\t\tlet lastRuleCssText = ''\n\n\t\t\t\tif (cssText.startsWith('--sxs')) return ''\n\n\t\t\t\tif (cssRules[cssRuleIndex - 1] && (lastRuleCssText = cssRules[cssRuleIndex - 1].cssText).startsWith('--sxs')) {\n\t\t\t\t\tif (!cssRule.cssRules.length) return ''\n\n\t\t\t\t\tfor (const name in groupSheet.rules) {\n\t\t\t\t\t\tif (groupSheet.rules[name].group === cssRule) {\n\t\t\t\t\t\t\treturn `--sxs{--sxs:${[...groupSheet.rules[name].cache].join(' ')}}${cssText}`\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn cssRule.cssRules.length ? `${lastRuleCssText}${cssText}` : ''\n\t\t\t\t}\n\n\t\t\t\treturn cssText\n\t\t\t})\n\t\t\t.join('')\n\t}\n\n\tconst reset = () => {\n\t\tif (groupSheet) {\n\t\t\tconst { rules, sheet } = groupSheet\n\n\t\t\tif (!sheet.deleteRule) {\n\t\t\t\twhile (Object(Object(sheet.cssRules)[0]).type === 3) sheet.cssRules.splice(0, 1)\n\n\t\t\t\tsheet.cssRules = []\n\t\t\t}\n\n\t\t\tfor (const groupName in rules) {\n\t\t\t\tdelete rules[groupName]\n\t\t\t}\n\t\t}\n\n\t\t/** @type {StyleSheetList} */\n\t\tconst sheets = Object(root).styleSheets || []\n\n\t\t// iterate all stylesheets until a hydratable stylesheet is found\n\t\tfor (const sheet of sheets) {\n\t\t\tif (!isSheetAccessible(sheet)) continue\n\n\t\t\tfor (let index = 0, rules = sheet.cssRules; rules[index]; ++index) {\n\t\t\t\t/** @type {CSSStyleRule} Possible indicator rule. */\n\t\t\t\tconst check = Object(rules[index])\n\n\t\t\t\t// a hydratable set of rules will start with a style rule (type: 1), ignore all others\n\t\t\t\tif (check.type !== 1) continue\n\n\t\t\t\t/** @type {CSSMediaRule} Possible styling group. */\n\t\t\t\tconst group = Object(rules[index + 1])\n\n\t\t\t\t// a hydratable set of rules will follow with a media rule (type: 4), ignore all others\n\t\t\t\tif (group.type !== 4) continue\n\n\t\t\t\t++index\n\n\t\t\t\tconst { cssText } = check\n\n\t\t\t\t// a hydratable style rule will have a selector of `--sxs`, ignore all others\n\t\t\t\tif (!cssText.startsWith('--sxs')) continue\n\n\t\t\t\tconst cache = cssText.slice(14, -3).trim().split(/\\s+/)\n\n\t\t\t\t/** @type {GroupName} Name of the group. */\n\t\t\t\tconst groupName = names[cache[0]]\n\n\t\t\t\t// a hydratable style rule will have a parsable group, ignore all others\n\t\t\t\tif (!groupName) continue\n\n\t\t\t\t// create a group sheet if one does not already exist\n\t\t\t\tif (!groupSheet) groupSheet = { sheet, reset, rules: {}, toString }\n\n\t\t\t\t// add the group to the group sheet\n\t\t\t\tgroupSheet.rules[groupName] = { group, index, cache: new Set(cache) }\n\t\t\t}\n\n\t\t\t// if a hydratable stylesheet is found, stop looking\n\t\t\tif (groupSheet) break\n\t\t}\n\n\t\t// if no hydratable stylesheet is found\n\t\tif (!groupSheet) {\n\t\t\tconst createCSSMediaRule = (/** @type {string} */ sourceCssText, type) => {\n\t\t\t\treturn /** @type {CSSMediaRule} */ ({\n\t\t\t\t\ttype,\n\t\t\t\t\tcssRules: [],\n\t\t\t\t\tinsertRule(cssText, index) {\n\t\t\t\t\t\tthis.cssRules.splice(index, 0, createCSSMediaRule(cssText, {\n\t\t\t\t\t\t\timport: 3,\n\t\t\t\t\t\t\tundefined: 1\n\t\t\t\t\t\t}[(cssText.toLowerCase().match(/^@([a-z]+)/) || [])[1]] || 4))\n\t\t\t\t\t},\n\t\t\t\t\tget cssText() {\n\t\t\t\t\t\treturn sourceCssText === '@media{}' ? `@media{${[].map.call(this.cssRules, (cssRule) => cssRule.cssText).join('')}}` : sourceCssText\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t}\n\n\t\t\tconst createSheet = () => {\n\t\t\t\tif (!root) {\n\t\t\t\t\treturn createCSSMediaRule('', 'text/css')\n\t\t\t\t}\n\t\t\t\tconst styleEl = document.createElement('style')\n\t\t\t\tconst nonce = getNonce()\n\t\t\t\tif (nonce) {\n\t\t\t\t\tstyleEl.setAttribute('nonce', nonce)\n\t\t\t\t}\n\t\t\t\treturn (root.head || root).appendChild(styleEl).sheet\n\t\t\t}\n\n\t\t\tgroupSheet = {\n\t\t\t\tsheet: createSheet(),\n\t\t\t\trules: {},\n\t\t\t\treset,\n\t\t\t\ttoString,\n\t\t\t}\n\t\t}\n\n\t\tconst { sheet, rules } = groupSheet\n\t\tfor (let i = names.length - 1; i >= 0; --i) {\n\t\t\t// name of group on current index\n\t\t\tconst name = names[i]\n\t\t\tif (!rules[name]) {\n\t\t\t\t// name of prev group\n\t\t\t\tconst prevName = names[i + 1]\n\t\t\t\t// get the index of that prev group or else get the length of the whole sheet\n\t\t\t\tconst index = rules[prevName] ? rules[prevName].index : sheet.cssRules.length\n\t\t\t\t// insert the grouping & the sxs rule\n\t\t\t\tsheet.insertRule('@media{}', index)\n\t\t\t\tsheet.insertRule(`--sxs{--sxs:${i}}`, index)\n\t\t\t\t// add the group to the group sheet\n\t\t\t\trules[name] = { group: sheet.cssRules[index + 1], index, cache: new Set([i]) }\n\t\t\t}\n\t\t\taddApplyToGroup(rules[name])\n\t\t}\n\t}\n\n\treset()\n\n\treturn groupSheet\n}\n\nconst addApplyToGroup = (/** @type {RuleGroup} */ group) => {\n\tconst groupingRule = group.group\n\n\tlet index = groupingRule.cssRules.length\n\n\tgroup.apply = (cssText) => {\n\t\ttry {\n\t\t\tgroupingRule.insertRule(cssText, index)\n\n\t\t\t++index\n\t\t} catch (__) {\n\t\t\t// do nothing and continue\n\t\t}\n\t}\n}\n/** Pending rules for injection */\nconst $pr = Symbol()\n\n/**\n * When a stitches component is extending some other random react component,\n * it’s gonna create a react component (Injector) using this function and then render it after the children,\n * this way, we would force the styles of the wrapper to be injected after the wrapped component\n */\nexport const createRulesInjectionDeferrer = (globalSheet) => {\n\t// the injection deferrer\n\tfunction injector() {\n\t\tfor (let i = 0; i < injector[$pr].length; i++) {\n\t\t\tconst [sheet, cssString] = injector[$pr][i]\n\t\t\tglobalSheet.rules[sheet].apply(cssString)\n\t\t}\n\t\tinjector[$pr] = []\n\t\treturn null\n\t}\n\t// private prop to store pending rules\n\tinjector[$pr] = []\n\t// mocking the rules.apply api used on the sheet\n\tinjector.rules = {}\n\t// creating the apply methods under rules[something]\n\tnames.forEach((sheetName) => (injector.rules[sheetName] = { apply: (rule) => injector[$pr].push([sheetName, rule]) }))\n\treturn injector\n}\n"
  },
  {
    "path": "packages/core/src/utility/createMemo.js",
    "content": "const stringifyReplacer = (name, data) => (typeof data === 'function' ? { '()': Function.prototype.toString.call(data) } : data)\n\nconst stringify = (value) => JSON.stringify(value, stringifyReplacer)\n\n\nexport const createMemo = () => {\n\tconst cache = Object.create(null)\n\n\treturn (value, apply, ...args) => {\n\t\tconst vjson = stringify(value)\n\n\t\treturn vjson in cache ? cache[vjson] : (cache[vjson] = apply(value, ...args))\n\t}\n}\n"
  },
  {
    "path": "packages/core/src/utility/define.js",
    "content": "/** @type {<T>(target: T, source: any) => T} */\nexport const define = (target, source) => Object.defineProperties(target, Object.getOwnPropertyDescriptors(source))\n"
  },
  {
    "path": "packages/core/src/utility/getCachedConfig.js",
    "content": "import { createStitches } from '../createStitches.js'\n\nlet cachedConfig\n\nexport const getCachedConfig = () => cachedConfig || (cachedConfig = createStitches())\n"
  },
  {
    "path": "packages/core/src/utility/getNonce.js",
    "content": "export const getNonce = () => {\n\tif (typeof window.__webpack_nonce__ !== 'undefined') return window.__webpack_nonce__\n\tif (typeof window.nonce !== 'undefined') return window.nonce\n\treturn null\n}\n"
  },
  {
    "path": "packages/core/src/utility/hasNames.js",
    "content": "export const hasNames = (target) => {\n\tfor (const name in target) return true\n\treturn false\n}\n"
  },
  {
    "path": "packages/core/src/utility/hasOwn.js",
    "content": "const { hasOwnProperty } = Object.prototype\n\n\nexport const hasOwn = (target, key) => hasOwnProperty.call(target, key)\n"
  },
  {
    "path": "packages/core/src/utility/index.d.ts",
    "content": "export type Primitive = string | number | bigint | boolean | symbol\nexport type Optional = Primitive | void\nexport type Try<T1, T2, T3 = never, T4 = T1> = T1 extends T2 ? T4 : T3\n\nexport type ToString<T1 = ''> = `${T1}`\nexport type ToTailDashed<T1> = T1 extends '' ? '' : `${T1}-`\n"
  },
  {
    "path": "packages/core/src/utility/internal.js",
    "content": "export const internal = Symbol.for('sxs.internal')\n"
  },
  {
    "path": "packages/core/tests/basic.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Basic', () => {\n\ttest('Existance of methods', () => {\n\t\tconst stitches = createStitches()\n\n\t\texpect(stitches).toBeInstanceOf(Object)\n\t\texpect(stitches.css).toBeInstanceOf(Function)\n\t\texpect(stitches.globalCss).toBeInstanceOf(Function)\n\t\texpect(stitches.keyframes).toBeInstanceOf(Function)\n\t\texpect(stitches.createTheme).toBeInstanceOf(Function)\n\t})\n\n\ttest('Functionality of getCssText()', () => {\n\t\tconst { getCssText } = createStitches()\n\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Functionality of css()', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component1of2 = css()\n\t\tconst className1of2 = `${component1of2}`\n\t\tconst cssString1of2 = getCssText()\n\n\t\texpect(component1of2).toBeInstanceOf(Function)\n\t\texpect(className1of2).toBe('PJLV')\n\t\texpect(cssString1of2).toBe('')\n\n\t\tconst component2of2 = css({ color: 'DodgerBlue' })\n\t\tconst className2of2 = `${component2of2}`\n\t\tconst cssString2of2 = getCssText()\n\n\t\texpect(component2of2).toBeInstanceOf(Function)\n\t\texpect(className2of2).toBe('c-dataoT')\n\t\texpect(cssString2of2).toBe(`--sxs{--sxs:2 PJLV c-dataoT}@media{.c-dataoT{color:DodgerBlue}}`)\n\t})\n\n\ttest('Functionality of reset()', () => {\n\t\tconst { reset, getCssText } = createStitches()\n\n\t\texpect(reset).toBeInstanceOf(Function)\n\n\t\texpect(getCssText()).toBe('')\n\n\t\treset()\n\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Functionality of globalCss()', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tconst rendering1of2 = globalCss()\n\t\tconst className1of2 = `${rendering1of2}`\n\t\tconst cssString1of2 = getCssText()\n\n\t\texpect(rendering1of2).toBeInstanceOf(Function)\n\t\texpect(className1of2).toBe('')\n\t\texpect(cssString1of2).toBe('')\n\n\t\tconst rendering2of2 = globalCss({ body: { margin: 0 } })\n\t\tconst className2of2 = `${rendering2of2}`\n\t\tconst cssString2of2 = getCssText()\n\n\t\texpect(rendering2of2).toBeInstanceOf(Function)\n\t\texpect(className2of2).toBe('')\n\t\texpect(cssString2of2).toBe(`--sxs{--sxs:1 cSHHDh}@media{body{margin:0}}`)\n\t})\n\n\ttest('Functionality of keyframes()', () => {\n\t\tconst { keyframes, getCssText } = createStitches()\n\n\t\tconst rendering1of1 = keyframes({\n\t\t\t'0%': {\n\t\t\t\tcolor: 'Black',\n\t\t\t},\n\t\t\t'100%': {\n\t\t\t\tcolor: 'White',\n\t\t\t},\n\t\t})\n\t\tconst className1of1 = `${rendering1of1}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(rendering1of1).toBeInstanceOf(Function)\n\t\texpect(className1of1).toBe('k-jOrSYg')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:1 k-jOrSYg}@media{@keyframes k-jOrSYg{0%{color:Black}100%{color:White}}}`)\n\t})\n\n\ttest('Functionality of createTheme()', () => {\n\t\tconst { createTheme, getCssText } = createStitches()\n\n\t\tconst rendering1of1 = createTheme({\n\t\t\tcolors: {\n\t\t\t\tred: 'Crimson',\n\t\t\t\tblue: 'DodgerBlue',\n\t\t\t},\n\t\t})\n\n\t\tconst className1of1 = `${rendering1of1}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(rendering1of1).toBeInstanceOf(Object)\n\t\texpect(className1of1).toBe('t-kfidiM')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:0 t-kfidiM}@media{.t-kfidiM{--colors-red:Crimson;--colors-blue:DodgerBlue}}`)\n\t})\n\n\ttest('Functionality of css() — css prop', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component1of1 = css({ color: 'DodgerBlue' })\n\t\tconst className1of1 = `${component1of1({ css: { color: 'Crimson' } })}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(component1of1).toBeInstanceOf(Function)\n\t\texpect(className1of1).toBe('c-dataoT c-dataoT-icaIZdx-css')\n\t\texpect(cssString1of1).toBe(\n\t\t\t`--sxs{--sxs:2 c-dataoT}@media{` +\n\t\t\t\t`.c-dataoT{color:DodgerBlue}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:6 c-dataoT-icaIZdx-css}@media{` +\n\t\t\t\t`.c-dataoT-icaIZdx-css{color:Crimson}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Functionality of css() — variants', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component1of1 = css({\n\t\t\tfontSize: '100%',\n\t\t\tvariants: {\n\t\t\t\tshade: {\n\t\t\t\t\tred: {\n\t\t\t\t\t\tcolor: 'Crimson',\n\t\t\t\t\t},\n\t\t\t\t\tblue: {\n\t\t\t\t\t\tcolor: 'DodgerBlue',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tconst className1of1 = `${component1of1({ shade: 'red' })}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(component1of1).toBeInstanceOf(Function)\n\t\texpect(className1of1).toBe('c-imTdEZ c-imTdEZ-caIZdx-shade-red')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 c-imTdEZ}@media{.c-imTdEZ{font-size:100%}}--sxs{--sxs:3 c-imTdEZ-caIZdx-shade-red}@media{.c-imTdEZ-caIZdx-shade-red{color:Crimson}}`)\n\t})\n\n\ttest('Functionality of css() — utils', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tutils: {\n\t\t\t\tuserSelect: (value) => ({\n\t\t\t\t\tWebkitUserSelector: value,\n\t\t\t\t\tuserSelect: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tconst component1of1 = css({\n\t\t\tuserSelect: 'none',\n\t\t})\n\t\tconst className1of1 = `${component1of1()}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(className1of1).toBe('c-bStdfw')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 c-bStdfw}@media{.c-bStdfw{-webkit-user-selector:none;user-select:none}}`)\n\t})\n\n\ttest('Functionality of stringification — numeric pixel values', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component1of1 = css({\n\t\t\twidth: 100,\n\t\t})\n\t\tconst className1of1 = `${component1of1()}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(className1of1).toBe('c-eBcQxc')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 c-eBcQxc}@media{.c-eBcQxc{width:100px}}`)\n\t})\n\n\ttest('Functionality of stringification — token values', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component1of1 = css({\n\t\t\twidth: '$brand',\n\t\t})\n\n\t\tconst className1of1 = `${component1of1()}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(className1of1).toBe('c-lpaZZu')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 c-lpaZZu}@media{.c-lpaZZu{width:var(--sizes-brand)}}`)\n\t})\n\n\ttest('Functionality of stringification — local tokens', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component1of1 = css({\n\t\t\t$$brand: '500px',\n\t\t\twidth: '$$brand',\n\t\t})\n\n\t\tconst className1of1 = `${component1of1()}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(className1of1).toBe('c-elRGCe')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 c-elRGCe}@media{.c-elRGCe{---brand:500px;width:var(---brand)}}`)\n\t})\n\n\ttest('Functionality of stringification — local tokens prefixed', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tprefix: 'fusion',\n\t\t})\n\n\t\tconst component1of1 = css({\n\t\t\t$$brand: '500px',\n\t\t\twidth: '$$brand',\n\t\t})\n\n\t\tconst className1of1 = `${component1of1()}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(className1of1).toBe('fusion-c-elRGCe')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 fusion-c-elRGCe}@media{.fusion-c-elRGCe{--fusion--brand:500px;width:var(--fusion--brand)}}`)\n\t})\n\n\ttest('Stringification: Utils + Local Tokens', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tutils: {\n\t\t\t\tbackdropFilter: (value) => ({\n\t\t\t\t\tWebkitBackdropFilter: value,\n\t\t\t\t\tbackdropFilter: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tconst component1of1 = css({\n\t\t\t$$blur: 'test',\n\t\t\tbackdropFilter: '$$blur',\n\t\t})\n\n\t\tconst className1of1 = `${component1of1()}`\n\t\tconst cssString1of1 = getCssText()\n\n\t\texpect(className1of1).toBe('c-brAtkJ')\n\t\texpect(cssString1of1).toBe(`--sxs{--sxs:2 c-brAtkJ}@media{.c-brAtkJ{---blur:test;-webkit-backdrop-filter:var(---blur);backdrop-filter:var(---blur)}}`)\n\t})\n\n\ttest('Theme', () => {\n\t\tconst { getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tcolors: {\n\t\t\t\t\tred: 'Crimson',\n\t\t\t\t\tblue: 'DodgerBlue',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:0 t-kfidiM}@media{:root,.t-kfidiM{--colors-red:Crimson;--colors-blue:DodgerBlue}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/component-composition.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Composition', () => {\n\ttest('Renders an empty component', () => {\n\t\tconst { css, toString } = createStitches()\n\t\tconst generic = css()\n\n\t\texpect(generic().props).toEqual({ className: 'PJLV' })\n\t\texpect(toString()).toBe('')\n\t})\n\n\ttest('Renders a component as the final composition by default', () => {\n\t\tconst { css, toString } = createStitches()\n\t\tconst red = css({ color: 'red' })\n\t\tconst size14 = css({ fontSize: '14px' })\n\t\tconst bold = css({ fontWeight: 'bold' })\n\t\tconst title = css(red, size14, bold, { fontFamily: 'monospace' })\n\n\t\texpect(title.className).toBe('c-gmqXFB')\n\t\texpect(toString()).toBe('')\n\t\texpect(String(title)).toBe('c-gmqXFB')\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-gmqXFB c-hzkWus c-cQFdVt c-kngyIZ}@media{` +\n\t\t\t\t`.c-gmqXFB{color:red}` +\n\t\t\t\t`.c-hzkWus{font-size:14px}` +\n\t\t\t\t`.c-cQFdVt{font-weight:bold}` +\n\t\t\t\t`.c-kngyIZ{font-family:monospace}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a component with all compositions', () => {\n\t\tconst { css, toString } = createStitches()\n\t\tconst red = css({ color: 'red' })\n\t\tconst size14 = css({ fontSize: '14px' })\n\t\tconst bold = css({ fontWeight: 'bold' })\n\t\tconst title = css(red, size14, bold, { fontFamily: 'monospace' })\n\n\t\texpect(title().className).toBe('c-gmqXFB c-hzkWus c-cQFdVt c-kngyIZ')\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-gmqXFB c-hzkWus c-cQFdVt c-kngyIZ}@media{` +\n\t\t\t\t`.c-gmqXFB{color:red}` +\n\t\t\t\t`.c-hzkWus{font-size:14px}` +\n\t\t\t\t`.c-cQFdVt{font-weight:bold}` +\n\t\t\t\t`.c-kngyIZ{font-family:monospace}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/component-conditions.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Component Medias', () => {\n\ttest('Authors can define medias applied to components', () => {\n\t\tconst { css, toString } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tmediumUp: '(width >= 768px)',\n\t\t\t},\n\t\t})\n\n\t\tcss({\n\t\t\t'fontSize': '16px',\n\t\t\t'@mediumUp': {\n\t\t\t\tfontSize: '24px',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-jEGvho}@media{` +\n\t\t\t\t`.c-jEGvho{font-size:16px}` +\n\t\t\t\t`@media (min-width:768px){.c-jEGvho{font-size:24px}}` +\n\t\t\t`}`,\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/component-css-prop.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Component with CSS prop', () => {\n\ttest('Authors can create a component and pass it a css prop of overrides', () => {\n\t\tconst { css, toString } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tbp0: '(width < 768px)',\n\t\t\t\tbp1: '(768px <= width < 1400px)',\n\t\t\t\tbp2: '(1400px <= width)',\n\t\t\t},\n\t\t})\n\n\t\tcss({\n\t\t\torder: 1,\n\t\t})({\n\t\t\tcss: {\n\t\t\t\torder: 2,\n\t\t\t},\n\t\t})\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-hhyRYU}@media{` +\n\t\t\t\t`.c-hhyRYU{order:1}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:6 c-hhyRYU-ilhKMMn-css}@media{` +\n\t\t\t\t`.c-hhyRYU-ilhKMMn-css{order:2}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/component-empty-variants.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Empty Variants', () => {\n\ttest('Empty Variants', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\tvariants: {\n\t\t\t\tsize: {\n\t\t\t\t\txl: {},\n\t\t\t\t},\n\t\t\t\ttone: {\n\t\t\t\t\tprimary: {},\n\t\t\t\t},\n\t\t\t},\n\t\t\tcompoundVariants: [\n\t\t\t\t{\n\t\t\t\t\ttone: 'primary',\n\t\t\t\t\tsize: 'xl',\n\t\t\t\t},\n\t\t\t],\n\t\t})({\n\t\t\ttone: 'primary',\n\t\t\tsize: { '@initial': 'xl' },\n\t\t})\n\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Empty Variants', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\tvariants: {\n\t\t\t\tsize: {\n\t\t\t\t\txl: {},\n\t\t\t\t},\n\t\t\t\ttone: {\n\t\t\t\t\tprimary: {},\n\t\t\t\t},\n\t\t\t},\n\t\t\tcompoundVariants: [\n\t\t\t\t{\n\t\t\t\t\ttone: 'primary',\n\t\t\t\t\tsize: 'xl',\n\t\t\t\t\tcss: { fontSize: '24px', color: 'black' },\n\t\t\t\t},\n\t\t\t],\n\t\t})({\n\t\t\ttone: 'primary',\n\t\t\tsize: { '@initial': 'xl' },\n\t\t})\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:5 c-PJLV-lhHHWD-cv}@media{` +\n\t\t\t\t`.c-PJLV-lhHHWD-cv{font-size:24px;color:black}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/component-utils-and-types.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Component: Utilities & Tokens', () => {\n\ttest('Utilities & Tokens of the same type', () => {\n\t\tconst { css, toString } = createStitches({\n\t\t\tutils: {\n\t\t\t\tpx: (value) => ({\n\t\t\t\t\tpaddingLeft: value,\n\t\t\t\t\tpaddingRight: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tcss({\n\t\t\tpx: 15,\n\t\t})()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:2 c-ccgTVz}@media{.c-ccgTVz{padding-left:15px;padding-right:15px}}`)\n\t})\n\n\ttest('Utilities & Tokens of different types', () => {\n\t\tconst { css, toString } = createStitches({\n\t\t\tutils: {\n\t\t\t\tftw: (value) => ({\n\t\t\t\t\tcolor: value,\n\t\t\t\t\tpaddingLeft: value,\n\t\t\t\t\tpaddingRight: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tcss({\n\t\t\tftw: '$sp',\n\t\t})()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:2 c-ilqzId}@media{.c-ilqzId{color:var(--colors-sp);padding-left:var(--space-sp);padding-right:var(--space-sp)}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/component-variants.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Variants', () => {\n\tconst componentConfig = {\n\t\tvariants: {\n\t\t\tcolor: {\n\t\t\t\tblue: {\n\t\t\t\t\tbackgroundColor: 'dodgerblue',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t\tred: {\n\t\t\t\t\tbackgroundColor: 'tomato',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t},\n\t\t\tsize: {\n\t\t\t\tsmall: {\n\t\t\t\t\tfontSize: '16px',\n\t\t\t\t},\n\t\t\t\tlarge: {\n\t\t\t\t\tfontSize: '24px',\n\t\t\t\t},\n\t\t\t},\n\t\t\tlevel: {\n\t\t\t\t1: {\n\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t},\n\t\t\t\t2: {\n\t\t\t\t\tpadding: '1em',\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tsize: 'small',\n\t\t\t\tcolor: 'blue',\n\t\t\t\tcss: {\n\t\t\t\t\ttransform: 'scale(1.2)',\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t}\n\n\ttest('Renders a component without any initial styles', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component()\n\n\t\texpect(expression.className).toBe('c-PJLV')\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Renders a component with 1 matching variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression1 = component({ size: 'small' })\n\n\t\tconst expression1CssText = '.c-PJLV-Gaggi-size-small{font-size:16px}'\n\n\t\texpect(expression1.className).toBe('c-PJLV c-PJLV-Gaggi-size-small')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{${expression1CssText}}`)\n\n\t\tconst expression2 = component({ color: 'blue' })\n\n\t\tconst expression2CssText = '.c-PJLV-kaCQqN-color-blue{background-color:dodgerblue;color:white}'\n\n\t\texpect(expression2.className).toBe('c-PJLV c-PJLV-kaCQqN-color-blue')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small c-PJLV-kaCQqN-color-blue}@media{${expression1CssText + expression2CssText}}`)\n\t})\n\n\ttest('Renders a component with 2 matching variants', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css({\n\t\t\tvariants: {\n\t\t\t\tsize: {\n\t\t\t\t\tsmall: {\n\t\t\t\t\t\tfontSize: '16px',\n\t\t\t\t\t},\n\t\t\t\t\tlarge: {\n\t\t\t\t\t\tfontSize: '24px',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tlevel: {\n\t\t\t\t\t1: {\n\t\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t\t},\n\t\t\t\t\t2: {\n\t\t\t\t\t\tpadding: '1em',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t})\n\t\tconst expression = component({ size: 'small', level: 1 })\n\n\t\texpect(expression.className).toBe('c-PJLV c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1')\n\n\t\tconst expressionSizeSmallCssText = '.c-PJLV-Gaggi-size-small{font-size:16px}'\n\t\tconst expressionLevel1CssText = '.c-PJLV-iRwLiB-level-1{padding:0.5em}'\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1}@media{${expressionSizeSmallCssText + expressionLevel1CssText}}`)\n\t})\n\n\ttest('Renders a component with a 2 matching variants and 1 matching compound', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component({ size: 'small', color: 'blue' })\n\n\t\tconst expressionColorBlueCssText = '.c-PJLV-kaCQqN-color-blue{background-color:dodgerblue;color:white}'\n\t\tconst expressionSizeSmallCssText = '.c-PJLV-Gaggi-size-small{font-size:16px}'\n\t\tconst expressionCompoundCssText = '.c-PJLV-cChFtv-cv{transform:scale(1.2)}'\n\n\t\texpect(expression.className).toBe(`c-PJLV c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small c-PJLV-cChFtv-cv`)\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small}@media{${\n\t\t\t\texpressionColorBlueCssText + expressionSizeSmallCssText\n\t\t\t}}--sxs{--sxs:5 c-PJLV-cChFtv-cv}@media{${\n\t\t\t\texpressionCompoundCssText\n\t\t\t}}`\n\t\t)\n\t})\n})\n\ndescribe('Variants with defaults', () => {\n\tconst componentConfig = {\n\t\tvariants: {\n\t\t\tcolor: {\n\t\t\t\tblue: {\n\t\t\t\t\tbackgroundColor: 'dodgerblue',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t\tred: {\n\t\t\t\t\tbackgroundColor: 'tomato',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t},\n\t\t\tsize: {\n\t\t\t\tsmall: {\n\t\t\t\t\tfontSize: '16px',\n\t\t\t\t},\n\t\t\t\tlarge: {\n\t\t\t\t\tfontSize: '24px',\n\t\t\t\t},\n\t\t\t},\n\t\t\tlevel: {\n\t\t\t\t1: {\n\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t},\n\t\t\t\t2: {\n\t\t\t\t\tpadding: '1em',\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tsize: 'small',\n\t\t\t\tcolor: 'blue',\n\t\t\t\tcss: {\n\t\t\t\t\ttransform: 'scale(1.2)',\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t\tdefaultVariants: {\n\t\t\tsize: 'small',\n\t\t},\n\t}\n\n\ttest('Renders a component with the default variant applied', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component()\n\n\t\texpect(expression.className).toBe('c-PJLV c-PJLV-Gaggi-size-small')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{.c-PJLV-Gaggi-size-small{font-size:16px}}`)\n\t})\n\n\ttest('Renders a component with the default variant explicitly applied', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component({ size: 'small' })\n\n\t\texpect(expression.className).toBe('c-PJLV c-PJLV-Gaggi-size-small')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{.c-PJLV-Gaggi-size-small{font-size:16px}}`)\n\t})\n\n\ttest('Renders a component with the non-default variant explicitly applied', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component({ size: 'large' })\n\n\t\texpect(expression.className).toBe('c-PJLV c-PJLV-hsYHIj-size-large')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-hsYHIj-size-large}@media{.c-PJLV-hsYHIj-size-large{font-size:24px}}`)\n\t})\n\n\ttest('Renders a component with the default variant applied and a different variant explicitly applied', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component({ level: 1 })\n\n\t\texpect(expression.className).toBe('c-PJLV c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1')\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1}@media{` +\n\t\t\t\t// implicit size:small\n\t\t\t\t`.c-PJLV-Gaggi-size-small{font-size:16px}` +\n\t\t\t\t// explicit level:1\n\t\t\t\t`.c-PJLV-iRwLiB-level-1{padding:0.5em}` +\n\t\t\t\t`}`,\n\t\t)\n\t})\n\n\ttest('Renders a component with the default variant applied, a different variant explicitly applied, and a compound applied', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst expression = component({ color: 'blue' })\n\n\t\texpect(expression.className).toBe('c-PJLV c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small c-PJLV-cChFtv-cv')\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small}@media{` +\n\t\t\t\t// explicit color:blue\n\t\t\t\t`.c-PJLV-kaCQqN-color-blue{background-color:dodgerblue;color:white}` +\n\t\t\t\t// implicit size:small\n\t\t\t\t`.c-PJLV-Gaggi-size-small{font-size:16px}` +\n\t\t\t`}--sxs{--sxs:5 c-PJLV-cChFtv-cv}@media{` +\n\t\t\t\t// compound color:blue + size:small\n\t\t\t\t`.c-PJLV-cChFtv-cv{transform:scale(1.2)}` +\n\t\t\t`}`,\n\t\t)\n\t})\n\n\ttest('Returns a component class without the default variant applied when stringified', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfig)\n\t\tconst className = `${component}`\n\n\t\texpect(className).toBe('c-PJLV')\n\t\texpect(getCssText()).toBe('--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{.c-PJLV-Gaggi-size-small{font-size:16px}}')\n\t})\n})\n\ndescribe('Conditional variants', () => {\n\tconst config = {\n\t\tmedia: {\n\t\t\tbp1: '(max-width: 767px)',\n\t\t\tbp2: '(min-width: 768px)',\n\t\t},\n\t}\n\n\t/** Component with variants and compound variants */\n\tconst componentConfig = {\n\t\tvariants: {\n\t\t\tcolor: {\n\t\t\t\tblue: {\n\t\t\t\t\tbackgroundColor: 'dodgerblue',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t\tred: {\n\t\t\t\t\tbackgroundColor: 'tomato',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t},\n\t\t\tsize: {\n\t\t\t\tsmall: {\n\t\t\t\t\tfontSize: '16px',\n\t\t\t\t},\n\t\t\t\tlarge: {\n\t\t\t\t\tfontSize: '24px',\n\t\t\t\t},\n\t\t\t},\n\t\t\tlevel: {\n\t\t\t\t1: {\n\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t},\n\t\t\t\t2: {\n\t\t\t\t\tpadding: '1em',\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tsize: 'small',\n\t\t\t\tcolor: 'blue',\n\t\t\t\tcss: {\n\t\t\t\t\ttransform: 'scale(1.2)',\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t}\n\n\ttest('Renders a component with no variant applied', () => {\n\t\tconst { css, getCssText } = createStitches(config)\n\t\tconst component = css(componentConfig)\n\t\tconst componentClassName = 'c-PJLV'\n\n\t\texpect(component().className).toBe(componentClassName)\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Renders a component with one variant applied', () => {\n\t\tconst { css, getCssText } = createStitches(config)\n\t\tconst component = css(componentConfig)\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst componentSmallClassName = `${componentClassName}-Gaggi-size-small`\n\t\tconst componentSmallCssText = `.${componentSmallClassName}{font-size:16px}`\n\n\t\texpect(component({ size: 'small' }).className).toBe([componentClassName, componentSmallClassName].join(' '))\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{${componentSmallCssText}}`)\n\t})\n\n\ttest('Renders a component with one conditional variant on one breakpoint applied', () => {\n\t\tconst { css, getCssText } = createStitches(config)\n\t\tconst component = css(componentConfig)\n\n\t\texpect(component({ size: { '@bp1': 'small' } }).className).toBe(`c-PJLV c-PJLV-fHtTAQ-size-small`)\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small}@media{` +\n\t\t\t\t`@media (max-width: 767px){.c-PJLV-fHtTAQ-size-small{font-size:16px}}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a component with one conditional variant on two breakpoints applied', () => {\n\t\tconst { css, getCssText } = createStitches(config)\n\t\tconst component = css(componentConfig)\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst componentSmallBp1ClassName = `${componentClassName}-fHtTAQ-size-small`\n\t\tconst componentLargeBp2ClassName = `${componentClassName}-XwbVw-size-large`\n\t\tconst componentSmallBp1CssText = `@media (max-width: 767px){.${componentSmallBp1ClassName}{font-size:16px}}`\n\t\tconst componentLargeBp2CssText = `@media (min-width: 768px){.${componentLargeBp2ClassName}{font-size:24px}}`\n\n\t\texpect(component({ size: { '@bp1': 'small', '@bp2': 'large' } }).className).toBe([componentClassName, componentSmallBp1ClassName, componentLargeBp2ClassName].join(' '))\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\tcomponentSmallBp1CssText +\n\t\t\t\tcomponentLargeBp2CssText +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a component with a conditional variant repeatedly', () => {\n\t\tconst { css, getCssText } = createStitches(config)\n\t\tconst component = css(componentConfig)\n\n\t\texpect(component({ size: { '@bp1': 'small', '@bp2': 'large' } }).className).toBe(`c-PJLV c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large`)\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\t`@media (max-width: 767px){.c-PJLV-fHtTAQ-size-small{font-size:16px}}` +\n\t\t\t\t`@media (min-width: 768px){.c-PJLV-XwbVw-size-large{font-size:24px}}` +\n\t\t\t`}`\n\t\t)\n\n\t\texpect(component({ size: { '@bp1': 'small', '@bp2': 'large' } }).className).toBe(`c-PJLV c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large`)\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\t`@media (max-width: 767px){.c-PJLV-fHtTAQ-size-small{font-size:16px}}` +\n\t\t\t\t`@media (min-width: 768px){.c-PJLV-XwbVw-size-large{font-size:24px}}` +\n\t\t\t`}`\n\t\t)\n\n\t\texpect(component({ size: { '@bp1': 'small', '@bp2': 'large' } }).className).toBe(`c-PJLV c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large`)\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\t`@media (max-width: 767px){.c-PJLV-fHtTAQ-size-small{font-size:16px}}` +\n\t\t\t\t`@media (min-width: 768px){.c-PJLV-XwbVw-size-large{font-size:24px}}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a component with a conditional inline variant repeatedly', () => {\n\t\t{\n\t\t\tconst { css, getCssText } = createStitches(config)\n\t\t\tconst component = css({\n\t\t\t\tvariants: {\n\t\t\t\t\tsize: {\n\t\t\t\t\t\tsmall: {\n\t\t\t\t\t\t\tfontSize: '16px',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tlarge: {\n\t\t\t\t\t\t\tfontSize: '24px',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t})\n\n\t\t\texpect(\n\t\t\t\tcomponent({\n\t\t\t\t\tsize: {\n\t\t\t\t\t\t'@media (width < 768px)': 'small',\n\t\t\t\t\t\t'@media (width >= 768px)': 'large',\n\t\t\t\t\t},\n\t\t\t\t}).className,\n\t\t\t).toBe('c-PJLV c-PJLV-gjWYHE-size-small c-PJLV-fzmUzy-size-large')\n\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:4 c-PJLV-gjWYHE-size-small c-PJLV-fzmUzy-size-large}@media{` +\n\t\t\t\t\t`@media (max-width:767.9375px){.c-PJLV-gjWYHE-size-small{font-size:16px}}` +\n\t\t\t\t\t`@media (min-width:768px){.c-PJLV-fzmUzy-size-large{font-size:24px}}` +\n\t\t\t\t`}`\n\t\t\t)\n\t\t}\n\n\t\t{\n\t\t\tconst { css, getCssText } = createStitches(config)\n\t\t\tconst component = css({\n\t\t\t\tvariants: {\n\t\t\t\t\tsize: {\n\t\t\t\t\t\tlarge: {\n\t\t\t\t\t\t\tfontSize: '24px',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsmall: {\n\t\t\t\t\t\t\tfontSize: '16px',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t})\n\n\t\t\texpect(\n\t\t\t\tcomponent({\n\t\t\t\t\tsize: {\n\t\t\t\t\t\t'@media (width < 768px)': 'small',\n\t\t\t\t\t\t'@media (width >= 768px)': 'large',\n\t\t\t\t\t},\n\t\t\t\t}).className,\n\t\t\t).toBe('c-PJLV c-PJLV-gjWYHE-size-small c-PJLV-fzmUzy-size-large')\n\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:4 c-PJLV-gjWYHE-size-small c-PJLV-fzmUzy-size-large}@media{` +\n\t\t\t\t\t`@media (max-width:767.9375px){.c-PJLV-gjWYHE-size-small{font-size:16px}}` +\n\t\t\t\t\t`@media (min-width:768px){.c-PJLV-fzmUzy-size-large{font-size:24px}}` +\n\t\t\t\t`}`\n\t\t\t)\n\t\t}\n\t})\n})\n\ndescribe('Variant pairing types', () => {\n\tconst componentConfigForBooleanVariant = {\n\t\t'--component': true,\n\t\tvariants: {\n\t\t\ttestBoolean: {\n\t\t\t\ttrue: {\n\t\t\t\t\t'--test-boolean': true,\n\t\t\t\t},\n\t\t\t\tfalse: {\n\t\t\t\t\t'--test-boolean': false,\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\ttest('Renders a variant with an inactive string variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfigForBooleanVariant)\n\t\tconst rendering = component()\n\n\t\texpect(rendering.className).toBe('c-foEXqW')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-foEXqW}@media{` +\n\t\t\t`.c-foEXqW{--component:true}` +\n\t\t`}`)\n\t})\n\n\ttest('Renders a variant with an active string variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfigForBooleanVariant)\n\t\tconst rendering = component({ testBoolean: 'true' })\n\n\t\texpect(rendering.className).toBe('c-foEXqW c-foEXqW-iloXEi-testBoolean-true')\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-foEXqW}@media{` +\n\t\t\t\t`.c-foEXqW{--component:true}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:3 c-foEXqW-iloXEi-testBoolean-true}@media{` +\n\t\t\t\t`.c-foEXqW-iloXEi-testBoolean-true{--test-boolean:true}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a variant with an active boolean variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfigForBooleanVariant)\n\t\tconst rendering = component({ testBoolean: true })\n\n\t\texpect(rendering.className).toBe('c-foEXqW c-foEXqW-iloXEi-testBoolean-true')\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-foEXqW}@media{` +\n\t\t\t\t`.c-foEXqW{--component:true}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:3 c-foEXqW-iloXEi-testBoolean-true}@media{` +\n\t\t\t\t`.c-foEXqW-iloXEi-testBoolean-true{--test-boolean:true}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a variant with an active responsive string variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfigForBooleanVariant)\n\t\tconst rendering = component({ testBoolean: { '@media (min-width: 640px)': 'true' } })\n\n\t\texpect(rendering.className).toBe('c-foEXqW c-foEXqW-brOaTK-testBoolean-true')\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-foEXqW}@media{` +\n\t\t\t\t`.c-foEXqW{--component:true}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:4 c-foEXqW-brOaTK-testBoolean-true}@media{` +\n\t\t\t\t`@media (min-width: 640px){` +\n\t\t\t\t\t`.c-foEXqW-brOaTK-testBoolean-true{--test-boolean:true}` +\n\t\t\t\t`}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a variant with an active responsive boolean variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\t\tconst component = css(componentConfigForBooleanVariant)\n\t\tconst rendering = component({ testBoolean: { '@media (min-width: 640px)': true } })\n\n\t\texpect(rendering.className).toBe('c-foEXqW c-foEXqW-brOaTK-testBoolean-true')\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-foEXqW}@media{` +\n\t\t\t\t`.c-foEXqW{--component:true}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:4 c-foEXqW-brOaTK-testBoolean-true}@media{` +\n\t\t\t\t`@media (min-width: 640px){` +\n\t\t\t\t\t`.c-foEXqW-brOaTK-testBoolean-true{--test-boolean:true}` +\n\t\t\t\t`}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/global-atrules.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Support @import', () => {\n\ttest('Authors can define an @import rule', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tconst importURL = `https://unpkg.com/sanitize.css@12.0.1/sanitize.css`\n\n\t\tglobalCss({\n\t\t\t'@import': `\"${importURL}\"`,\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`@import \"${importURL}\";`)\n\t})\n\n\ttest('Authors can define multiple @import rules', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tconst importURL1 = `https://unpkg.com/sanitize.css@12.0.1/sanitize.css`\n\t\tconst importURL2 = `https://unpkg.com/sanitize.css@12.0.1/typography.css`\n\n\t\tglobalCss({\n\t\t\t'@import': [`\"${importURL1}\"`, `\"${importURL2}\"`],\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`@import \"${importURL1}\";@import \"${importURL2}\";`)\n\t})\n\n\ttest('Authors can an @import rule without quotes', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tconst importURL = `https://unpkg.com/sanitize.css@12.0.1/sanitize.css`\n\n\t\tglobalCss({\n\t\t\t'@import': importURL,\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`@import \"${importURL}\";`)\n\t})\n})\n\ndescribe('Support @font-face', () => {\n\ttest('Authors can define a @font-face rule', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'@font-face': {\n\t\t\t\tfontFamily: 'system-ui',\n\t\t\t\tfontStyle: 'normal',\n\t\t\t\tfontWeight: 400,\n\t\t\t\tsrc: [\n\t\t\t\t\t`local(\".SFNS-Regular\")`,\n\t\t\t\t\t`local(\".SFNSText-Regular\")`,\n\t\t\t\t\t`local(\".HelveticaNeueDeskInterface-Regular\")`,\n\t\t\t\t\t`local(\".LucidaGrandeUI\")`,\n\t\t\t\t\t`local(\"Segoe UI\")`,\n\t\t\t\t\t`local(\"Ubuntu\")`,\n\t\t\t\t\t`local(\"Roboto-Regular\")`,\n\t\t\t\t\t`local(\"DroidSans\")`,\n\t\t\t\t\t`local(\"Tahoma\")`,\n\t\t\t\t],\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:1 PCbjJ}` +\n\t\t\t`@media{` +\n\t\t\t\t`@font-face{` +\n\t\t\t\t\t`font-family:system-ui;` +\n\t\t\t\t\t`font-style:normal;` +\n\t\t\t\t\t`font-weight:400;` +\n\t\t\t\t\t`src:local(\".SFNS-Regular\"),local(\".SFNSText-Regular\"),local(\".HelveticaNeueDeskInterface-Regular\"),local(\".LucidaGrandeUI\"),local(\"Segoe UI\"),local(\"Ubuntu\"),local(\"Roboto-Regular\"),local(\"DroidSans\"),local(\"Tahoma\")` +\n\t\t\t\t`}` +\n\t\t\t`}`,\n\t\t)\n\t})\n\n\ttest('Authors can define multiple @font-face rules', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'@font-face': [\n\t\t\t\t{\n\t\t\t\t\tfontFamily: 'system-ui',\n\t\t\t\t\tfontStyle: 'normal',\n\t\t\t\t\tfontWeight: 400,\n\t\t\t\t\tsrc: [\n\t\t\t\t\t\t`local(\".SFNS-Regular\")`,\n\t\t\t\t\t\t`local(\".SFNSText-Regular\")`,\n\t\t\t\t\t\t`local(\".HelveticaNeueDeskInterface-Regular\")`,\n\t\t\t\t\t\t`local(\".LucidaGrandeUI\")`,\n\t\t\t\t\t\t`local(\"Segoe UI\")`,\n\t\t\t\t\t\t`local(\"Ubuntu\")`,\n\t\t\t\t\t\t`local(\"Roboto-Regular\")`,\n\t\t\t\t\t\t`local(\"DroidSans\")`,\n\t\t\t\t\t\t`local(\"Tahoma\")`,\n\t\t\t\t\t],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tfontFamily: 'system-ui',\n\t\t\t\t\tfontStyle: 'italic',\n\t\t\t\t\tfontWeight: 400,\n\t\t\t\t\tsrc: [\n\t\t\t\t\t\t`local(\".SFNS-Italic\")`,\n\t\t\t\t\t\t`local(\".SFNSText-Italic\")`,\n\t\t\t\t\t\t`local(\".HelveticaNeueDeskInterface-Italic\")`,\n\t\t\t\t\t\t`local(\".LucidaGrandeUI\")`,\n\t\t\t\t\t\t`local(\"Segoe UI Italic\")`,\n\t\t\t\t\t\t`local(\"Ubuntu Italic\")`,\n\t\t\t\t\t\t`local(\"Roboto-Italic\")`,\n\t\t\t\t\t\t`local(\"DroidSans\")`,\n\t\t\t\t\t\t`local(\"Tahoma\")`,\n\t\t\t\t\t],\n\t\t\t\t},\n\t\t\t],\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:1 JJHhj}` +\n\t\t\t`@media{` +\n\t\t\t\t`@font-face{` +\n\t\t\t\t\t`font-family:system-ui;` +\n\t\t\t\t\t`font-style:normal;` +\n\t\t\t\t\t`font-weight:400;` +\n\t\t\t\t\t`src:local(\".SFNS-Regular\"),local(\".SFNSText-Regular\"),local(\".HelveticaNeueDeskInterface-Regular\"),local(\".LucidaGrandeUI\"),local(\"Segoe UI\"),local(\"Ubuntu\"),local(\"Roboto-Regular\"),local(\"DroidSans\"),local(\"Tahoma\")` +\n\t\t\t\t`}` +\n\n\t\t\t\t`@font-face{` +\n\t\t\t\t\t`font-family:system-ui;` +\n\t\t\t\t\t`font-style:italic;` +\n\t\t\t\t\t`font-weight:400;` +\n\t\t\t\t\t`src:local(\".SFNS-Italic\"),local(\".SFNSText-Italic\"),local(\".HelveticaNeueDeskInterface-Italic\"),local(\".LucidaGrandeUI\"),local(\"Segoe UI Italic\"),local(\"Ubuntu Italic\"),local(\"Roboto-Italic\"),local(\"DroidSans\"),local(\"Tahoma\")` +\n\t\t\t\t`}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-450.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #450', () => {\n\ttest('Basic Tests', () => {\n\t\tconst getFreshComponents = () => {\n\t\t\tconst { css, getCssText } = createStitches()\n\n\t\t\tconst component1 = css({\n\t\t\t\tvariants: {\n\t\t\t\t\tcolor: {\n\t\t\t\t\t\tred: {\n\t\t\t\t\t\t\tcolor: 'red',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tblue: {\n\t\t\t\t\t\t\tcolor: 'blue',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tdefaultVariants: {\n\t\t\t\t\tcolor: 'red',\n\t\t\t\t},\n\t\t\t});\n\n\t\t\tconst component2 = css(component1, {\n\t\t\t\tvariants: {\n\t\t\t\t\tcolor: {\n\t\t\t\t\t\torange: {\n\t\t\t\t\t\t\tcolor: 'orange',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\n\t\t\t\tdefaultVariants: {\n\t\t\t\t\tcolor: 'orange',\n\t\t\t\t},\n\t\t\t});\n\n\t\t\tconst component3 = css(component2, {\n\t\t\t\tvariants: {\n\t\t\t\t\tcolor: {\n\t\t\t\t\t\tpurple: {\n\t\t\t\t\t\t\tcolor: 'rebeccapurple',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\n\t\t\t\tdefaultVariants: {\n\t\t\t\t\tcolor: 'purple',\n\t\t\t\t},\n\t\t\t})\n\n\t\t\treturn { component1, component2, component3, getCssText }\n\t\t}\n\n\t\ttest('Render component1() as red, inherited from defaultVariants', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1()\n\t\t\texpect(render.className).toBe(`c-PJLV c-PJLV-gmqXFB-color-red`)\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-gmqXFB-color-red}@media{.c-PJLV-gmqXFB-color-red{color:red}}`)\n\t\t})\n\n\t\ttest('Render component1({ color: \"blue\" }) as blue, assigned from props', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1({ color: 'blue' })\n\t\t\texpect(render.className).toBe(`c-PJLV c-PJLV-kydkiA-color-blue`)\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-kydkiA-color-blue}@media{.c-PJLV-kydkiA-color-blue{color:blue}}`)\n\t\t})\n\n\t\ttest('Render component1({ color: \"red\" }) as red, assigned from props', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1({ color: 'red' })\n\t\t\texpect(render.className).toBe(`c-PJLV c-PJLV-gmqXFB-color-red`)\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-gmqXFB-color-red}@media{.c-PJLV-gmqXFB-color-red{color:red}}`)\n\t\t})\n\n\t\ttest('Render component1({ color: { \"@media (width >= 640px)\": \"blue\" } }) as red then blue, inherited from defaultVariants, assigned from props', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1({ color: { '@media (min-width: 640px)': 'blue' } })\n\t\t\texpect(render.className).toBe(`c-PJLV c-PJLV-gmqXFB-color-red c-PJLV-bBevdw-color-blue`)\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-gmqXFB-color-red}@media{.c-PJLV-gmqXFB-color-red{color:red}}--sxs{--sxs:4 c-PJLV-bBevdw-color-blue}@media{@media (min-width: 640px){.c-PJLV-bBevdw-color-blue{color:blue}}}`)\n\t\t})\n\n\t\ttest('Render component2() as orange, inherited from defaultVariants', () => {\n\t\t\tconst { component2, getCssText } = getFreshComponents()\n\t\t\tconst render = component2()\n\n\t\t\texpect(render.className).toBe(`c-PJLV c-PJLV-vMTTG-color-orange`)\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-vMTTG-color-orange}@media{.c-PJLV-vMTTG-color-orange{color:orange}}`)\n\t\t})\n\n\t\ttest('Render component2({ color: { \"@media (width >= 640px)\": \"blue\" } }) as orange then blue, inherited from defaultVariants, assigned from props', () => {\n\t\t\tconst { component2, getCssText } = getFreshComponents()\n\t\t\tconst render = component2({ color: { '@media (min-width: 640px)': 'blue' } })\n\t\t\texpect(render.className).toBe(`c-PJLV c-PJLV-bBevdw-color-blue c-PJLV-vMTTG-color-orange`)\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:3 c-PJLV-vMTTG-color-orange}` + `@media{.c-PJLV-vMTTG-color-orange{color:orange}}` + `--sxs{--sxs:4 c-PJLV-bBevdw-color-blue}@media{` + `@media (min-width: 640px){.c-PJLV-bBevdw-color-blue{color:blue}}` + `}`,\n\t\t\t)\n\t\t})\n\t})\n\n\ttest('Basic Tests ported from the React version', () => {\n\t\tconst getFreshComponents = () => {\n\t\t\tconst { css, getCssText } = createStitches()\n\n\t\t\tconst component1 = css({\n\t\t\t\t'--component': 1,\n\n\t\t\t\tvariants: {\n\t\t\t\t\tappearance: {\n\t\t\t\t\t\tprimary: {},\n\t\t\t\t\t\tsecondary: { '--appearance': 'secondary' },\n\t\t\t\t\t},\n\t\t\t\t\tcolor: {\n\t\t\t\t\t\tred: {},\n\t\t\t\t\t\tpurple: { '--color': 'purple' },\n\t\t\t\t\t\tlightBlue: { '--color': 'lightBlue' },\n\t\t\t\t\t},\n\t\t\t\t},\n\n\t\t\t\tcompoundVariants: [\n\t\t\t\t\t{\n\t\t\t\t\t\tappearance: 'secondary',\n\t\t\t\t\t\tcolor: 'lightBlue',\n\t\t\t\t\t\tcss: {\n\t\t\t\t\t\t\t'--compound': 'appearance secondary / color lightBlue',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t],\n\n\t\t\t\tdefaultVariants: {\n\t\t\t\t\tappearance: 'primary',\n\t\t\t\t\tcolor: 'red',\n\t\t\t\t},\n\t\t\t})\n\n\t\t\tconst component2 = css(component1, {\n\t\t\t\t'--component': 2,\n\n\t\t\t\t'defaultVariants': {\n\t\t\t\t\tappearance: 'secondary',\n\t\t\t\t\tcolor: 'lightBlue',\n\t\t\t\t},\n\t\t\t})\n\n\t\t\treturn { component1, component2, getCssText }\n\t\t}\n\n\t\ttest('Render component1()', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1()\n\t\t\texpect(render.className).toBe(`c-jyxqjt`)\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-jyxqjt}@media{.c-jyxqjt{--component:1}}`)\n\t\t})\n\n\t\ttest('Render component1({ color: \"lightBlue\" })', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1({ color: 'lightBlue' })\n\t\t\texpect(render.className).toBe(`c-jyxqjt c-jyxqjt-ilDyRi-color-lightBlue`)\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:2 c-jyxqjt}@media{` +\n\t\t\t\t\t`.c-jyxqjt{--component:1}` +\n\t\t\t\t`}` +\n\t\t\t\t`--sxs{--sxs:3 c-jyxqjt-ilDyRi-color-lightBlue}@media{` +\n\t\t\t\t\t`.c-jyxqjt-ilDyRi-color-lightBlue{--color:lightBlue}` +\n\t\t\t\t`}`\n\t\t\t)\n\t\t})\n\n\t\ttest('Render component1({ appearance: \"secondary\" })', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1({ appearance: 'secondary' })\n\t\t\texpect(render.className).toBe(`c-jyxqjt c-jyxqjt-cOChOn-appearance-secondary`)\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:2 c-jyxqjt}@media{` +\n\t\t\t\t\t`.c-jyxqjt{--component:1}` +\n\t\t\t\t`}` +\n\t\t\t\t`--sxs{--sxs:3 c-jyxqjt-cOChOn-appearance-secondary}@media{` +\n\t\t\t\t\t`.c-jyxqjt-cOChOn-appearance-secondary{--appearance:secondary}` +\n\t\t\t\t`}`\n\t\t\t)\n\t\t})\n\n\t\ttest('Render component1({ appearance: \"secondary\", color: \"lightBlue\" })', () => {\n\t\t\tconst { component1, getCssText } = getFreshComponents()\n\t\t\tconst render = component1({ appearance: 'secondary', color: 'lightBlue' })\n\t\t\texpect(render.className).toBe(`c-jyxqjt c-jyxqjt-cOChOn-appearance-secondary c-jyxqjt-ilDyRi-color-lightBlue c-jyxqjt-gYqlvA-cv`)\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:2 c-jyxqjt}@media{` +\n\t\t\t\t\t`.c-jyxqjt{--component:1}` +\n\t\t\t\t\t`}` +\n\t\t\t\t\t`--sxs{--sxs:3 c-jyxqjt-cOChOn-appearance-secondary c-jyxqjt-ilDyRi-color-lightBlue}@media{` +\n\t\t\t\t\t`.c-jyxqjt-cOChOn-appearance-secondary{--appearance:secondary}` +\n\t\t\t\t\t`.c-jyxqjt-ilDyRi-color-lightBlue{--color:lightBlue}` +\n\t\t\t\t\t`}` +\n\t\t\t\t\t`--sxs{--sxs:5 c-jyxqjt-gYqlvA-cv}@media{` +\n\t\t\t\t\t`.c-jyxqjt-gYqlvA-cv{--compound:appearance secondary / color lightBlue}` +\n\t\t\t\t\t`}`,\n\t\t\t)\n\t\t})\n\n\t\ttest('Render component2()', () => {\n\t\t\tconst { component2, getCssText } = getFreshComponents()\n\t\t\tconst render = component2()\n\t\t\texpect(render.className).toBe(`c-jyxqjt c-dkRcuu c-jyxqjt-cOChOn-appearance-secondary c-jyxqjt-ilDyRi-color-lightBlue c-jyxqjt-gYqlvA-cv`)\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:2 c-jyxqjt c-dkRcuu}@media{` +\n\t\t\t\t\t`.c-jyxqjt{--component:1}` +\n\t\t\t\t\t`.c-dkRcuu{--component:2}` +\n\t\t\t\t\t`}` +\n\t\t\t\t\t`--sxs{--sxs:3 c-jyxqjt-cOChOn-appearance-secondary c-jyxqjt-ilDyRi-color-lightBlue}@media{` +\n\t\t\t\t\t`.c-jyxqjt-cOChOn-appearance-secondary{--appearance:secondary}` +\n\t\t\t\t\t`.c-jyxqjt-ilDyRi-color-lightBlue{--color:lightBlue}` +\n\t\t\t\t\t`}` +\n\t\t\t\t\t`--sxs{--sxs:5 c-jyxqjt-gYqlvA-cv}@media{` +\n\t\t\t\t\t`.c-jyxqjt-gYqlvA-cv{--compound:appearance secondary / color lightBlue}` +\n\t\t\t\t\t`}`,\n\t\t\t)\n\t\t})\n\n\t\ttest('Render component2({ appearance: \"secondary\", color: \"lightBlue\" })', () => {\n\t\t\tconst { component2, getCssText } = getFreshComponents()\n\t\t\tconst render = component2({ appearance: 'secondary', color: 'lightBlue' })\n\t\t\texpect(render.className).toBe(`c-jyxqjt c-dkRcuu c-jyxqjt-cOChOn-appearance-secondary c-jyxqjt-ilDyRi-color-lightBlue c-jyxqjt-gYqlvA-cv`)\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:2 c-jyxqjt c-dkRcuu}@media{` +\n\t\t\t\t\t`.c-jyxqjt{--component:1}` +\n\t\t\t\t\t`.c-dkRcuu{--component:2}` +\n\t\t\t\t\t`}` +\n\t\t\t\t\t`--sxs{--sxs:3 c-jyxqjt-cOChOn-appearance-secondary c-jyxqjt-ilDyRi-color-lightBlue}@media{` +\n\t\t\t\t\t`.c-jyxqjt-cOChOn-appearance-secondary{--appearance:secondary}` +\n\t\t\t\t\t`.c-jyxqjt-ilDyRi-color-lightBlue{--color:lightBlue}` +\n\t\t\t\t\t`}` +\n\t\t\t\t\t`--sxs{--sxs:5 c-jyxqjt-gYqlvA-cv}@media{` +\n\t\t\t\t\t`.c-jyxqjt-gYqlvA-cv{--compound:appearance secondary / color lightBlue}` +\n\t\t\t\t\t`}`,\n\t\t\t)\n\t\t})\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-492.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #492', () => {\n\ttest('Conditionally apply default variants as the @initial value', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component = css({\n\t\t\tvariants: {\n\t\t\t\tsweet: {\n\t\t\t\t\tcaroline: {\n\t\t\t\t\t\t'--sweet-caroline': true,\n\t\t\t\t\t},\n\t\t\t\t\tdreams: {\n\t\t\t\t\t\t'--sweet-dreams': true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\n\t\t\tdefaultVariants: {\n\t\t\t\tsweet: 'caroline',\n\t\t\t},\n\t\t})\n\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst variantSweetCarolineClassName = `c-PJLV-bVaDOZ-sweet-caroline`\n\t\tconst variantSweetDreamsClassName = `c-PJLV-loBWDA-sweet-dreams`\n\t\tconst variantResponsiveSweetCarolineClassName = `c-PJLV-iuHgfx-sweet-caroline`\n\t\tconst variantResponsiveSweetDreamsClassName = `c-PJLV-cNdtIU-sweet-dreams`\n\n\t\t/** Rendering of the component as-is. */\n\t\tconst rendering1 = component()\n\n\t\texpect(\n\t\t\trendering1.className\n\t\t).toBe(\n\t\t\t`${componentClassName} ${variantSweetCarolineClassName}`\n\t\t)\n\n\t\texpect(\n\t\t\tgetCssText()\n\t\t).toBe(\n\t\t\t`--sxs{--sxs:3 ${variantSweetCarolineClassName}}@media{` +\n\t\t\t\t`.${variantSweetCarolineClassName}{--sweet-caroline:true}` +\n\t\t\t`}`\n\t\t)\n\n\t\t/** Rendering of the component as-is. */\n\t\tconst rendering2 = component({\n\t\t\tsweet: {\n\t\t\t\t'@media (min-width: 640px)': 'dreams',\n\t\t\t},\n\t\t})\n\n\t\texpect(\n\t\t\trendering2.className\n\t\t).toBe(\n\t\t\t`${componentClassName} ${variantSweetCarolineClassName} ${variantResponsiveSweetDreamsClassName}`\n\t\t)\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:3 ${variantSweetCarolineClassName}}` +\n\t\t\t\t`@media{.${variantSweetCarolineClassName}{--sweet-caroline:true}}` +\n\t\t\t\t`--sxs{--sxs:4 ${variantResponsiveSweetDreamsClassName}}@media{` +\n\t\t\t\t`@media (min-width: 640px){.${variantResponsiveSweetDreamsClassName}{--sweet-dreams:true}}` +\n\t\t\t\t`}`,\n\t\t)\n\n\t\t/** Rendering of the component as-is. */\n\t\tconst rendering3 = component({\n\t\t\tsweet: {\n\t\t\t\t'@media (min-width: 640px)': 'caroline',\n\t\t\t\t'@initial': 'dreams',\n\t\t\t},\n\t\t})\n\n\t\texpect(rendering3.className).toBe(`${componentClassName} ${variantSweetDreamsClassName} ${variantResponsiveSweetCarolineClassName}`)\n\n\t\texpect(getCssText()).toBe(\n\t\t\t\t// initial variants\n\t\t\t\t`--sxs{--sxs:3 ${variantSweetCarolineClassName} ${variantSweetDreamsClassName}}` +\n\t\t\t\t`@media{.${variantSweetCarolineClassName}{--sweet-caroline:true}.${variantSweetDreamsClassName}{--sweet-dreams:true}}` +\n\t\t\t\t// responsive variants\n\t\t\t\t`--sxs{--sxs:4 ${variantResponsiveSweetDreamsClassName} ${variantResponsiveSweetCarolineClassName}}@media{` +\n\t\t\t\t`@media (min-width: 640px){.${variantResponsiveSweetDreamsClassName}{--sweet-dreams:true}}` +\n\t\t\t\t`@media (min-width: 640px){.${variantResponsiveSweetCarolineClassName}{--sweet-caroline:true}}` +\n\t\t\t\t`}`,\n\t\t)\n\t})\n\n\ttest('Apply apply @initial styles first', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst component = css({\n\t\t\t'--rock': true,\n\t\t\tvariants: {\n\t\t\t\theavy: {\n\t\t\t\t\t'iron-butterfly': {\n\t\t\t\t\t\t'--weight-iron-butterfly': true,\n\t\t\t\t\t},\n\t\t\t\t\t'led-zeppelin': {\n\t\t\t\t\t\t'--weight-led-zeppelin': true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\t/** Rendering of the component as-is. */\n\t\tconst rendering1 = component({\n\t\t\theavy: {\n\t\t\t\t'@media (min-width: 640px)': 'led-zeppelin',\n\t\t\t\t'@initial': 'iron-butterfly',\n\t\t\t},\n\t\t})\n\n\t\tconst componentClassName = `c-evVBJo`\n\t\tconst variantInitialHeavyIronButterfly = `c-evVBJo-kiVNrc-heavy-iron-butterfly`\n\t\tconst variantMinWidth640LedZeppelin = `c-evVBJo-lgYcvN-heavy-led-zeppelin`\n\n\t\texpect(\n\t\t\trendering1.className\n\t\t).toBe(\n\t\t\t`${componentClassName} ${variantInitialHeavyIronButterfly} ${variantMinWidth640LedZeppelin}`\n\t\t)\n\n\t\texpect(\n\t\t\tgetCssText()\n\t\t).toBe('--sxs{--sxs:2 c-evVBJo}@media{.c-evVBJo{--rock:true}}--sxs{--sxs:3 c-evVBJo-kiVNrc-heavy-iron-butterfly}@media{.c-evVBJo-kiVNrc-heavy-iron-butterfly{--weight-iron-butterfly:true}}--sxs{--sxs:4 c-evVBJo-lgYcvN-heavy-led-zeppelin}@media{@media (min-width: 640px){.c-evVBJo-lgYcvN-heavy-led-zeppelin{--weight-led-zeppelin:true}}}')\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-652.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #652', () => {\n\ttest('Applying both variants from the one default variant', () => {\n\t\tconst { css } = createStitches()\n\n\t\tconst component1 = css({\n\t\t\tvariants: {\n\t\t\t\thue: {\n\t\t\t\t\tprimary: {\n\t\t\t\t\t\tcolor: 'red',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tdefaultVariants: {\n\t\t\t\thue: 'primary',\n\t\t\t},\n\t\t})\n\n\t\tconst component2 = css(component1, {\n\t\t\tvariants: {\n\t\t\t\thue: {\n\t\t\t\t\tprimary: {\n\t\t\t\t\t\tcolor: 'blue',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst expression2 = component2()\n\n\t\texpect(expression2.className).toBe(`c-PJLV c-PJLV-gmqXFB-hue-primary c-PJLV-kydkiA-hue-primary`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-655.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #655', () => {\n\ttest('Applying both variants from the one default variant', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\tmaxWidth: 'fit-content',\n\t\t\tminWidth: 'fit-content',\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-dAAqmb}` +\n\t\t\t`@media{.c-dAAqmb{` +\n\t\t\t\t`max-width:-moz-fit-content;max-width:fit-content;` +\n\t\t\t\t`min-width:-moz-fit-content;min-width:fit-content` +\n\t\t\t`}}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-725.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #725', () => {\n\ttest('Minimum reproduction of bug', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tmedia: {\n\t\t\t\ttablet: `(min-width: 720px)`,\n\t\t\t\twide: `(min-width: 1536px)`,\n\t\t\t},\n\t\t})\n\n\t\tconst Flex = css({\n\t\t\tvariants: {\n\t\t\t\tjustify: {\n\t\t\t\t\tend: { justifyContent: 'flex-end' },\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tFlex({\n\t\t\tjustify: {\n\t\t\t\t'@tablet': 'end',\n\t\t\t\t'@wide': 'end',\n\t\t\t},\n\t\t})\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:4 c-PJLV-jobbEJ-justify-end}@media{@media (min-width: 720px), (min-width: 1536px){.c-PJLV-jobbEJ-justify-end{justify-content:flex-end}}}`)\n\t})\n\n\ttest('Combination with other variants', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tmobile: `(min-width: 420px)`,\n\t\t\t\ttablet: `(min-width: 720px)`,\n\t\t\t\twide: `(min-width: 1536px)`,\n\t\t\t},\n\t\t})\n\n\t\tconst Flex = css({\n\t\t\tvariants: {\n\t\t\t\tjustify: {\n\t\t\t\t\tend: { justifyContent: 'flex-end' },\n\t\t\t\t\tstart: { justifyContent: 'flex-start' },\n\t\t\t\t},\n\t\t\t\tcolor: {\n\t\t\t\t\tred: { color: 'red' },\n\t\t\t\t},\n\t\t\t},\n\t\t\tdefaultVariants: {\n\t\t\t\tcolor: 'red',\n\t\t\t},\n\t\t})\n\t\tFlex({\n\t\t\tjustify: {\n\t\t\t\t'@tablet': 'end',\n\t\t\t\t'@wide': 'end',\n\t\t\t\t'@mobile': 'start',\n\t\t\t},\n\t\t})\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-gmqXFB-color-red}@media{.c-PJLV-gmqXFB-color-red{color:red}}--sxs{--sxs:4 c-PJLV-jobbEJ-justify-end c-PJLV-kxjDkG-justify-start}@media{@media (min-width: 720px), (min-width: 1536px){.c-PJLV-jobbEJ-justify-end{justify-content:flex-end}}@media (min-width: 420px){.c-PJLV-kxjDkG-justify-start{justify-content:flex-start}}}`,\n\t\t)\n\t})\n\ttest('Test compound variants', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tbp1: `(min-width: 720px)`,\n\t\t\t\tbp2: `(min-width: 1536px)`,\n\t\t\t},\n\t\t})\n\n\t\tconst Button = css({\n\t\t\tvariants: {\n\t\t\t\tvariant: {\n\t\t\t\t\tred: { backgroundColor: 'tomato' },\n\t\t\t\t\tblue: { backgroundColor: 'SkyBlue' },\n\t\t\t\t},\n\t\t\t\tdisabled: {\n\t\t\t\t\ttrue: { backgroundColor: 'gray' },\n\t\t\t\t},\n\t\t\t},\n\t\t\tcompoundVariants: [\n\t\t\t\t{\n\t\t\t\t\tvariant: 'red',\n\t\t\t\t\tdisabled: true,\n\t\t\t\t\tcss: {\n\t\t\t\t\t\tpadding: 50,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t})\n\n\t\tButton({\n\t\t\tvariant: { '@bp1': 'red', '@bp2': 'red' },\n\t\t\tdisabled: { '@bp2': true, '@bp1': false },\n\t\t})\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:4 c-PJLV-dJnmKC-disabled-true c-PJLV-gSmlSg-variant-red}@media{@media (min-width: 1536px){.c-PJLV-dJnmKC-disabled-true{background-color:gray}}@media (min-width: 720px), (min-width: 1536px){.c-PJLV-gSmlSg-variant-red{background-color:tomato}}}--sxs{--sxs:5 c-PJLV-elpmbs-cv}@media{@media (min-width: 1536px){@media (min-width: 720px), (min-width: 1536px){.c-PJLV-elpmbs-cv{padding:50px}}}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-788.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #788', () => {\n\ttest('Test that a util with the name of a selector works in globalCss', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\tutils: {\n\t\t\t\tp: (value) => ({\n\t\t\t\t\tpaddingTop: value,\n\t\t\t\t\tpaddingBottom: value,\n\t\t\t\t\tpaddingLeft: value,\n\t\t\t\t\tpaddingRight: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tp: {\n\t\t\t\tcolor: 'red',\n\t\t\t}\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:1 gllaiB}` +\n\t\t\t`@media{p{` +\n\t\t\t\t`color:red` +\n\t\t\t`}}`\n\t\t)\n\t})\n\n\ttest('Test that a util with the name of a selector works in a component', () => {\n\t\tconst { css, getCssText } = createStitches({\n\t\t\tutils: {\n\t\t\t\tp: (value) => ({\n\t\t\t\t\tpaddingTop: value,\n\t\t\t\t\tpaddingBottom: value,\n\t\t\t\t\tpaddingLeft: value,\n\t\t\t\t\tpaddingRight: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tcss({\n\t\t\tp: 10\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-csWWxC}` +\n\t\t\t`@media{.c-csWWxC{` +\n\t\t\t\t`padding-top:10px;` +\n\t\t\t\t`padding-bottom:10px;` +\n\t\t\t\t`padding-left:10px;` +\n\t\t\t\t`padding-right:10px` +\n\t\t\t`}}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-908.js",
    "content": "import { createStitches } from '../src/index.js'\n\nconst styleRule = `--sxs { --sxs:1 lTyTw fJmROo; }`;\nconst mediaRule = `@media { body { margin: auto; }`;\n\nconst createStylesheet = (...preloadedStyles) => {\n\tlet rules = [];\n\tconst insertRule = (rule, index = rules.length) => {\n\t\tif (rule.startsWith('--sxs')) {\n\t\t\trules.splice(index, 0, {type: 1, cssText: rule});\n\t\t}\n\t\tif (rule.startsWith('@media')) {\n\t\t\trules.splice(index, 0, {type: 4, cssText: rule, cssRules: []});\n\t\t}\n\t};\n\tpreloadedStyles.forEach(insertRule);\n\treturn {\n\t\tinsertRule,\n\t\tcssRules: rules\n\t};\n}\n\ndescribe('Issue #908', () => {\n\ttest('Getting hydratable stylesheet', () => {\n\t\tconst { getCssText } = createStitches({\n\t\t\troot: {\n\t\t\t\tstyleSheets: [createStylesheet(styleRule, mediaRule)]\n\t\t\t}\n\t\t});\n\n\t\texpect(getCssText()).toBe(mediaRule)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-921.ts",
    "content": "import { createStitches, PropertyValue, CSS } from '../types/index'\n\nconst config = {\n\tutils: {\n\t\tbackground: (value: boolean | PropertyValue<'background'>) => {\n\t\t\tif (typeof value === 'boolean') {\n\t\t\t\treturn value ? {\n\t\t\t\t\tbackground: 'red'\n\t\t\t\t} : {}\n\t\t\t} else {\n\t\t\t\treturn {\n\t\t\t\t\tbackground: value\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n}\n\nconst { css, globalCss } = createStitches(config)\n\nglobalCss({\n\thtml: {\n\t\tbackground: true\n\t},\n\tbody: {\n\t\tbackground: 'green'\n\t},\n})\n\nconst Component = css({\n\tbackground: true,\n\t'> *': {\n\t\tbackground: 'green'\n\t}\n})\n\nComponent({\n\tbackground: 'green',\n\t'> *': {\n\t\tbackground: true\n\t}\n})\n\ncss(Component, {\n\tbackground: 'green'\n})\n\ncss(Component, {\n\tbackground: true\n})\n\nconst style: CSS = {\n\t// @ts-expect-error\n\tbackground: true\n}\n\nconst style2: CSS<typeof config> = {\n\tbackground: true\n}\n\nconst style3: CSS<typeof config> = {\n\tbackground: 'green'\n}\n"
  },
  {
    "path": "packages/core/tests/issue-943.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #943', () => {\n\ttest('@font-face descriptors', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'@font-face': [\n\t\t\t\t{\n\t\t\t\t\tfontFamily: 'fallback-font',\n\t\t\t\t\tascentOverride: '83.6%',\n\t\t\t\t\tdescentOverride: '20.5%',\n\t\t\t\t\tlineGapOverride: '0%',\n\t\t\t\t\tadvanceOverride: '10',\n\t\t\t\t\tsrc: 'local(Arial)',\n\t\t\t\t}\n\t\t\t]\n\t\t})()\n\n\t\texpect(getCssText()).toBe('--sxs{--sxs:1 jGZRm}@media{@font-face{font-family:fallback-font;ascent-override:83.6%;descent-override:20.5%;line-gap-override:0%;advance-override:10;src:local(Arial)}}')\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/issue-999.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #519', () => {\n\ttest('locally scoped token works 1 time', () => {\n\t\tconst { css, getCssText } = createStitches({ prefix: 'fusion' })\n\n\t\tcss({\n\t\t\t$$syntax: 'red',\n\n\t\t\th1: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 fusion-c-fjkySu}` +\n\t\t\t`@media{` +\n\t\t\t\t`.fusion-c-fjkySu{--fusion--syntax:red}` +\n\t\t\t\t`.fusion-c-fjkySu h1{color:var(--fusion--syntax)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('locally scoped prefix-free token works 1 time', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\t$$syntax: 'red',\n\n\t\t\th1: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-fjkySu}` +\n\t\t\t`@media{` +\n\t\t\t\t`.c-fjkySu{---syntax:red}` +\n\t\t\t\t`.c-fjkySu h1{color:var(---syntax)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('locally scoped token works 2 times', () => {\n\t\tconst { css, getCssText } = createStitches({ prefix: 'fusion' })\n\n\t\tcss({\n\t\t\t$$syntax: 'red',\n\n\t\t\th1: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\n\t\t\th2: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 fusion-c-lkpaIy}` +\n\t\t\t`@media{` +\n\t\t\t\t`.fusion-c-lkpaIy{--fusion--syntax:red}` +\n\t\t\t\t`.fusion-c-lkpaIy h1{color:var(--fusion--syntax)}` +\n\t\t\t\t`.fusion-c-lkpaIy h2{color:var(--fusion--syntax)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('locally scoped prefix-free token works 2 times', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\t$$syntax: 'red',\n\n\t\t\th1: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\n\t\t\th2: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-lkpaIy}` +\n\t\t\t`@media{` +\n\t\t\t\t`.c-lkpaIy{---syntax:red}` +\n\t\t\t\t`.c-lkpaIy h1{color:var(---syntax)}` +\n\t\t\t\t`.c-lkpaIy h2{color:var(---syntax)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('locally scoped token works 3 times', () => {\n\t\tconst { css, getCssText } = createStitches({ prefix: 'fusion' })\n\n\t\tcss({\n\t\t\t$$syntax: 'red',\n\n\t\t\th1: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\n\t\t\th2: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\n\t\t\th3: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 fusion-c-kbkiiL}` +\n\t\t\t`@media{` +\n\t\t\t\t`.fusion-c-kbkiiL{--fusion--syntax:red}` +\n\t\t\t\t`.fusion-c-kbkiiL h1{color:var(--fusion--syntax)}` +\n\t\t\t\t`.fusion-c-kbkiiL h2{color:var(--fusion--syntax)}` +\n\t\t\t\t`.fusion-c-kbkiiL h3{color:var(--fusion--syntax)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('locally scoped prefix-free token works 3 times', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\t$$syntax: 'red',\n\n\t\t\th1: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\n\t\t\th2: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\n\t\t\th3: {\n\t\t\t\tcolor: '$$syntax',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-kbkiiL}` +\n\t\t\t`@media{` +\n\t\t\t\t`.c-kbkiiL{---syntax:red}` +\n\t\t\t\t`.c-kbkiiL h1{color:var(---syntax)}` +\n\t\t\t\t`.c-kbkiiL h2{color:var(---syntax)}` +\n\t\t\t\t`.c-kbkiiL h3{color:var(---syntax)}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/keyframes.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Keyframes', () => {\n\ttest('Expected behavior for the keyframes() method', () => {\n\t\tconst { keyframes, toString } = createStitches()\n\n\t\tconst myKeyframes = keyframes({\n\t\t\t'0%': {\n\t\t\t\topacity: '0',\n\t\t\t},\n\t\t\t'1%': {\n\t\t\t\topacity: '1',\n\t\t\t},\n\t\t})\n\n\t\texpect(toString()).toBe('')\n\t\texpect(`animation: 1s ${myKeyframes};`).toBe('animation: 1s k-hMEmNJ;')\n\t\texpect(toString()).toBe(`--sxs{--sxs:1 k-hMEmNJ}@media{@keyframes k-hMEmNJ{0%{opacity:0}1%{opacity:1}}}`)\n\t\texpect(myKeyframes.name).toBe('k-hMEmNJ')\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/theme.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Theme', () => {\n\ttest('Expected behavior for the createTheme() method', () => {\n\t\tconst { createTheme, getCssText } = createStitches()\n\n\t\tconst myTheme = createTheme('my', {\n\t\t\tcolors: {\n\t\t\t\tblue: 'dodgerblue',\n\t\t\t},\n\t\t})\n\n\t\texpect(getCssText()).toBe('')\n\t\texpect(`<div class=\"${myTheme}\">`).toBe('<div class=\"my\">')\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:0 my}@media{.my{--colors-blue:dodgerblue}}`)\n\t\texpect(myTheme.className).toBe('my')\n\t\texpect(myTheme.selector).toBe('.my')\n\t})\n\n\ttest('createTheme() support for non-strings', () => {\n\t\t{\n\t\t\tconst { getCssText } = createStitches({\n\t\t\t\ttheme: {\n\t\t\t\t\tsizes: {\n\t\t\t\t\t\tsm: 100,\n\t\t\t\t\t\tmd: 200,\n\t\t\t\t\t\tlg: 500,\n\t\t\t\t\t},\n\t\t\t\t}\n\t\t\t})\n\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:0 t-egkarf}@media{` +\n\t\t\t\t\t`:root,.t-egkarf{--sizes-sm:100;--sizes-md:200;--sizes-lg:500}` +\n\t\t\t\t`}`\n\t\t\t)\n\t\t}\n\n\t\t{\n\t\t\tconst { getCssText } = createStitches({\n\t\t\t\ttheme: {\n\t\t\t\t\tsizes: {\n\t\t\t\t\t\tsm: 100,\n\t\t\t\t\t\tmd: 'calc($sm * 3)',\n\t\t\t\t\t\tlg: 'calc($md * 3)',\n\t\t\t\t\t},\n\t\t\t\t}\n\t\t\t})\n\n\t\t\texpect(getCssText()).toBe(\n\t\t\t\t`--sxs{--sxs:0 t-eJkcVD}@media{` +\n\t\t\t\t\t`:root,.t-eJkcVD{` +\n\t\t\t\t\t\t`--sizes-sm:100;` +\n\t\t\t\t\t\t`--sizes-md:calc(var(--sizes-sm) * 3);` +\n\t\t\t\t\t\t`--sizes-lg:calc(var(--sizes-md) * 3)` +\n\t\t\t\t\t`}` +\n\t\t\t\t`}`\n\t\t\t)\n\t\t}\n\t})\n\n\ttest('theme.className injects the theme', () => {\n\t\tconst { getCssText, createTheme } = createStitches()\n\n\t\tconst theme = createTheme({\n\t\t\tcolors: {\n\t\t\t\tblue: '#0000ff',\n\t\t\t}\n\t\t})\n\n\t\texpect(getCssText()).toBe(``)\n\n\t\tvoid theme.className\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:0 t-gpVVQE}@media{.t-gpVVQE{--colors-blue:#0000ff}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/types.test.ts",
    "content": "import { createStitches } from '../types/index'\n\nconst { css, globalCss, keyframes } = createStitches({\n\tutils: {\n\t\tmx: () => ({\n\t\t\tbackgroundColor: 'red',\n\t\t}),\n\t},\n\ttheme: {\n\t\tcolors: {\n\t\t\thiContrast: 'hsl(200, 12%, 5%)',\n\t\t\tloContrast: 'white',\n\t\t\tgray100: 'hsl(206, 20%, 98.8%)',\n\t\t\tgray200: 'hsl(206, 14%, 96.0%)',\n\t\t\tgray300: 'hsl(206, 13%, 93.7%)',\n\t\t\tgray400: 'hsl(206, 12%, 92.0%)',\n\t\t\tgray500: 'hsl(206, 12%, 89.5%)',\n\t\t\tgray600: 'hsl(206, 11%, 85.2%)',\n\t\t\tgray700: 'hsl(206, 10%, 80.0%)',\n\t\t\tgray800: 'hsl(206, 6%, 56.1%)',\n\t\t\tgray900: 'hsl(206, 6%, 43.9%)',\n\t\t\tpedro: '$gray100',\n\t\t},\n\t\tspace: {\n\t\t\t1: '10px',\n\t\t\t2: '20px',\n\t\t},\n\t\tfontSizes: {\n\t\t\t'1': '11px',\n\t\t\t'2': '13px',\n\t\t\t'3': '15px',\n\t\t\t'4': '17px',\n\t\t\t'5': '19px',\n\t\t\t'6': '21px',\n\t\t\t'7': '27px',\n\t\t\t'8': '35px',\n\t\t\t'9': '59px',\n\t\t},\n\t},\n\tmedia: {\n\t\tbp1: '(min-width: 620px)',\n\t},\n})\n\nkeyframes({\n\tfrom: {\n\t\tcolor: '$gray100',\n\t},\n\tto: {\n\t\tcolor: '$gray900',\n\t},\n})\n\nglobalCss({\n\tbody: {\n\t\t'@bp1': {\n\t\t\tbackgroundColor: '$gray100',\n\t\t},\n\t\tbackgroundColor: '$gray300',\n\t},\n})\n\nconst PotatoButton = css({\n\tvariants: {\n\t\tpeace: {\n\t\t\tmercy: {\n\t\t\t\tcolor: 'MediumOrchid',\n\t\t\t},\n\t\t\ttrust: {\n\t\t\t\tcolor: 'Turquoise',\n\t\t\t},\n\t\t},\n\t\tvariant: {\n\t\t\tblue: {\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t\tred: {\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t},\n\t},\n\tcompoundVariants: [\n\t\t{\n\t\t\tvariant: 'blue',\n\t\t\tcss: {\n\t\t\t\tbackgroundColor: '$gray200',\n\t\t\t},\n\t\t},\n\t],\n})\n\nPotatoButton({\n\tpeace: 'mercy',\n})\n\nconst two = css(PotatoButton, {\n\t$$max: '2px',\n\twidth: '$$max',\n\tvariants: {\n\t\thue: {\n\t\t\tgreen: {\n\t\t\t\twidth: '$$max',\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t\tred: {\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t},\n\t\tlove: {\n\t\t\tfree: {\n\t\t\t\tcolor: 'ForestGreen',\n\t\t\t},\n\t\t\tgood: {\n\t\t\t\tcolor: 'GoldenRod',\n\t\t\t},\n\t\t}\n\t},\n\tdefaultVariants: {\n\t\thue: 'red',\n\t},\n\tcompoundVariants: [\n\t\t{\n\t\t\thue: 'green',\n\t\t\tcss: {\n\t\t\t\tbackgroundColor: '$gray200',\n\t\t\t},\n\t\t},\n\t],\n})\n\ntwo({\n\tpeace: 'mercy',\n\thue: 'green',\n\tlove: 'free',\n})\n\nPotatoButton({\n\tclassName: '',\n\tcss: {\n\t\tbackgroundColor: '$gray300',\n\n\t\t'@all': {\n\t\t\tbackgroundColor: 'initial'\n\t\t},\n\n\t\t'@bp1': {\n\t\t\tbackgroundColor: 'initial',\n\t\t}\n\t},\n})\n"
  },
  {
    "path": "packages/core/tests/universal-autoprefixer.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Autoprefixer', () => {\n\ttest('appearance', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tappearance: 'none',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 kozGVo}@media{x-element{-webkit-appearance:none;appearance:none}}')\n\t})\n\n\ttest('backfaceVisibility', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tbackfaceVisibility: 'visible',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 gaCVoe}@media{x-element{-webkit-backface-visibility:visible;backface-visibility:visible}}')\n\t})\n\n\ttest('backgroundClip', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tbackgroundClip: 'border-box',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 gIcRdw}@media{x-element{-webkit-background-clip:border-box;background-clip:border-box}}')\n\t})\n\n\ttest('clipPath', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tclipPath: 'circle(40%)',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 ccZNl}@media{x-element{-webkit-clip-path:circle(40%);clip-path:circle(40%)}}')\n\t})\n\n\ttest('hyphens', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\thyphens: 'none',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 cRggdz}@media{x-element{-webkit-hyphens:none;hyphens:none}}')\n\t})\n\n\ttest('maskImage', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tmaskImage: 'none',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 eNBesV}@media{x-element{-webkit-mask-image:none;mask-image:none}}')\n\t})\n\n\ttest('tabSize', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\ttabSize: 'none',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 kPCdtQ}@media{x-element{tab-size:none}}')\n\t})\n\n\ttest('textSizeAdjust', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\ttextSizeAdjust: '100%',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 gVFtip}@media{x-element{-webkit-text-size-adjust:100%;text-size-adjust:100%}}')\n\t})\n\n\ttest('userSelect', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tuserSelect: 'none',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe('--sxs{--sxs:1 kEUokv}@media{x-element{-webkit-user-select:none;user-select:none}}')\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-functionality.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Configuration', () => {\n\tlet stitches\n\n\ttest('createStitches()', () => {\n\t\tconst { css, globalCss } = createStitches()\n\n\t\texpect(css).toBeInstanceOf(Function)\n\t\texpect(globalCss).toBeInstanceOf(Function)\n\t})\n\n\ttest('createStitches({})', () => {\n\t\tconst { css, globalCss } = createStitches({})\n\n\t\texpect(css).toBeInstanceOf(Function)\n\t\texpect(globalCss).toBeInstanceOf(Function)\n\t})\n\n\ttest('createStitches({ prefix: \"fusion-\" })', () => {\n\t\tconst { config } = createStitches({ prefix: 'fusion-' })\n\n\t\texpect(config.prefix).toBe('fusion-')\n\t})\n\n\ttest('createStitches({ theme })', () => {\n\t\tconst themeConfig = { colors: { blue: 'dodgerblue' } }\n\n\t\tconst { config } = createStitches({ theme: themeConfig })\n\n\t\texpect(config.theme).toBe(themeConfig)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-logical-properties.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Logical Properties', () => {\n\ttest('marginBlock', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tmarginBlock: 0,\n\t\t\t},\n\t\t\t'y-element': {\n\t\t\t\tmarginBlock: 10,\n\t\t\t},\n\t\t\t'z-element': {\n\t\t\t\tmarginBlock: '5px 10px',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:1 IvBLl}@media{` +\n\t\t\t\t`x-element{margin-block-start:0;margin-block-end:0}` +\n\t\t\t\t`y-element{margin-block-start:10px;margin-block-end:10px}` +\n\t\t\t\t`z-element{margin-block-start:5px;margin-block-end:10px}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('marginInline', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tmarginInline: 0,\n\t\t\t},\n\t\t\t'y-element': {\n\t\t\t\tmarginInline: 10,\n\t\t\t},\n\t\t\t'z-element': {\n\t\t\t\tmarginInline: '5px 10px',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:1 eNPHKF}@media{` +\n\t\t\t\t`x-element{margin-inline-start:0;margin-inline-end:0}` +\n\t\t\t\t`y-element{margin-inline-start:10px;margin-inline-end:10px}` +\n\t\t\t\t`z-element{margin-inline-start:5px;margin-inline-end:10px}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('paddingBlock', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tpaddingBlock: 0,\n\t\t\t},\n\t\t\t'y-element': {\n\t\t\t\tpaddingBlock: 10,\n\t\t\t},\n\t\t\t'z-element': {\n\t\t\t\tpaddingBlock: '5px 10px',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:1 kcHEgy}@media{` +\n\t\t\t\t`x-element{padding-block-start:0;padding-block-end:0}` +\n\t\t\t\t`y-element{padding-block-start:10px;padding-block-end:10px}` +\n\t\t\t\t`z-element{padding-block-start:5px;padding-block-end:10px}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('paddingInline', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'x-element': {\n\t\t\t\tpaddingInline: 0,\n\t\t\t},\n\t\t\t'y-element': {\n\t\t\t\tpaddingInline: 10,\n\t\t\t},\n\t\t\t'z-element': {\n\t\t\t\tpaddingInline: '5px 10px',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:1 cVrbiG}@media{` +\n\t\t\t\t`x-element{padding-inline-start:0;padding-inline-end:0}` +\n\t\t\t\t`y-element{padding-inline-start:10px;padding-inline-end:10px}` +\n\t\t\t\t`z-element{padding-inline-start:5px;padding-inline-end:10px}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-nesting.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Nesting', () => {\n\ttest('Authors can define globalCss nesting rules', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'body > a': {\n\t\t\t\t'&:not(:hover)': {\n\t\t\t\t\ttextDecoration: 'none',\n\t\t\t\t},\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:1 hXsVBR}@media{body > a:not(:hover){text-decoration:none}}`)\n\t})\n\n\ttest('Authors can define component nesting rules', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\t'&:not(:hover)': {\n\t\t\t\ttextDecoration: 'none',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-dweUti}@media{.c-dweUti:not(:hover){text-decoration:none}}`)\n\t})\n\n\ttest('Authors can define recursive globalCss nesting rules', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\tp: {\n\t\t\t\t'margin': 0,\n\t\t\t\t'& ~ &': {\n\t\t\t\t\tmarginTop: 0,\n\t\t\t\t},\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:1 gkqgGk}@media{p{margin:0}p ~ p{margin-top:0}}`)\n\t})\n\n\ttest('Authors can define recursive component nesting rules', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\t'margin': 0,\n\t\t\t'& ~ &': {\n\t\t\t\tmarginTop: 0,\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-fuGzNQ}@media{.c-fuGzNQ{margin:0}.c-fuGzNQ ~ .c-fuGzNQ{margin-top:0}}`)\n\t})\n\n\ttest('Authors can define complex recursive globalCss nesting rules', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'body > p, body > ul': {\n\t\t\t\t'margin': 0,\n\t\t\t\t'& ~ &': {\n\t\t\t\t\tmarginTop: 0,\n\t\t\t\t},\n\t\t\t},\n\t\t})()\n\n\t\tconst parentCssRule = `body > p,body > ul{margin:0}`\n\t\tconst nestingCssRule = `:is(body > p) ~ :is(body > p),:is(body > ul) ~ :is(body > ul){margin-top:0}`\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:1 cugdJ}@media{${parentCssRule + nestingCssRule}}`)\n\t})\n\n\ttest('Authors can define complex recursive component nesting rules', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tcss({\n\t\t\t'& > p, & > ul': {\n\t\t\t\t'margin': 0,\n\t\t\t\t'& ~ &': {\n\t\t\t\t\tmarginTop: 0,\n\t\t\t\t},\n\t\t\t},\n\t\t})()\n\n\t\tconst parentCssRule = `.c-iJLHRt > p,.c-iJLHRt > ul{margin:0}`\n\t\tconst nestingCssRule = `:is(.c-iJLHRt > p) ~ :is(.c-iJLHRt > p),:is(.c-iJLHRt > ul) ~ :is(.c-iJLHRt > ul){margin-top:0}`\n\n\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-iJLHRt}@media{${parentCssRule + nestingCssRule}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-numeric-values.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Numeric Values', () => {\n\ttest('Authors can use numeric values to assign px values', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\texpect(toString()).toBe('')\n\n\t\tglobalCss({\n\t\t\tbody: {\n\t\t\t\tmargin: 0,\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:1 cSHHDh}@media{body{margin:0}}`)\n\n\t\tglobalCss({\n\t\t\tbody: {\n\t\t\t\tmargin: 10,\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:1 cSHHDh fFIrKk}@media{body{margin:0}body{margin:10px}}`)\n\t})\n\n\ttest('Authors can use numeric values to assign numeric values', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\texpect(toString()).toBe('')\n\n\t\tglobalCss({\n\t\t\tbody: {\n\t\t\t\tlineHeight: 0,\n\t\t\t\twidth: 0,\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:1 bpctHq}@media{body{line-height:0;width:0}}`)\n\n\t\tglobalCss({\n\t\t\tbody: {\n\t\t\t\tlineHeight: 10,\n\t\t\t\twidth: 10,\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:1 bpctHq cudWGu}@media{body{line-height:0;width:0}body{line-height:10;width:10px}}`)\n\t})\n\n\ttest('Authors can use unit-less properties as known to React', () => {\n\t\tfor (let i = 0; i <= 33; i += 11) {\n\t\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\t\tglobalCss({\n\t\t\t\tdiv: {\n\t\t\t\t\tanimationIterationCount: i,\n\t\t\t\t\tborderImageOutset: i,\n\t\t\t\t\tborderImageSlice: i,\n\t\t\t\t\tborderImageWidth: i,\n\t\t\t\t\tboxFlex: i,\n\t\t\t\t\tboxFlexGroup: i,\n\t\t\t\t\tboxOrdinalGroup: i,\n\t\t\t\t\tcolumnCount: i,\n\t\t\t\t\tcolumns: i,\n\t\t\t\t\tflex: i,\n\t\t\t\t\tflexGrow: i,\n\t\t\t\t\tflexShrink: i,\n\t\t\t\t\tflexOrder: i,\n\t\t\t\t\tgridRow: i,\n\t\t\t\t\tgridRowEnd: i,\n\t\t\t\t\tgridRowSpan: i,\n\t\t\t\t\tgridRowStart: i,\n\t\t\t\t\tgridColumn: i,\n\t\t\t\t\tgridColumnEnd: i,\n\t\t\t\t\tgridColumnSpan: i,\n\t\t\t\t\tgridColumnStart: i,\n\t\t\t\t\tfontWeight: i,\n\t\t\t\t\tlineHeight: i,\n\t\t\t\t\topacity: i,\n\t\t\t\t\torder: i,\n\t\t\t\t\torphans: i,\n\t\t\t\t\ttabSize: i,\n\t\t\t\t\twidows: i,\n\t\t\t\t\tzIndex: i,\n\t\t\t\t\tzoom: i,\n\t\t\t\t},\n\t\t\t})()\n\n\t\t\tconst cssText = getCssText().replace(/^.+@media\\{|\\}$/g, '')\n\n\t\t\texpect(cssText).toBe(\n\t\t\t\t'div' + '{' +\n\t\t\t\t\t'animation-iteration-count:' + i + ';' +\n\t\t\t\t\t'border-image-outset:' + i + ';' +\n\t\t\t\t\t'border-image-slice:' + i + ';' +\n\t\t\t\t\t'border-image-width:' + i + ';' +\n\t\t\t\t\t'box-flex:' + i + ';' +\n\t\t\t\t\t'box-flex-group:' + i + ';' +\n\t\t\t\t\t'box-ordinal-group:' + i + ';' +\n\t\t\t\t\t'column-count:' + i + ';' +\n\t\t\t\t\t'columns:' + i + ';' +\n\t\t\t\t\t'flex:' + i + ';' +\n\t\t\t\t\t'flex-grow:' + i + ';' +\n\t\t\t\t\t'flex-shrink:' + i + ';' +\n\t\t\t\t\t'flex-order:' + i + ';' +\n\t\t\t\t\t'grid-row:' + i + ';' +\n\t\t\t\t\t'grid-row-end:' + i + ';' +\n\t\t\t\t\t'grid-row-span:' + i + ';' +\n\t\t\t\t\t'grid-row-start:' + i + ';' +\n\t\t\t\t\t'grid-column:' + i + ';' +\n\t\t\t\t\t'grid-column-end:' + i + ';' +\n\t\t\t\t\t'grid-column-span:' + i + ';' +\n\t\t\t\t\t'grid-column-start:' + i + ';' +\n\t\t\t\t\t'font-weight:' + i + ';' +\n\t\t\t\t\t'line-height:' + i + ';' +\n\t\t\t\t\t'opacity:' + i + ';' +\n\t\t\t\t\t'order:' + i + ';' +\n\t\t\t\t\t'orphans:' + i + ';' +\n\t\t\t\t\t'tab-size:' + i + ';' +\n\t\t\t\t\t'widows:' + i + ';' +\n\t\t\t\t\t'z-index:' + i + ';' +\n\t\t\t\t\t'zoom:' + i +\n\t\t\t\t'}'\n\t\t\t)\n\t\t}\n\t})\n\n\tconst commonProps = 'fontSize margin marginTop marginRight marginBottom marginLeft padding paddingTop paddingRight paddingBottom paddingLeft'.split(' ')\n\n\tfor (const prop of commonProps) {\n\t\tconst kebabProp = prop.replace(/[A-Z]/g, (letter) => '-' + letter.toLowerCase())\n\n\t\ttest(`Author can use the unit-only ${kebabProp} property`, () => {\n\t\t\tfor (let i = 0; i <= 33; i += 11) {\n\t\t\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\t\t\tglobalCss({\n\t\t\t\t\tdiv: {\n\t\t\t\t\t\t[prop]: i,\n\t\t\t\t\t},\n\t\t\t\t})()\n\n\t\t\t\tconst cssText = getCssText().replace(/^.+@media\\{|\\}$/g, '')\n\n\t\t\t\texpect(cssText).toBe(\n\t\t\t\t\t`div{` +\n\t\t\t\t\t\tkebabProp + `:` + i + (i ? 'px' : '') +\n\t\t\t\t\t`}`\n\t\t\t\t)\n\t\t\t}\n\t\t})\n\t}\n})\n"
  },
  {
    "path": "packages/core/tests/universal-polyfill-prefixed-values.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Polyfill prefixed values', () => {\n\ttest('width:stretch', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'.gro': {\n\t\t\t\twidth: 'stretch',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:1 coIeei}@media{.gro{width:-moz-available;width:-webkit-fill-available}}`\n\t\t)\n\t})\n\n\ttest('width:fit-content', () => {\n\t\tconst { globalCss, toString } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'.fit': {\n\t\t\t\twidth: 'fit-content',\n\t\t\t},\n\t\t})()\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:1 gZsLvv}@media{.fit{width:-moz-fit-content;width:fit-content}}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-prefix.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Prefix', () => {\n\tconst prefix = 'fusion'\n\n\ttest('Authors can define a prefix applied to themes', () => {\n\t\tconst { createTheme, toString } = createStitches({ prefix })\n\n\t\texpect(toString()).toBe('')\n\n\t\tconst hash = 'iknykm'\n\n\t\texpect(createTheme({ colors: { red: 'tomato' } }).toString()).toBe(`${prefix}-t-${hash}`)\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:0 fusion-t-iknykm}@media{.${prefix}-t-${hash}{--fusion-colors-red:tomato}}`)\n\t})\n\n\ttest('Authors can define a prefix not applied to named themes', () => {\n\t\tconst { createTheme, toString } = createStitches({ prefix })\n\n\t\texpect(toString()).toBe('')\n\n\t\tconst themeName = 'my-theme-name'\n\n\t\tconst myTheme = createTheme(themeName, { colors: { red: 'tomato' } })\n\n\t\texpect(myTheme.toString()).toBe(`${themeName}`)\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:0 my-theme-name}@media{.${themeName}{--fusion-colors-red:tomato}}`)\n\t})\n\n\ttest('Authors can define a prefix applied to components', () => {\n\t\tconst { css, toString } = createStitches({ prefix })\n\n\t\texpect(toString()).toBe('')\n\n\t\tconst component = css({ color: 'red' })\n\n\t\texpect(toString()).toBe('')\n\n\t\tcomponent.toString()\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:2 fusion-c-gmqXFB}@media{.fusion-c-gmqXFB{color:red}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-serialization.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Serialization', () => {\n\tconst sheet = createStitches()\n\tconst { css, getCssText, toString, createTheme } = sheet\n\n\tconst myComponent = css({\n\t\tall: 'unset',\n\t\tfont: 'inherit',\n\t\tmargin: 0,\n\t\tpadding: '0.5em 1em',\n\t})\n\tconst myComponentClassName = 'c-cLikna'\n\n\tconst myTheme = createTheme({\n\t\tcolors: {\n\t\t\tblue: 'dodgerblue',\n\t\t},\n\t})\n\tconst myThemeClassName = 't-jPkpUS'\n\n\ttest('Components implicitly return their class name', () => {\n\t\texpect(String(myComponent)).toBe(myComponentClassName)\n\t\texpect('' + myComponent).toBe(myComponentClassName)\n\t\texpect(`${myComponent}`).toBe(myComponentClassName)\n\t})\n\n\ttest('Themes implicitly return their class name', () => {\n\t\texpect(String(myTheme)).toBe(myThemeClassName)\n\t\texpect('' + myTheme).toBe(myThemeClassName)\n\t\texpect(`${myTheme}`).toBe(myThemeClassName)\n\t})\n\n\ttest('Components can explicitly return their class name', () => {\n\t\texpect(myComponent.className).toBe(myComponentClassName)\n\t\texpect(myComponent.toString()).toBe(myComponentClassName)\n\t})\n\n\ttest('Themes can explicitly return their class name', () => {\n\t\texpect(myTheme.className).toBe(myThemeClassName)\n\t\texpect(myTheme.toString()).toBe(myThemeClassName)\n\t})\n\n\ttest('Components and themes can explicitly return their selector', () => {\n\t\texpect(myComponent.selector).toBe(`.${myComponentClassName}`)\n\t\texpect(myTheme.selector).toBe(`.${myThemeClassName}`)\n\t})\n\n\tconst sheetCssText = `--sxs{--sxs:0 t-jPkpUS}@media{.${myThemeClassName}{--colors-blue:dodgerblue}}--sxs{--sxs:2 c-cLikna}@media{.${myComponentClassName}{all:unset;font:inherit;margin:0;padding:0.5em 1em}}`\n\n\ttest('Sheets implicitly return their cssText', () => {\n\t\texpect(String(sheet)).toBe(sheetCssText)\n\t\texpect('' + sheet).toBe(sheetCssText)\n\t\texpect(`${sheet}`).toBe(sheetCssText)\n\t})\n\n\ttest('Sheets can explicitly return their cssText', () => {\n\t\texpect(getCssText()).toBe(sheetCssText)\n\t\texpect(toString()).toBe(sheetCssText)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-tokens.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Tokens', () => {\n\ttest('Authors can use a regular token #1', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tcolors: {\n\t\t\t\t\tred: 'tomato',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tcolor: '$red',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-iknykm}@media{` +\n\t\t\t\t`:root,.t-iknykm{--colors-red:tomato}` +\n\t\t\t`}--sxs{--sxs:1 fMIGFF}@media{` +\n\t\t\t\t`article{color:var(--colors-red)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use a regular token #2', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tshadows: {\n\t\t\t\t\tred: 'tomato',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tboxShadow: '0 0 0 1px $red',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-daOLKV}@media{` +\n\t\t\t\t`:root,.t-daOLKV{--shadows-red:tomato}` +\n\t\t\t`}--sxs{--sxs:1 bstpNq}@media{` +\n\t\t\t\t`article{box-shadow:0 0 0 1px var(--shadows-red)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use a relative token #1', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tcolors: {\n\t\t\t\t\tred: 'tomato',\n\t\t\t\t\tred500: '$red',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tcolor: '$red500',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-eZaaph}@media{` +\n\t\t\t\t`:root,.t-eZaaph{--colors-red:tomato;--colors-red500:var(--colors-red)}` +\n\t\t\t`}--sxs{--sxs:1 fdgxsg}@media{` +\n\t\t\t\t`article{color:var(--colors-red500)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use a relative token #1', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tshadows: {\n\t\t\t\t\tred: 'tomato',\n\t\t\t\t\tred500: '$red',\n\t\t\t\t\tredUnique: '$$red'\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tboxShadow: '0 0 0 1px $red500',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-gxqihb}@media{` +\n\t\t\t\t`:root,.t-gxqihb{--shadows-red:tomato;--shadows-red500:var(--shadows-red);--shadows-redUnique:var(---red)}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 kyFUgb}@media{` +\n\t\t\t\t`article{box-shadow:0 0 0 1px var(--shadows-red500)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use an absolute token #1', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tcolors: {\n\t\t\t\t\tred: 'tomato',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tboxShadow: '0 0 0 1px $colors$red',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-iknykm}@media{` +\n\t\t\t\t`:root,.t-iknykm{--colors-red:tomato}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 hNRkrs}@media{` +\n\t\t\t\t`article{box-shadow:0 0 0 1px var(--colors-red)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use an absolute token #2', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tcolors: {\n\t\t\t\t\tred: 'tomato',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tboxShadow: '0 0 0 1px $colors$red',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-iknykm}@media{` +\n\t\t\t\t`:root,.t-iknykm{--colors-red:tomato}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 hNRkrs}@media{` +\n\t\t\t\t`article{box-shadow:0 0 0 1px var(--colors-red)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use a negative token #1', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tspace: {\n\t\t\t\t\tsp1: '100px',\n\t\t\t\t\tsp2: '200px',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tmarginLeft: '-$sp1',\n\t\t\t\tmarginTop: '-$sp2',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-hxjLZl}@media{` +\n\t\t\t\t`:root,.t-hxjLZl{--space-sp1:100px;--space-sp2:200px}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 kTSGli}@media{` +\n\t\t\t\t`article{margin-left:calc(var(--space-sp1)*-1);margin-top:calc(var(--space-sp2)*-1)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use a negative token #2', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tsizes: {\n\t\t\t\t\tsp1: '10px',\n\t\t\t\t\tsp2: '20px',\n\t\t\t\t\tsp3: '30px',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tmarginLeft: '-$sizes$sp1',\n\t\t\t\twidth: '$sp1',\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-ereMzu}@media{` +\n\t\t\t\t`:root,.t-ereMzu{--sizes-sp1:10px;--sizes-sp2:20px;--sizes-sp3:30px}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 kuTEdV}@media{` +\n\t\t\t\t`article{margin-left:calc(var(--sizes-sp1)*-1);width:var(--sizes-sp1)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use tokens from the globalCss theme object', () => {\n\t\tconst { globalCss, theme, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tspace: {\n\t\t\t\t\tsp1: '100px',\n\t\t\t\t\tsp2: '200px',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tmarginLeft: theme.space.sp1,\n\t\t\t\tmarginTop: theme.space.sp2,\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-hxjLZl}@media{` +\n\t\t\t\t`:root,.t-hxjLZl{--space-sp1:100px;--space-sp2:200px}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 lcIUgV}@media{` +\n\t\t\t\t`article{margin-left:var(--space-sp1);margin-top:var(--space-sp2)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use tokens from a new theme object', () => {\n\t\tconst { globalCss, createTheme, getCssText } = createStitches()\n\n\t\tconst mytheme = createTheme('my-theme', {\n\t\t\tspace: {\n\t\t\t\tsp1: '100px',\n\t\t\t\tsp2: '200px',\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tmarginLeft: mytheme.space.sp1,\n\t\t\t\tmarginTop: mytheme.space.sp2,\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:1 lcIUgV}@media{article{margin-left:var(--space-sp1);margin-top:var(--space-sp2)}}`,\n\t\t)\n\n\t\tvoid `${mytheme}`\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 my-theme}@media{` +\n\t\t\t\t`.my-theme{--space-sp1:100px;--space-sp2:200px}` +\n\t\t\t`}--sxs{--sxs:1 lcIUgV}@media{` +\n\t\t\t\t`article{margin-left:var(--space-sp1);margin-top:var(--space-sp2)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use tokens from the globalCss theme object', () => {\n\t\tconst { globalCss, theme, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tspace: {\n\t\t\t\t\tsp1: '100px',\n\t\t\t\t\tsp2: '200px',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tglobalCss({\n\t\t\tarticle: {\n\t\t\t\tmarginLeft: theme.space.sp1,\n\t\t\t\tmarginTop: theme.space.sp2,\n\t\t\t},\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-hxjLZl}@media{` +\n\t\t\t\t`:root,.t-hxjLZl{--space-sp1:100px;--space-sp2:200px}` +\n\t\t\t`}` +\n\t\t\t`--sxs{--sxs:1 lcIUgV}@media{` +\n\t\t\t\t`article{margin-left:var(--space-sp1);margin-top:var(--space-sp2)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can use the class from the root theme object', () => {\n\t\tconst { theme, getCssText } = createStitches({\n\t\t\tprefix: 'pedro',\n\t\t\ttheme: {\n\t\t\t\tcolors: {\n\t\t\t\t\tblue: 'dodgerblue',\n\t\t\t\t},\n\t\t\t}\n\t\t})\n\n\t\texpect(`<div class=\"${theme}\"></div>`).toBe(`<div class=\"pedro-t-jPkpUS\"></div>`)\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 pedro-t-jPkpUS}@media{` +\n\t\t\t\t`:root,.pedro-t-jPkpUS{--pedro-colors-blue:dodgerblue}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Authors can render custom units', () => {\n\t\tconst { globalCss, getCssText } = createStitches({\n\t\t\ttheme: {\n\t\t\t\tsizes: {\n\t\t\t\t\tfive: '5px',\n\t\t\t\t},\n\t\t\t}\n\t\t})\n\n\t\tglobalCss({\n\t\t\tbody: {\n\t\t\t\tmarginLeft: '5--sizes-five'\n\t\t\t}\n\t\t})()\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:0 t-bhZLEQ}@media{` +\n\t\t\t\t`:root,.t-bhZLEQ{--sizes-five:5px}` +\n\t\t\t`}--sxs{--sxs:1 gvABwA}@media{` +\n\t\t\t\t`body{margin-left:calc(var(--sizes-five)*5)}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/universal-with-typing.ts",
    "content": "import { createStitches } from '../types'\n\nconst { css, toString } = createStitches({\n\tmedia: {\n\t\tbp1: '(min-width: 640px)',\n\t},\n})\n\nconst xyz = css({\n\tcolor: 'red',\n})\n\nvoid xyz()\nvoid toString()\n"
  },
  {
    "path": "packages/core/tests/utils.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Utils', () => {\n\ttest('Authors can define utilties applied to components', () => {\n\t\tconst stitches = createStitches({\n\t\t\tutils: {\n\t\t\t\tbg: (value) => ({ backgroundColor: value }),\n\t\t\t},\n\t\t})\n\n\t\tconst component = stitches.css({\n\t\t\tbg: 'red',\n\t\t})\n\n\t\texpect(stitches.toString()).toBe('')\n\n\t\tcomponent.toString()\n\n\t\texpect(stitches.toString()).toBe(`--sxs{--sxs:2 c-bzwKCF}@media{.c-bzwKCF{background-color:red}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/core/tests/with-config-api.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('css.withConfig', () => {\n\ttest('Basic css calls without a config', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\texpect(css.withConfig).toBeInstanceOf(Function)\n\n\t\tconst component1of2 = css.withConfig()()\n\t\tconst className1of2 = `${component1of2}`\n\t\tconst cssString1of2 = getCssText()\n\n\t\texpect(component1of2).toBeInstanceOf(Function)\n\t\texpect(className1of2).toBe('PJLV')\n\t\texpect(cssString1of2).toBe('')\n\n\t\tconst componentToRender = css.withConfig()({ color: 'DodgerBlue' })\n\t\tconst className = componentToRender().toString()\n\t\tconst cssString = getCssText()\n\n\t\texpect(componentToRender).toBeInstanceOf(Function)\n\t\texpect(className).toBe('c-dataoT')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 PJLV c-dataoT}@media{.c-dataoT{color:DodgerBlue}}`)\n\t})\n\ttest('Creates the correct className with a componentId', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tcomponentId: 'cool-id',\n\t\t}\n\t\tconst componentToRender = css.withConfig(componentConfig)({ color: 'red' })\n\t\tconst className = componentToRender().toString()\n\t\tconst cssString = getCssText()\n\n\t\texpect(componentToRender).toBeInstanceOf(Function)\n\t\texpect(className).toBe('c-cool-id')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-cool-id}@media{.c-cool-id{color:red}}`)\n\t})\n\n\ttest('Creates the correct className with a displayName', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tdisplayName: 'my-cool-display-name',\n\t\t}\n\t\tconst componentToRender = css.withConfig(componentConfig)({ color: 'red' })\n\t\tconst className = componentToRender().toString()\n\t\tconst cssString = getCssText()\n\n\t\texpect(componentToRender).toBeInstanceOf(Function)\n\t\texpect(className).toBe('c-my-cool-display-name-gmqXFB')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-my-cool-display-name-gmqXFB}@media{.c-my-cool-display-name-gmqXFB{color:red}}`)\n\t})\n\n\ttest('Creates the correct className with a displayName and componentId', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tcomponentId: 'cool-id',\n\t\t\tdisplayName: 'my-cool-display-name',\n\t\t}\n\t\tconst componentToRender = css.withConfig(componentConfig)({ color: 'red' })\n\t\tconst className = componentToRender().toString()\n\t\tconst cssString = getCssText()\n\n\t\texpect(componentToRender).toBeInstanceOf(Function)\n\t\texpect(className).toBe('c-my-cool-display-name-cool-id')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-my-cool-display-name-cool-id}@media{.c-my-cool-display-name-cool-id{color:red}}`)\n\t})\n\n\ttest('Creates the correct className with a componentConfig while extending components', () => {\n\t\tconst { css, getCssText } = createStitches()\n\n\t\tconst ComponentToExtend = css.withConfig({\n\t\t\tcomponentId: 'component-to-extend-id',\n\t\t})({ color: 'red' })\n\t\tconst componentToRender = css.withConfig({ componentId: 'cool-component-id' })(ComponentToExtend, { color: 'blue' })\n\t\tconst className = componentToRender().toString()\n\t\texpect(className).toBe('c-component-to-extend-id c-cool-component-id')\n\t\tconst cssString = getCssText()\n\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-component-to-extend-id c-cool-component-id}@media{.c-component-to-extend-id{color:red}.c-cool-component-id{color:blue}}`)\n\t})\n})\n\ndescribe('shouldForwardStitchesProp', () => {\n\ttest('does not omit stitches props when shouldForwardStitchesProp returns true', () => {\n\t\tconst { css } = createStitches()\n\n\t\tconst componentOneConfig = {\n\t\t\tshouldForwardStitchesProp: () => false,\n\t\t}\n\t\tconst componentOne = css.withConfig(componentOneConfig)('button', {\n\t\t\tvariants: {\n\t\t\t\tvariant: {\n\t\t\t\t\tred: { background: 'red' },\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst {props: firstComponentProps} = componentOne({ variant: 'red', css: {} })\n\t\texpect(firstComponentProps.variant).toBe(undefined)\n\t\texpect(firstComponentProps.css).toEqual(undefined)\n\n\t\tconst componentTwoConfig = {\n\t\t\tshouldForwardStitchesProp: () => true,\n\t\t}\n\n\t\tconst componentTwo = css.withConfig(componentTwoConfig)('button', {\n\t\t\tvariants: {\n\t\t\t\tvariant: {\n\t\t\t\t\tred: { background: 'red' },\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst {props: secondComponentProps} = componentTwo({ variant: 'red', css: {} })\n\t\texpect(secondComponentProps.variant).toBe('red')\n\t\texpect(secondComponentProps.css).toEqual({})\n\t})\n\n\ttest('does not omit a non-stitches props when shouldForwardStitchesProp returns true', () => {\n\t\tconst { css } = createStitches()\n\t\tconst componentConfig = {\n\t\t\tshouldForwardStitchesProp: () => true,\n\t\t}\n\t\tconst componentToRender = css.withConfig(componentConfig)('button', {\n\t\t\tvariants: {\n\t\t\t\tvariant: {\n\t\t\t\t\tred: { background: 'red' },\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tconst props = componentToRender({ href: 'www.hello.com' }).props\n\t\texpect(props.href).toBe('www.hello.com')\n\t})\n\n\ttest('Omits variants when shouldForwardStitchesProp returns false', () => {\n\t\tconst { css } = createStitches()\n\t\tconst componentConfig = {\n\t\t\tshouldForwardStitchesProp: () => false,\n\t\t}\n\t\tconst componentToRender = css.withConfig(componentConfig)('button', {\n\t\t\tvariants: {\n\t\t\t\tvariant: {\n\t\t\t\t\tred: { background: 'red' },\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tconst props = componentToRender({ variant: 'red' }).props\n\t\texpect(props.variant).toBe(undefined)\n\t})\n})\n"
  },
  {
    "path": "packages/core/types/config.d.ts",
    "content": "import type * as CSSUtil from './css-util.js'\nimport type Stitches from './stitches.js'\n\n/** Configuration Interface */\ndeclare namespace ConfigType {\n\t/** Prefix interface. */\n\texport type Prefix<T = ''> = T extends string ? T: string\n\n\t/** Media interface. */\n\texport type Media<T = {}> = {\n\t\t[name in keyof T]: T[name] extends string ? T[name] : string\n\t}\n\n\t/** Theme interface. */\n\texport type Theme<T = {}> = {\n\t\tborderStyles?: { [token in number | string]: boolean | number | string }\n\t\tborderWidths?: { [token in number | string]: boolean | number | string }\n\t\tcolors?: { [token in number | string]: boolean | number | string }\n\t\tfonts?: { [token in number | string]: boolean | number | string }\n\t\tfontSizes?: { [token in number | string]: boolean | number | string }\n\t\tfontWeights?: { [token in number | string]: boolean | number | string }\n\t\tletterSpacings?: { [token in number | string]: boolean | number | string }\n\t\tlineHeights?: { [token in number | string]: boolean | number | string }\n\t\tradii?: { [token in number | string]: boolean | number | string }\n\t\tshadows?: { [token in number | string]: boolean | number | string }\n\t\tsizes?: { [token in number | string]: boolean | number | string }\n\t\tspace?: { [token in number | string]: boolean | number | string }\n\t\ttransitions?: { [token in number | string]: boolean | number | string }\n\t\tzIndices?: { [token in number | string]: boolean | number | string }\n\t} & {\n\t\t[Scale in keyof T]: {\n\t\t\t[Token in keyof T[Scale]]: T[Scale][Token] extends (boolean | number | string) ? T[Scale][Token] : (boolean | number | string)\n\t\t}\n\t}\n\n\t/** ThemeMap interface. */\n\texport type ThemeMap<T = {}> = {\n\t\t[Property in keyof T]: T[Property] extends string ? T[Property] : string\n\t}\n\n\t/** Utility interface. */\n\texport type Utils<T = {}> = {\n\t\t[Property in keyof T]: T[Property] extends (value: infer V) => {} ? T[Property] | ((value: V) => {\n\t\t\t[K in keyof CSSUtil.CSSProperties]?: CSSUtil.CSSProperties[K] | V\n\t\t}) : never\n\t}\n}\n\n/** Default ThemeMap. */\nexport interface DefaultThemeMap {\n\tgap: 'space'\n\tgridGap: 'space'\n\tcolumnGap: 'space'\n\tgridColumnGap: 'space'\n\trowGap: 'space'\n\tgridRowGap: 'space'\n\tinset: 'space'\n\tinsetBlock: 'space'\n\tinsetBlockEnd: 'space'\n\tinsetBlockStart: 'space'\n\tinsetInline: 'space'\n\tinsetInlineEnd: 'space'\n\tinsetInlineStart: 'space'\n\tmargin: 'space'\n\tmarginTop: 'space'\n\tmarginRight: 'space'\n\tmarginBottom: 'space'\n\tmarginLeft: 'space'\n\tmarginBlock: 'space'\n\tmarginBlockEnd: 'space'\n\tmarginBlockStart: 'space'\n\tmarginInline: 'space'\n\tmarginInlineEnd: 'space'\n\tmarginInlineStart: 'space'\n\tpadding: 'space'\n\tpaddingTop: 'space'\n\tpaddingRight: 'space'\n\tpaddingBottom: 'space'\n\tpaddingLeft: 'space'\n\tpaddingBlock: 'space'\n\tpaddingBlockEnd: 'space'\n\tpaddingBlockStart: 'space'\n\tpaddingInline: 'space'\n\tpaddingInlineEnd: 'space'\n\tpaddingInlineStart: 'space'\n\tscrollMargin: 'space'\n\tscrollMarginTop: 'space'\n\tscrollMarginRight: 'space'\n\tscrollMarginBottom: 'space'\n\tscrollMarginLeft: 'space'\n\tscrollMarginBlock: 'space'\n\tscrollMarginBlockEnd: 'space'\n\tscrollMarginBlockStart: 'space'\n\tscrollMarginInline: 'space'\n\tscrollMarginInlineEnd: 'space'\n\tscrollMarginInlineStart: 'space'\n\tscrollPadding: 'space'\n\tscrollPaddingTop: 'space'\n\tscrollPaddingRight: 'space'\n\tscrollPaddingBottom: 'space'\n\tscrollPaddingLeft: 'space'\n\tscrollPaddingBlock: 'space'\n\tscrollPaddingBlockEnd: 'space'\n\tscrollPaddingBlockStart: 'space'\n\tscrollPaddingInline: 'space'\n\tscrollPaddingInlineEnd: 'space'\n\tscrollPaddingInlineStart: 'space'\n\ttop: 'space'\n\tright: 'space'\n\tbottom: 'space'\n\tleft: 'space'\n\n\tfontSize: 'fontSizes'\n\n\tbackground: 'colors'\n\tbackgroundColor: 'colors'\n\tbackgroundImage: 'colors'\n\tborderImage: 'colors'\n\tborder: 'colors'\n\tborderBlock: 'colors'\n\tborderBlockEnd: 'colors'\n\tborderBlockStart: 'colors'\n\tborderBottom: 'colors'\n\tborderBottomColor: 'colors'\n\tborderColor: 'colors'\n\tborderInline: 'colors'\n\tborderInlineEnd: 'colors'\n\tborderInlineStart: 'colors'\n\tborderLeft: 'colors'\n\tborderLeftColor: 'colors'\n\tborderRight: 'colors'\n\tborderRightColor: 'colors'\n\tborderTop: 'colors'\n\tborderTopColor: 'colors'\n\tcaretColor: 'colors'\n\tcolor: 'colors'\n\tcolumnRuleColor: 'colors'\n\toutline: 'colors'\n\toutlineColor: 'colors'\n\tfill: 'colors'\n\tstroke: 'colors'\n\ttextDecorationColor: 'colors'\n\n\tfontFamily: 'fonts'\n\n\tfontWeight: 'fontWeights'\n\tlineHeight: 'lineHeights'\n\n\tletterSpacing: 'letterSpacings'\n\n\tblockSize: 'sizes'\n\tminBlockSize: 'sizes'\n\tmaxBlockSize: 'sizes'\n\tinlineSize: 'sizes'\n\tminInlineSize: 'sizes'\n\tmaxInlineSize: 'sizes'\n\twidth: 'sizes'\n\tminWidth: 'sizes'\n\tmaxWidth: 'sizes'\n\theight: 'sizes'\n\tminHeight: 'sizes'\n\tmaxHeight: 'sizes'\n\tflexBasis: 'sizes'\n\tgridTemplateColumns: 'sizes'\n\tgridTemplateRows: 'sizes'\n\n\tborderWidth: 'borderWidths'\n\tborderTopWidth: 'borderWidths'\n\tborderLeftWidth: 'borderWidths'\n\tborderRightWidth: 'borderWidths'\n\tborderBottomWidth: 'borderWidths'\n\n\tborderStyle: 'borderStyles'\n\tborderTopStyle: 'borderStyles'\n\tborderLeftStyle: 'borderStyles'\n\tborderRightStyle: 'borderStyles'\n\tborderBottomStyle: 'borderStyles'\n\n\tborderRadius: 'radii'\n\tborderTopLeftRadius: 'radii'\n\tborderTopRightRadius: 'radii'\n\tborderBottomRightRadius: 'radii'\n\tborderBottomLeftRadius: 'radii'\n\n\tboxShadow: 'shadows'\n\ttextShadow: 'shadows'\n\n\ttransition: 'transitions'\n\n\tzIndex: 'zIndices'\n}\n\n/** Returns a function used to create a new Stitches interface. */\nexport type CreateStitches = {\n\t<\n\t\tPrefix extends string = '',\n\t\tMedia extends {} = {},\n\t\tTheme extends {} = {},\n\t\tThemeMap extends {} = DefaultThemeMap,\n\t\tUtils extends {} = {}\n\t>(\n\t\tconfig?: {\n\t\t\tprefix?: ConfigType.Prefix<Prefix>\n\t\t\tmedia?: ConfigType.Media<Media>\n\t\t\ttheme?: ConfigType.Theme<Theme>\n\t\t\tthemeMap?: ConfigType.ThemeMap<ThemeMap>\n\t\t\tutils?: ConfigType.Utils<Utils>\n\t\t}\n\t): Stitches<Prefix, Media, Theme, ThemeMap, Utils>\n}\n"
  },
  {
    "path": "packages/core/types/css-util.d.ts",
    "content": "import type * as Native from './css.js'\nimport type * as Config from './config.js'\nimport type * as ThemeUtil from './theme.js'\nimport type * as Util from './util.js'\n\nexport { Native }\n\n/** CSS style declaration object. */\nexport interface CSSProperties extends Native.StandardLonghandProperties, Native.StandardShorthandProperties, Native.SvgProperties {}\n\ntype ValueByPropertyName<PropertyName> = PropertyName extends keyof CSSProperties ? CSSProperties[PropertyName] : never\n\ntype TokenByPropertyName<PropertyName, Theme, ThemeMap> = PropertyName extends keyof ThemeMap ? TokenByScaleName<ThemeMap[PropertyName], Theme> : never\n\ntype TokenByScaleName<ScaleName, Theme> = ScaleName extends keyof Theme ? Util.Prefixed<'$', keyof Theme[ScaleName]> : never\n\n/** Returns a Style interface, leveraging the given media and style map. */\nexport type CSS<\n\tMedia = {},\n\tTheme = {},\n\tThemeMap = Config.DefaultThemeMap,\n\tUtils = {},\n> = (\n\t// nested at-rule css styles\n\t& {\n\t\t[K in Util.Prefixed<'@', keyof Media>]?: CSS<Media, Theme, ThemeMap, Utils>\n\t}\n\t// known property styles\n\t& {\n\t\t[K in keyof CSSProperties as K extends keyof Utils ? never : K]?: (\n\t\t\t| ValueByPropertyName<K>\n\t\t\t| TokenByPropertyName<K, Theme, ThemeMap>\n\t\t\t| Native.Globals\n\t\t\t| ThemeUtil.ScaleValue\n\t\t\t| Util.Index\n\t\t\t| undefined\n\t\t)\n\t}\n\t// known utility styles\n\t& {\n\t\t[K in keyof Utils]?: Utils[K] extends (arg: infer P) => any\n\t\t\t? (\n\t\t\t\t| (\n\t\t\t\t\tP extends any[]\n\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t| (\n\t\t\t\t\t\t\t\t$$PropertyValue extends keyof P[0]\n\t\t\t\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t\t\t\t| ValueByPropertyName<P[0][$$PropertyValue]>\n\t\t\t\t\t\t\t\t\t\t| TokenByPropertyName<P[0][$$PropertyValue], Theme, ThemeMap>\n\t\t\t\t\t\t\t\t\t\t| Native.Globals\n\t\t\t\t\t\t\t\t\t\t| ThemeUtil.ScaleValue\n\t\t\t\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t: $$ScaleValue extends keyof P[0]\n\t\t\t\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t\t\t\t| TokenByScaleName<P[0][$$ScaleValue], Theme>\n\t\t\t\t\t\t\t\t\t\t| { scale: P[0][$$ScaleValue] }\n\t\t\t\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t: never\n\t\t\t\t\t\t\t)[]\n\t\t\t\t\t\t\t| P\n\t\t\t\t\t\t)\n\t\t\t\t\t: $$PropertyValue extends keyof P\n\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t| ValueByPropertyName<P[$$PropertyValue]>\n\t\t\t\t\t\t\t| TokenByPropertyName<P[$$PropertyValue], Theme, ThemeMap>\n\t\t\t\t\t\t\t| Native.Globals\n\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t)\n\t\t\t\t\t: $$ScaleValue extends keyof P\n\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t| TokenByScaleName<P[$$ScaleValue], Theme>\n\t\t\t\t\t\t\t| { scale: P[$$ScaleValue] }\n\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t)\n\t\t\t\t\t: never\n\t\t\t\t)\n\t\t\t\t| P\n\t\t\t)\n\t\t: never\n\t}\n\t// known theme styles\n\t& {\n\t\t[K in keyof ThemeMap as K extends keyof CSSProperties ? never : K extends keyof Utils ? never : K]?: (\n\t\t\t\t| Native.Globals\n\t\t\t\t| Util.Index\n\t\t\t\t| undefined\n\t\t\t)\n\t}\n\t// unknown css declaration styles\n\t& {\n\t\t/** Unknown property. */\n\t\t[K: string]: (\n\t\t\t| number\n\t\t\t| string\n\t\t\t| CSS<Media, Theme, ThemeMap, Utils>\n\t\t\t| {}\n\t\t\t| undefined\n\t\t)\n\t}\n)\n\n/** Unique symbol used to reference a property value. */\nexport declare const $$PropertyValue: unique symbol\n\n/** Unique symbol used to reference a property value. */\nexport type $$PropertyValue = typeof $$PropertyValue\n\n/** Unique symbol used to reference a token value. */\nexport declare const $$ScaleValue: unique symbol\n\n/** Unique symbol used to reference a token value. */\nexport type $$ScaleValue = typeof $$ScaleValue\n\nexport declare const $$ThemeValue: unique symbol\n\nexport type $$ThemeValue = typeof $$ThemeValue\n\n// https://github.com/microsoft/TypeScript/issues/37888#issuecomment-846638356\nexport type WithPropertyValue<T> = {\n\treadonly [K in $$PropertyValue]: T\n}\nexport type WithScaleValue<T> = {\n\treadonly [K in $$ScaleValue]: T;\n}\n"
  },
  {
    "path": "packages/core/types/css.d.ts",
    "content": "/** @license MIT License\n * Copyright (c) 2017-present, Fredrik Nicol\n * Copyright (c) 2021-present, Jonathan Neal\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\nexport {};\n\n\nexport interface StandardLonghandProperties {\n  /**\n   * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.\n   *\n   * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  alignContent?: Property.AlignContent;\n  /**\n   * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  alignItems?: Property.AlignItems;\n  /**\n   * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  alignSelf?: Property.AlignSelf;\n  /**\n   * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.\n   *\n   * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  alignTracks?: Property.AlignTracks;\n  /**\n   * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  animationDelay?: Property.AnimationDelay;\n  /**\n   * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.\n   *\n   * **Syntax**: `<single-animation-direction>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  animationDirection?: Property.AnimationDirection;\n  /**\n   * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  animationDuration?: Property.AnimationDuration;\n  /**\n   * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.\n   *\n   * **Syntax**: `<single-animation-fill-mode>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  animationFillMode?: Property.AnimationFillMode;\n  /**\n   * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.\n   *\n   * **Syntax**: `<single-animation-iteration-count>#`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  animationIterationCount?: Property.AnimationIterationCount;\n  /**\n   * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.\n   *\n   * **Syntax**: `[ none | <keyframes-name> ]#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  animationName?: Property.AnimationName;\n  /**\n   * The **`animation-play-state`** CSS property sets whether an animation is running or paused.\n   *\n   * **Syntax**: `<single-animation-play-state>#`\n   *\n   * **Initial value**: `running`\n   *\n   */\n  animationPlayState?: Property.AnimationPlayState;\n  /**\n   * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  animationTimingFunction?: Property.AnimationTimingFunction;\n  /**\n   * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.\n   *\n   * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  appearance?: Property.Appearance;\n  /**\n   * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.\n   *\n   * **Syntax**: `auto | <ratio>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  aspectRatio?: Property.AspectRatio;\n  /**\n   * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  backdropFilter?: Property.BackdropFilter;\n  /**\n   * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.\n   *\n   * **Syntax**: `visible | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  backfaceVisibility?: Property.BackfaceVisibility;\n  /**\n   * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.\n   *\n   * **Syntax**: `<attachment>#`\n   *\n   * **Initial value**: `scroll`\n   *\n   */\n  backgroundAttachment?: Property.BackgroundAttachment;\n  /**\n   * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.\n   *\n   * **Syntax**: `<blend-mode>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  backgroundBlendMode?: Property.BackgroundBlendMode;\n  /**\n   * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  backgroundClip?: Property.BackgroundClip;\n  /**\n   * The **`background-color`** CSS property sets the background color of an element.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `transparent`\n   *\n   */\n  backgroundColor?: Property.BackgroundColor;\n  /**\n   * The **`background-image`** CSS property sets one or more background images on an element.\n   *\n   * **Syntax**: `<bg-image>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  backgroundImage?: Property.BackgroundImage;\n  /**\n   * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  backgroundOrigin?: Property.BackgroundOrigin;\n  /**\n   * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `left`\n   *\n   */\n  backgroundPositionX?: Property.BackgroundPositionX;\n  /**\n   * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  backgroundPositionY?: Property.BackgroundPositionY;\n  /**\n   * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `repeat`\n   *\n   */\n  backgroundRepeat?: Property.BackgroundRepeat;\n  /**\n   * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto auto`\n   *\n   */\n  backgroundSize?: Property.BackgroundSize;\n  /**\n   * **Syntax**: `clip | ellipsis | <string>`\n   *\n   * **Initial value**: `clip`\n   */\n  blockOverflow?: Property.BlockOverflow;\n  /**\n   * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  blockSize?: Property.BlockSize;\n  /**\n   * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBlockColor?: Property.BorderBlockColor;\n  /**\n   * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBlockEndColor?: Property.BorderBlockEndColor;\n  /**\n   * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBlockEndStyle?: Property.BorderBlockEndStyle;\n  /**\n   * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBlockEndWidth?: Property.BorderBlockEndWidth;\n  /**\n   * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBlockStartColor?: Property.BorderBlockStartColor;\n  /**\n   * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBlockStartStyle?: Property.BorderBlockStartStyle;\n  /**\n   * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBlockStartWidth?: Property.BorderBlockStartWidth;\n  /**\n   * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBlockStyle?: Property.BorderBlockStyle;\n  /**\n   * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBlockWidth?: Property.BorderBlockWidth;\n  /**\n   * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBottomColor?: Property.BorderBottomColor;\n  /**\n   * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderBottomLeftRadius?: Property.BorderBottomLeftRadius;\n  /**\n   * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderBottomRightRadius?: Property.BorderBottomRightRadius;\n  /**\n   * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBottomStyle?: Property.BorderBottomStyle;\n  /**\n   * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBottomWidth?: Property.BorderBottomWidth;\n  /**\n   * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.\n   *\n   * **Syntax**: `collapse | separate`\n   *\n   * **Initial value**: `separate`\n   *\n   */\n  borderCollapse?: Property.BorderCollapse;\n  /**\n   * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderEndEndRadius?: Property.BorderEndEndRadius;\n  /**\n   * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderEndStartRadius?: Property.BorderEndStartRadius;\n  /**\n   * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderImageOutset?: Property.BorderImageOutset;\n  /**\n   * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  borderImageRepeat?: Property.BorderImageRepeat;\n  /**\n   * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.\n   *\n   * **Syntax**: `<number-percentage>{1,4} && fill?`\n   *\n   * **Initial value**: `100%`\n   *\n   */\n  borderImageSlice?: Property.BorderImageSlice;\n  /**\n   * The **`border-image-source`** CSS property sets the source image used to create an element's border image.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderImageSource?: Property.BorderImageSource;\n  /**\n   * The **`border-image-width`** CSS property sets the width of an element's border image.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  borderImageWidth?: Property.BorderImageWidth;\n  /**\n   * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderInlineColor?: Property.BorderInlineColor;\n  /**\n   * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderInlineEndColor?: Property.BorderInlineEndColor;\n  /**\n   * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderInlineEndStyle?: Property.BorderInlineEndStyle;\n  /**\n   * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderInlineEndWidth?: Property.BorderInlineEndWidth;\n  /**\n   * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderInlineStartColor?: Property.BorderInlineStartColor;\n  /**\n   * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderInlineStartStyle?: Property.BorderInlineStartStyle;\n  /**\n   * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderInlineStartWidth?: Property.BorderInlineStartWidth;\n  /**\n   * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderInlineStyle?: Property.BorderInlineStyle;\n  /**\n   * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderInlineWidth?: Property.BorderInlineWidth;\n  /**\n   * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderLeftColor?: Property.BorderLeftColor;\n  /**\n   * The **`border-left-style`** CSS property sets the line style of an element's left `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderLeftStyle?: Property.BorderLeftStyle;\n  /**\n   * The **`border-left-width`** CSS property sets the width of the left border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderLeftWidth?: Property.BorderLeftWidth;\n  /**\n   * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderRightColor?: Property.BorderRightColor;\n  /**\n   * The **`border-right-style`** CSS property sets the line style of an element's right `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderRightStyle?: Property.BorderRightStyle;\n  /**\n   * The **`border-right-width`** CSS property sets the width of the right border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderRightWidth?: Property.BorderRightWidth;\n  /**\n   * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.\n   *\n   * **Syntax**: `<length> <length>?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderSpacing?: Property.BorderSpacing;\n  /**\n   * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderStartEndRadius?: Property.BorderStartEndRadius;\n  /**\n   * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderStartStartRadius?: Property.BorderStartStartRadius;\n  /**\n   * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderTopColor?: Property.BorderTopColor;\n  /**\n   * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderTopLeftRadius?: Property.BorderTopLeftRadius;\n  /**\n   * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderTopRightRadius?: Property.BorderTopRightRadius;\n  /**\n   * The **`border-top-style`** CSS property sets the line style of an element's top `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderTopStyle?: Property.BorderTopStyle;\n  /**\n   * The **`border-top-width`** CSS property sets the width of the top border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderTopWidth?: Property.BorderTopWidth;\n  /**\n   * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  bottom?: Property.Bottom;\n  /**\n   * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.\n   *\n   * **Syntax**: `slice | clone`\n   *\n   * **Initial value**: `slice`\n   *\n   */\n  boxDecorationBreak?: Property.BoxDecorationBreak;\n  /**\n   * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.\n   *\n   * **Syntax**: `none | <shadow>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  boxShadow?: Property.BoxShadow;\n  /**\n   * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.\n   *\n   * **Syntax**: `content-box | border-box`\n   *\n   * **Initial value**: `content-box`\n   *\n   */\n  boxSizing?: Property.BoxSizing;\n  /**\n   * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  breakAfter?: Property.BreakAfter;\n  /**\n   * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  breakBefore?: Property.BreakBefore;\n  /**\n   * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  breakInside?: Property.BreakInside;\n  /**\n   * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.\n   *\n   * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  captionSide?: Property.CaptionSide;\n  /**\n   * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.\n   *\n   * **Syntax**: `auto | <color>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  caretColor?: Property.CaretColor;\n  /**\n   * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.\n   *\n   * **Syntax**: `none | left | right | both | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  clear?: Property.Clear;\n  /**\n   * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.\n   *\n   * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  clipPath?: Property.ClipPath;\n  /**\n   * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: Varies from one browser to another\n   *\n   */\n  color?: Property.Color;\n  /**\n   * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.\n   *\n   * **Syntax**: `economy | exact`\n   *\n   * **Initial value**: `economy`\n   *\n   */\n  colorAdjust?: Property.ColorAdjust;\n  /**\n   * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.\n   *\n   * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  colorScheme?: Property.ColorScheme;\n  /**\n   * The **`column-count`** CSS property breaks an element's content into the specified number of columns.\n   *\n   * **Syntax**: `<integer> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  columnCount?: Property.ColumnCount;\n  /**\n   * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.\n   *\n   * **Syntax**: `auto | balance | balance-all`\n   *\n   * **Initial value**: `balance`\n   *\n   */\n  columnFill?: Property.ColumnFill;\n  /**\n   * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  columnGap?: Property.ColumnGap;\n  /**\n   * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  columnRuleColor?: Property.ColumnRuleColor;\n  /**\n   * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  columnRuleStyle?: Property.ColumnRuleStyle;\n  /**\n   * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  columnRuleWidth?: Property.ColumnRuleWidth;\n  /**\n   * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.\n   *\n   * **Syntax**: `none | all`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  columnSpan?: Property.ColumnSpan;\n  /**\n   * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.\n   *\n   * **Syntax**: `<length> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  columnWidth?: Property.ColumnWidth;\n  /**\n   * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.\n   *\n   * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  contain?: Property.Contain;\n  /**\n   * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._\n   *\n   * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  content?: Property.Content;\n  /**\n   * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.\n   *\n   * **Syntax**: `visible | auto | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  contentVisibility?: Property.ContentVisibility;\n  /**\n   * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  counterIncrement?: Property.CounterIncrement;\n  /**\n   * The **`counter-reset`** CSS property resets a CSS counter to a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  counterReset?: Property.CounterReset;\n  /**\n   * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  counterSet?: Property.CounterSet;\n  /**\n   * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.\n   *\n   * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  cursor?: Property.Cursor;\n  /**\n   * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).\n   *\n   * **Syntax**: `ltr | rtl`\n   *\n   * **Initial value**: `ltr`\n   *\n   */\n  direction?: Property.Direction;\n  /**\n   * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.\n   *\n   * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`\n   *\n   * **Initial value**: `inline`\n   *\n   */\n  display?: Property.Display;\n  /**\n   * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.\n   *\n   * **Syntax**: `show | hide`\n   *\n   * **Initial value**: `show`\n   *\n   */\n  emptyCells?: Property.EmptyCells;\n  /**\n   * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  filter?: Property.Filter;\n  /**\n   * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.\n   *\n   * **Syntax**: `content | <'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  flexBasis?: Property.FlexBasis;\n  /**\n   * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).\n   *\n   * **Syntax**: `row | row-reverse | column | column-reverse`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  flexDirection?: Property.FlexDirection;\n  /**\n   * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  flexGrow?: Property.FlexGrow;\n  /**\n   * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  flexShrink?: Property.FlexShrink;\n  /**\n   * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.\n   *\n   * **Syntax**: `nowrap | wrap | wrap-reverse`\n   *\n   * **Initial value**: `nowrap`\n   *\n   */\n  flexWrap?: Property.FlexWrap;\n  /**\n   * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).\n   *\n   * **Syntax**: `left | right | none | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  float?: Property.Float;\n  /**\n   * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.\n   *\n   * **Syntax**: `[ <family-name> | <generic-family> ]#`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  fontFamily?: Property.FontFamily;\n  /**\n   * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.\n   *\n   * **Syntax**: `normal | <feature-tag-value>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontFeatureSettings?: Property.FontFeatureSettings;\n  /**\n   * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.\n   *\n   * **Syntax**: `auto | normal | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  fontKerning?: Property.FontKerning;\n  /**\n   * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.\n   *\n   * **Syntax**: `normal | <string>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontLanguageOverride?: Property.FontLanguageOverride;\n  /**\n   * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  fontOpticalSizing?: Property.FontOpticalSizing;\n  /**\n   * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.\n   *\n   * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  fontSize?: Property.FontSize;\n  /**\n   * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).\n   *\n   * **Syntax**: `none | <number>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  fontSizeAdjust?: Property.FontSizeAdjust;\n  /**\n   * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.\n   *\n   * **Syntax**: `auto | always | <absolute-size> | <length>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  fontSmooth?: Property.FontSmooth;\n  /**\n   * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.\n   *\n   * **Syntax**: `<font-stretch-absolute>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontStretch?: Property.FontStretch;\n  /**\n   * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.\n   *\n   * **Syntax**: `normal | italic | oblique <angle>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontStyle?: Property.FontStyle;\n  /**\n   * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.\n   *\n   * **Syntax**: `none | [ weight || style ]`\n   *\n   * **Initial value**: `weight style`\n   *\n   */\n  fontSynthesis?: Property.FontSynthesis;\n  /**\n   * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariant?: Property.FontVariant;\n  /**\n   * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.\n   *\n   * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantCaps?: Property.FontVariantCaps;\n  /**\n   * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.\n   *\n   * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantEastAsian?: Property.FontVariantEastAsian;\n  /**\n   * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantLigatures?: Property.FontVariantLigatures;\n  /**\n   * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.\n   *\n   * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantNumeric?: Property.FontVariantNumeric;\n  /**\n   * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.\n   *\n   * **Syntax**: `normal | sub | super`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantPosition?: Property.FontVariantPosition;\n  /**\n   * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.\n   *\n   * **Syntax**: `normal | [ <string> <number> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariationSettings?: Property.FontVariationSettings;\n  /**\n   * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.\n   *\n   * **Syntax**: `<font-weight-absolute> | bolder | lighter`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontWeight?: Property.FontWeight;\n  /**\n   * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  forcedColorAdjust?: Property.ForcedColorAdjust;\n  /**\n   * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridAutoColumns?: Property.GridAutoColumns;\n  /**\n   * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.\n   *\n   * **Syntax**: `[ row | column ] || dense`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  gridAutoFlow?: Property.GridAutoFlow;\n  /**\n   * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridAutoRows?: Property.GridAutoRows;\n  /**\n   * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridColumnEnd?: Property.GridColumnEnd;\n  /**\n   * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridColumnStart?: Property.GridColumnStart;\n  /**\n   * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridRowEnd?: Property.GridRowEnd;\n  /**\n   * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridRowStart?: Property.GridRowStart;\n  /**\n   * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n   *\n   * **Syntax**: `none | <string>+`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  gridTemplateAreas?: Property.GridTemplateAreas;\n  /**\n   * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  gridTemplateColumns?: Property.GridTemplateColumns;\n  /**\n   * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  gridTemplateRows?: Property.GridTemplateRows;\n  /**\n   * The **`grid-gap`** CSS property sets the size of the gap (gutter) between between rows and columns.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\t\n  gridGap?: Property.GridGap;\n  /**\n   * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.\n   *\n   * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  hangingPunctuation?: Property.HangingPunctuation;\n  /**\n   * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  height?: Property.Height;\n  /**\n   * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.\n   *\n   * **Syntax**: `none | manual | auto`\n   *\n   * **Initial value**: `manual`\n   *\n   */\n  hyphens?: Property.Hyphens;\n  /**\n   * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.\n   *\n   * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`\n   *\n   * **Initial value**: `from-image`\n   *\n   */\n  imageOrientation?: Property.ImageOrientation;\n  /**\n   * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.\n   *\n   * **Syntax**: `auto | crisp-edges | pixelated`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  imageRendering?: Property.ImageRendering;\n  /**\n   * **Syntax**: `[ from-image || <resolution> ] && snap?`\n   *\n   * **Initial value**: `1dppx`\n   */\n  imageResolution?: Property.ImageResolution;\n  /**\n   * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.\n   *\n   * **Syntax**: `normal | [ <number> <integer>? ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  initialLetter?: Property.InitialLetter;\n  /**\n   * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  inlineSize?: Property.InlineSize;\n  /**\n   * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.\n   *\n   * **Syntax**: `<'top'>{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  inset?: Property.Inset;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetBlock?: Property.InsetBlock;\n  /**\n   * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetBlockEnd?: Property.InsetBlockEnd;\n  /**\n   * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetBlockStart?: Property.InsetBlockStart;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetInline?: Property.InsetInline;\n  /**\n   * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetInlineEnd?: Property.InsetInlineEnd;\n  /**\n   * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetInlineStart?: Property.InsetInlineStart;\n  /**\n   * The **`isolation`** CSS property determines whether an element must create a new stacking context.\n   *\n   * **Syntax**: `auto | isolate`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  isolation?: Property.Isolation;\n  /**\n   * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.\n   *\n   * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  justifyContent?: Property.JustifyContent;\n  /**\n   * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`\n   *\n   * **Initial value**: `legacy`\n   *\n   */\n  justifyItems?: Property.JustifyItems;\n  /**\n   * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  justifySelf?: Property.JustifySelf;\n  /**\n   * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.\n   *\n   * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  justifyTracks?: Property.JustifyTracks;\n  /**\n   * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  left?: Property.Left;\n  /**\n   * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.\n   *\n   * **Syntax**: `normal | <length>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  letterSpacing?: Property.LetterSpacing;\n  /**\n   * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.\n   *\n   * **Syntax**: `auto | loose | normal | strict | anywhere`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  lineBreak?: Property.LineBreak;\n  /**\n   * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.\n   *\n   * **Syntax**: `normal | <number> | <length> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  lineHeight?: Property.LineHeight;\n  /**\n   * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  lineHeightStep?: Property.LineHeightStep;\n  /**\n   * The **`list-style-image`** CSS property sets an image to be used as the list item marker.\n   *\n   * **Syntax**: `<image> | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  listStyleImage?: Property.ListStyleImage;\n  /**\n   * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.\n   *\n   * **Syntax**: `inside | outside`\n   *\n   * **Initial value**: `outside`\n   *\n   */\n  listStylePosition?: Property.ListStylePosition;\n  /**\n   * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.\n   *\n   * **Syntax**: `<counter-style> | <string> | none`\n   *\n   * **Initial value**: `disc`\n   *\n   */\n  listStyleType?: Property.ListStyleType;\n  /**\n   * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBlock?: Property.MarginBlock;\n  /**\n   * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBlockEnd?: Property.MarginBlockEnd;\n  /**\n   * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBlockStart?: Property.MarginBlockStart;\n  /**\n   * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBottom?: Property.MarginBottom;\n  /**\n   * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginInline?: Property.MarginInline;\n  /**\n   * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginInlineEnd?: Property.MarginInlineEnd;\n  /**\n   * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginInlineStart?: Property.MarginInlineStart;\n  /**\n   * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginLeft?: Property.MarginLeft;\n  /**\n   * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginRight?: Property.MarginRight;\n  /**\n   * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginTop?: Property.MarginTop;\n  /**\n   * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `alpha`\n   */\n  maskBorderMode?: Property.MaskBorderMode;\n  /**\n   * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maskBorderOutset?: Property.MaskBorderOutset;\n  /**\n   * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  maskBorderRepeat?: Property.MaskBorderRepeat;\n  /**\n   * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.\n   *\n   * **Syntax**: `<number-percentage>{1,4} fill?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maskBorderSlice?: Property.MaskBorderSlice;\n  /**\n   * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maskBorderSource?: Property.MaskBorderSource;\n  /**\n   * The **`mask-border-width`** CSS property sets the width of an element's mask border.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  maskBorderWidth?: Property.MaskBorderWidth;\n  /**\n   * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.\n   *\n   * **Syntax**: `[ <geometry-box> | no-clip ]#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  maskClip?: Property.MaskClip;\n  /**\n   * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.\n   *\n   * **Syntax**: `<compositing-operator>#`\n   *\n   * **Initial value**: `add`\n   *\n   */\n  maskComposite?: Property.MaskComposite;\n  /**\n   * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.\n   *\n   * **Syntax**: `<mask-reference>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maskImage?: Property.MaskImage;\n  /**\n   * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.\n   *\n   * **Syntax**: `<masking-mode>#`\n   *\n   * **Initial value**: `match-source`\n   *\n   */\n  maskMode?: Property.MaskMode;\n  /**\n   * The **`mask-origin`** CSS property sets the origin of a mask.\n   *\n   * **Syntax**: `<geometry-box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  maskOrigin?: Property.MaskOrigin;\n  /**\n   * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.\n   *\n   * **Syntax**: `<position>#`\n   *\n   * **Initial value**: `center`\n   *\n   */\n  maskPosition?: Property.MaskPosition;\n  /**\n   * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `no-repeat`\n   *\n   */\n  maskRepeat?: Property.MaskRepeat;\n  /**\n   * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  maskSize?: Property.MaskSize;\n  /**\n   * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `luminance`\n   *\n   */\n  maskType?: Property.MaskType;\n  /**\n   * The `math-style` property indicates whether MathML equations should render with normal or compact height.\n   *\n   * **Syntax**: `normal | compact`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  mathStyle?: Property.MathStyle;\n  /**\n   * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maxBlockSize?: Property.MaxBlockSize;\n  /**\n   * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maxHeight?: Property.MaxHeight;\n  /**\n   * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maxInlineSize?: Property.MaxInlineSize;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  maxLines?: Property.MaxLines;\n  /**\n   * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maxWidth?: Property.MaxWidth;\n  /**\n   * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  minBlockSize?: Property.MinBlockSize;\n  /**\n   * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  minHeight?: Property.MinHeight;\n  /**\n   * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  minInlineSize?: Property.MinInlineSize;\n  /**\n   * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  minWidth?: Property.MinWidth;\n  /**\n   * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.\n   *\n   * **Syntax**: `<blend-mode>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  mixBlendMode?: Property.MixBlendMode;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  motionDistance?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  motionPath?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  motionRotation?: Property.OffsetRotate;\n  /**\n   * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.\n   *\n   * **Syntax**: `fill | contain | cover | none | scale-down`\n   *\n   * **Initial value**: `fill`\n   *\n   */\n  objectFit?: Property.ObjectFit;\n  /**\n   * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  objectPosition?: Property.ObjectPosition;\n  /**\n   * **Syntax**: `auto | <position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  offsetAnchor?: Property.OffsetAnchor;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  offsetDistance?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  offsetPath?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  offsetRotate?: Property.OffsetRotate;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  offsetRotation?: Property.OffsetRotate;\n  /**\n   * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `1.0`\n   *\n   */\n  opacity?: Property.Opacity;\n  /**\n   * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  order?: Property.Order;\n  /**\n   * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  orphans?: Property.Orphans;\n  /**\n   * The **`outline-color`** CSS property sets the color of an element's outline.\n   *\n   * **Syntax**: `<color> | invert`\n   *\n   * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other\n   *\n   */\n  outlineColor?: Property.OutlineColor;\n  /**\n   * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  outlineOffset?: Property.OutlineOffset;\n  /**\n   * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `auto | <'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  outlineStyle?: Property.OutlineStyle;\n  /**\n   * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  outlineWidth?: Property.OutlineWidth;\n  /**\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overflowAnchor?: Property.OverflowAnchor;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overflowBlock?: Property.OverflowBlock;\n  /**\n   * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.\n   *\n   * **Syntax**: `padding-box | content-box`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  overflowClipBox?: Property.OverflowClipBox;\n  /**\n   * **Syntax**: `<visual-box> || <length [0,∞]>`\n   *\n   * **Initial value**: `0px`\n   *\n   */\n  overflowClipMargin?: Property.OverflowClipMargin;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overflowInline?: Property.OverflowInline;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word | anywhere`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  overflowWrap?: Property.OverflowWrap;\n  /**\n   * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflowX?: Property.OverflowX;\n  /**\n   * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflowY?: Property.OverflowY;\n  /**\n   * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock;\n  /**\n   * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorInline?: Property.OverscrollBehaviorInline;\n  /**\n   * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorX?: Property.OverscrollBehaviorX;\n  /**\n   * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorY?: Property.OverscrollBehaviorY;\n  /**\n   * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBlock?: Property.PaddingBlock;\n  /**\n   * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBlockEnd?: Property.PaddingBlockEnd;\n  /**\n   * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBlockStart?: Property.PaddingBlockStart;\n  /**\n   * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBottom?: Property.PaddingBottom;\n  /**\n   * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingInline?: Property.PaddingInline;\n  /**\n   * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingInlineEnd?: Property.PaddingInlineEnd;\n  /**\n   * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingInlineStart?: Property.PaddingInlineStart;\n  /**\n   * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingLeft?: Property.PaddingLeft;\n  /**\n   * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingRight?: Property.PaddingRight;\n  /**\n   * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingTop?: Property.PaddingTop;\n  /**\n   * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pageBreakAfter?: Property.PageBreakAfter;\n  /**\n   * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pageBreakBefore?: Property.PageBreakBefore;\n  /**\n   * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.\n   *\n   * **Syntax**: `auto | avoid`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pageBreakInside?: Property.PageBreakInside;\n  /**\n   * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.\n   *\n   * **Syntax**: `normal | [ fill || stroke || markers ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  paintOrder?: Property.PaintOrder;\n  /**\n   * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.\n   *\n   * **Syntax**: `none | <length>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  perspective?: Property.Perspective;\n  /**\n   * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  perspectiveOrigin?: Property.PerspectiveOrigin;\n  /**\n   * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.\n   *\n   * **Syntax**: `<'align-content'> <'justify-content'>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  placeContent?: Property.PlaceContent;\n  /**\n   * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.\n   *\n   * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pointerEvents?: Property.PointerEvents;\n  /**\n   * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.\n   *\n   * **Syntax**: `static | relative | absolute | sticky | fixed`\n   *\n   * **Initial value**: `static`\n   *\n   */\n  position?: Property.Position;\n  /**\n   * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.\n   *\n   * **Syntax**: `none | auto | [ <string> <string> ]+`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  quotes?: Property.Quotes;\n  /**\n   * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.\n   *\n   * **Syntax**: `none | both | horizontal | vertical | block | inline`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  resize?: Property.Resize;\n  /**\n   * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  right?: Property.Right;\n  /**\n   * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.\n   *\n   * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  rotate?: Property.Rotate;\n  /**\n   * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  rowGap?: Property.RowGap;\n  /**\n   * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.\n   *\n   * **Syntax**: `start | center | space-between | space-around`\n   *\n   * **Initial value**: `space-around`\n   *\n   */\n  rubyAlign?: Property.RubyAlign;\n  /**\n   * **Syntax**: `separate | collapse | auto`\n   *\n   * **Initial value**: `separate`\n   */\n  rubyMerge?: Property.RubyMerge;\n  /**\n   * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).\n   *\n   * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`\n   *\n   * **Initial value**: `alternate`\n   *\n   */\n  rubyPosition?: Property.RubyPosition;\n  /**\n   * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <number>{1,3}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scale?: Property.Scale;\n  /**\n   * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.\n   *\n   * **Syntax**: `auto | smooth`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollBehavior?: Property.ScrollBehavior;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMargin?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBlock?: Property.ScrollMarginBlock;\n  /**\n   * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd;\n  /**\n   * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBlockStart?: Property.ScrollMarginBlockStart;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBottom?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginInline?: Property.ScrollMarginInline;\n  /**\n   * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd;\n  /**\n   * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginInlineStart?: Property.ScrollMarginInlineStart;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginLeft?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginRight?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginTop?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPadding?: Property.ScrollPadding;\n  /**\n   * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBlock?: Property.ScrollPaddingBlock;\n  /**\n   * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd;\n  /**\n   * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart;\n  /**\n   * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBottom?: Property.ScrollPaddingBottom;\n  /**\n   * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingInline?: Property.ScrollPaddingInline;\n  /**\n   * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd;\n  /**\n   * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart;\n  /**\n   * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingLeft?: Property.ScrollPaddingLeft;\n  /**\n   * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingRight?: Property.ScrollPaddingRight;\n  /**\n   * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingTop?: Property.ScrollPaddingTop;\n  /**\n   * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.\n   *\n   * **Syntax**: `[ none | start | end | center ]{1,2}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scrollSnapAlign?: Property.ScrollSnapAlign;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMargin?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginBottom?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginLeft?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginRight?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginTop?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to \"pass over\" possible snap positions.\n   *\n   * **Syntax**: `normal | always`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  scrollSnapStop?: Property.ScrollSnapStop;\n  /**\n   * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.\n   *\n   * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scrollSnapType?: Property.ScrollSnapType;\n  /**\n   * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.\n   *\n   * **Syntax**: `auto | dark | light | <color>{2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollbarColor?: Property.ScrollbarColor;\n  /**\n   * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.\n   *\n   * **Syntax**: `auto | [ stable | always ] && both? && force?`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollbarGutter?: Property.ScrollbarGutter;\n  /**\n   * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.\n   *\n   * **Syntax**: `auto | thin | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollbarWidth?: Property.ScrollbarWidth;\n  /**\n   * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `0.0`\n   *\n   */\n  shapeImageThreshold?: Property.ShapeImageThreshold;\n  /**\n   * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  shapeMargin?: Property.ShapeMargin;\n  /**\n   * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.\n   *\n   * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  shapeOutside?: Property.ShapeOutside;\n  /**\n   * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).\n   *\n   * **Syntax**: `<integer> | <length>`\n   *\n   * **Initial value**: `8`\n   *\n   */\n  tabSize?: Property.TabSize;\n  /**\n   * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.\n   *\n   * **Syntax**: `auto | fixed`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  tableLayout?: Property.TableLayout;\n  /**\n   * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n   *\n   * **Syntax**: `start | end | left | right | center | justify | match-parent`\n   *\n   * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n   *\n   */\n  textAlign?: Property.TextAlign;\n  /**\n   * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.\n   *\n   * **Syntax**: `auto | start | end | left | right | center | justify`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textAlignLast?: Property.TextAlignLast;\n  /**\n   * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.\n   *\n   * **Syntax**: `none | all | [ digits <integer>? ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textCombineUpright?: Property.TextCombineUpright;\n  /**\n   * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  textDecorationColor?: Property.TextDecorationColor;\n  /**\n   * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.\n   *\n   * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textDecorationLine?: Property.TextDecorationLine;\n  /**\n   * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.\n   *\n   * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`\n   *\n   * **Initial value**: `objects`\n   *\n   */\n  textDecorationSkip?: Property.TextDecorationSkip;\n  /**\n   * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.\n   *\n   * **Syntax**: `auto | all | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textDecorationSkipInk?: Property.TextDecorationSkipInk;\n  /**\n   * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.\n   *\n   * **Syntax**: `solid | double | dotted | dashed | wavy`\n   *\n   * **Initial value**: `solid`\n   *\n   */\n  textDecorationStyle?: Property.TextDecorationStyle;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textDecorationThickness?: Property.TextDecorationThickness;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textDecorationWidth?: Property.TextDecorationThickness;\n  /**\n   * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  textEmphasisColor?: Property.TextEmphasisColor;\n  /**\n   * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.\n   *\n   * **Syntax**: `[ over | under ] && [ right | left ]`\n   *\n   * **Initial value**: `over right`\n   *\n   */\n  textEmphasisPosition?: Property.TextEmphasisPosition;\n  /**\n   * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textEmphasisStyle?: Property.TextEmphasisStyle;\n  /**\n   * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.\n   *\n   * **Syntax**: `<length-percentage> && hanging? && each-line?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  textIndent?: Property.TextIndent;\n  /**\n   * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.\n   *\n   * **Syntax**: `auto | inter-character | inter-word | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textJustify?: Property.TextJustify;\n  /**\n   * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.\n   *\n   * **Syntax**: `mixed | upright | sideways`\n   *\n   * **Initial value**: `mixed`\n   *\n   */\n  textOrientation?: Property.TextOrientation;\n  /**\n   * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.\n   *\n   * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`\n   *\n   * **Initial value**: `clip`\n   *\n   */\n  textOverflow?: Property.TextOverflow;\n  /**\n   * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.\n   *\n   * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textRendering?: Property.TextRendering;\n  /**\n   * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.\n   *\n   * **Syntax**: `none | <shadow-t>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textShadow?: Property.TextShadow;\n  /**\n   * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.\n   *\n   * **Syntax**: `none | auto | <percentage>`\n   *\n   * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).\n   *\n   */\n  textSizeAdjust?: Property.TextSizeAdjust;\n  /**\n   * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.\n   *\n   * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textTransform?: Property.TextTransform;\n  /**\n   * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.\n   *\n   * **Syntax**: `auto | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textUnderlineOffset?: Property.TextUnderlineOffset;\n  /**\n   * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.\n   *\n   * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textUnderlinePosition?: Property.TextUnderlinePosition;\n  /**\n   * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  top?: Property.Top;\n  /**\n   * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).\n   *\n   * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  touchAction?: Property.TouchAction;\n  /**\n   * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.\n   *\n   * **Syntax**: `none | <transform-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  transform?: Property.Transform;\n  /**\n   * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.\n   *\n   * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`\n   *\n   * **Initial value**: `view-box`\n   *\n   */\n  transformBox?: Property.TransformBox;\n  /**\n   * The **`transform-origin`** CSS property sets the origin for an element's transformations.\n   *\n   * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`\n   *\n   * **Initial value**: `50% 50% 0`\n   *\n   */\n  transformOrigin?: Property.TransformOrigin;\n  /**\n   * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.\n   *\n   * **Syntax**: `flat | preserve-3d`\n   *\n   * **Initial value**: `flat`\n   *\n   */\n  transformStyle?: Property.TransformStyle;\n  /**\n   * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  transitionDelay?: Property.TransitionDelay;\n  /**\n   * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  transitionDuration?: Property.TransitionDuration;\n  /**\n   * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.\n   *\n   * **Syntax**: `none | <single-transition-property>#`\n   *\n   * **Initial value**: all\n   *\n   */\n  transitionProperty?: Property.TransitionProperty;\n  /**\n   * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  transitionTimingFunction?: Property.TransitionTimingFunction;\n  /**\n   * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  translate?: Property.Translate;\n  /**\n   * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.\n   *\n   * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  unicodeBidi?: Property.UnicodeBidi;\n  /**\n   * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.\n   *\n   * **Syntax**: `auto | text | none | contain | all`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  userSelect?: Property.UserSelect;\n  /**\n   * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.\n   *\n   * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`\n   *\n   * **Initial value**: `baseline`\n   *\n   */\n  verticalAlign?: Property.VerticalAlign;\n  /**\n   * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.\n   *\n   * **Syntax**: `visible | hidden | collapse`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  visibility?: Property.Visibility;\n  /**\n   * The **`white-space`** CSS property sets how white space inside an element is handled.\n   *\n   * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  whiteSpace?: Property.WhiteSpace;\n  /**\n   * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  widows?: Property.Widows;\n  /**\n   * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  width?: Property.Width;\n  /**\n   * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.\n   *\n   * **Syntax**: `auto | <animateable-feature>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  willChange?: Property.WillChange;\n  /**\n   * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.\n   *\n   * **Syntax**: `normal | break-all | keep-all | break-word`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  wordBreak?: Property.WordBreak;\n  /**\n   * The **`word-spacing`** CSS property sets the length of space between words and between tags.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  wordSpacing?: Property.WordSpacing;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word`\n   *\n   * **Initial value**: `normal`\n   */\n  wordWrap?: Property.WordWrap;\n  /**\n   * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).\n   *\n   * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`\n   *\n   * **Initial value**: `horizontal-tb`\n   *\n   */\n  writingMode?: Property.WritingMode;\n  /**\n   * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.\n   *\n   * **Syntax**: `auto | <integer>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  zIndex?: Property.ZIndex;\n  /**\n   * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.\n   *\n   * **Syntax**: `normal | reset | <number> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  zoom?: Property.Zoom;\n}\n\nexport interface StandardShorthandProperties {\n  /**\n   * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.\n   *\n   * **Syntax**: `initial | inherit | unset | revert`\n   *\n   * **Initial value**: There is no practical initial value for it.\n   *\n   */\n  all?: Property.All;\n  /**\n   * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.\n   *\n   * **Syntax**: `<single-animation>#`\n   *\n   */\n  animation?: Property.Animation;\n  /**\n   * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.\n   *\n   * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`\n   *\n   */\n  background?: Property.Background;\n  /**\n   * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `<bg-position>#`\n   *\n   * **Initial value**: `0% 0%`\n   *\n   */\n  backgroundPosition?: Property.BackgroundPosition;\n  /**\n   * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  border?: Property.Border;\n  /**\n   * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderBlock?: Property.BorderBlock;\n  /**\n   * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderBlockEnd?: Property.BorderBlockEnd;\n  /**\n   * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderBlockStart?: Property.BorderBlockStart;\n  /**\n   * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderBottom?: Property.BorderBottom;\n  /**\n   * The **`border-color`** shorthand CSS property sets the color of an element's border.\n   *\n   * **Syntax**: `<color>{1,4}`\n   *\n   */\n  borderColor?: Property.BorderColor;\n  /**\n   * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.\n   *\n   * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`\n   *\n   */\n  borderImage?: Property.BorderImage;\n  /**\n   * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderInline?: Property.BorderInline;\n  /**\n   * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderInlineEnd?: Property.BorderInlineEnd;\n  /**\n   * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderInlineStart?: Property.BorderInlineStart;\n  /**\n   * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderLeft?: Property.BorderLeft;\n  /**\n   * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.\n   *\n   * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`\n   *\n   */\n  borderRadius?: Property.BorderRadius;\n  /**\n   * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderRight?: Property.BorderRight;\n  /**\n   * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n   *\n   * **Syntax**: `<line-style>{1,4}`\n   *\n   */\n  borderStyle?: Property.BorderStyle;\n  /**\n   * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderTop?: Property.BorderTop;\n  /**\n   * The **`border-width`** shorthand CSS property sets the width of an element's border.\n   *\n   * **Syntax**: `<line-width>{1,4}`\n   *\n   */\n  borderWidth?: Property.BorderWidth;\n  /**\n   * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`\n   *\n   */\n  columnRule?: Property.ColumnRule;\n  /**\n   * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.\n   *\n   * **Syntax**: `<'column-width'> || <'column-count'>`\n   *\n   */\n  columns?: Property.Columns;\n  /**\n   * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.\n   *\n   * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`\n   *\n   */\n  flex?: Property.Flex;\n  /**\n   * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.\n   *\n   * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`\n   *\n   */\n  flexFlow?: Property.FlexFlow;\n  /**\n   * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.\n   *\n   * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`\n   *\n   */\n  font?: Property.Font;\n  /**\n   * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.\n   *\n   * **Syntax**: `<'row-gap'> <'column-gap'>?`\n   *\n   */\n  gap?: Property.Gap;\n  /**\n   * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.\n   *\n   * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`\n   *\n   */\n  grid?: Property.Grid;\n  /**\n   * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`\n   *\n   */\n  gridArea?: Property.GridArea;\n  /**\n   * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  gridColumn?: Property.GridColumn;\n  /**\n   * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  gridRow?: Property.GridRow;\n  /**\n   * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.\n   *\n   * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`\n   *\n   */\n  gridTemplate?: Property.GridTemplate;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  lineClamp?: Property.LineClamp;\n  /**\n   * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.\n   *\n   * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`\n   *\n   */\n  listStyle?: Property.ListStyle;\n  /**\n   * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.\n   *\n   * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`\n   *\n   */\n  margin?: Property.Margin;\n  /**\n   * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.\n   *\n   * **Syntax**: `<mask-layer>#`\n   *\n   */\n  mask?: Property.Mask;\n  /**\n   * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.\n   *\n   * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`\n   *\n   */\n  maskBorder?: Property.MaskBorder;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  motion?: Property.Offset;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  offset?: Property.Offset;\n  /**\n   * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.\n   *\n   * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`\n   *\n   */\n  outline?: Property.Outline;\n  /**\n   * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n   *\n   * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflow?: Property.Overflow;\n  /**\n   * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.\n   *\n   * **Syntax**: `[ contain | none | auto ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehavior?: Property.OverscrollBehavior;\n  /**\n   * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.\n   *\n   * **Syntax**: `[ <length> | <percentage> ]{1,4}`\n   *\n   */\n  padding?: Property.Padding;\n  /**\n   * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-items'> <'justify-items'>?`\n   *\n   */\n  placeItems?: Property.PlaceItems;\n  /**\n   * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-self'> <'justify-self'>?`\n   *\n   */\n  placeSelf?: Property.PlaceSelf;\n  /**\n   * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n   *\n   * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`\n   *\n   */\n  textDecoration?: Property.TextDecoration;\n  /**\n   * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.\n   *\n   * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`\n   *\n   */\n  textEmphasis?: Property.TextEmphasis;\n  /**\n   * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.\n   *\n   * **Syntax**: `<single-transition>#`\n   *\n   */\n  transition?: Property.Transition;\n}\n\nexport interface StandardProperties\n  extends StandardLonghandProperties,\n    StandardShorthandProperties {}\n\n\nexport interface SvgProperties {\n  alignmentBaseline?: Property.AlignmentBaseline;\n  baselineShift?: Property.BaselineShift;\n  clip?: Property.Clip;\n  clipPath?: Property.ClipPath;\n  clipRule?: Property.ClipRule;\n  color?: Property.Color;\n  colorInterpolation?: Property.ColorInterpolation;\n  colorRendering?: Property.ColorRendering;\n  cursor?: Property.Cursor;\n  direction?: Property.Direction;\n  display?: Property.Display;\n  dominantBaseline?: Property.DominantBaseline;\n  fill?: Property.Fill;\n  fillOpacity?: Property.FillOpacity;\n  fillRule?: Property.FillRule;\n  filter?: Property.Filter;\n  floodColor?: Property.FloodColor;\n  floodOpacity?: Property.FloodOpacity;\n  font?: Property.Font;\n  fontFamily?: Property.FontFamily;\n  fontSize?: Property.FontSize;\n  fontSizeAdjust?: Property.FontSizeAdjust;\n  fontStretch?: Property.FontStretch;\n  fontStyle?: Property.FontStyle;\n  fontVariant?: Property.FontVariant;\n  fontWeight?: Property.FontWeight;\n  glyphOrientationVertical?: Property.GlyphOrientationVertical;\n  imageRendering?: Property.ImageRendering;\n  letterSpacing?: Property.LetterSpacing;\n  lightingColor?: Property.LightingColor;\n  lineHeight?: Property.LineHeight;\n  marker?: Property.Marker;\n  markerEnd?: Property.MarkerEnd;\n  markerMid?: Property.MarkerMid;\n  markerStart?: Property.MarkerStart;\n  mask?: Property.Mask;\n  opacity?: Property.Opacity;\n  overflow?: Property.Overflow;\n  paintOrder?: Property.PaintOrder;\n  pointerEvents?: Property.PointerEvents;\n  shapeRendering?: Property.ShapeRendering;\n  stopColor?: Property.StopColor;\n  stopOpacity?: Property.StopOpacity;\n  stroke?: Property.Stroke;\n  strokeDasharray?: Property.StrokeDasharray;\n  strokeDashoffset?: Property.StrokeDashoffset;\n  strokeLinecap?: Property.StrokeLinecap;\n  strokeLinejoin?: Property.StrokeLinejoin;\n  strokeMiterlimit?: Property.StrokeMiterlimit;\n  strokeOpacity?: Property.StrokeOpacity;\n  strokeWidth?: Property.StrokeWidth;\n  textAnchor?: Property.TextAnchor;\n  textDecoration?: Property.TextDecoration;\n  textRendering?: Property.TextRendering;\n  unicodeBidi?: Property.UnicodeBidi;\n  vectorEffect?: Property.VectorEffect;\n  visibility?: Property.Visibility;\n  whiteSpace?: Property.WhiteSpace;\n  wordSpacing?: Property.WordSpacing;\n  writingMode?: Property.WritingMode;\n}\n\nexport interface Properties\n  extends StandardProperties,\n    SvgProperties {}\n\nexport interface StandardLonghandPropertiesHyphen {\n  /**\n   * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.\n   *\n   * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"align-content\"?: Property.AlignContent;\n  /**\n   * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"align-items\"?: Property.AlignItems;\n  /**\n   * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"align-self\"?: Property.AlignSelf;\n  /**\n   * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.\n   *\n   * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"align-tracks\"?: Property.AlignTracks;\n  /**\n   * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"animation-delay\"?: Property.AnimationDelay;\n  /**\n   * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.\n   *\n   * **Syntax**: `<single-animation-direction>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"animation-direction\"?: Property.AnimationDirection;\n  /**\n   * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"animation-duration\"?: Property.AnimationDuration;\n  /**\n   * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.\n   *\n   * **Syntax**: `<single-animation-fill-mode>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"animation-fill-mode\"?: Property.AnimationFillMode;\n  /**\n   * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.\n   *\n   * **Syntax**: `<single-animation-iteration-count>#`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  \"animation-iteration-count\"?: Property.AnimationIterationCount;\n  /**\n   * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.\n   *\n   * **Syntax**: `[ none | <keyframes-name> ]#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"animation-name\"?: Property.AnimationName;\n  /**\n   * The **`animation-play-state`** CSS property sets whether an animation is running or paused.\n   *\n   * **Syntax**: `<single-animation-play-state>#`\n   *\n   * **Initial value**: `running`\n   *\n   */\n  \"animation-play-state\"?: Property.AnimationPlayState;\n  /**\n   * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  \"animation-timing-function\"?: Property.AnimationTimingFunction;\n  /**\n   * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.\n   *\n   * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  appearance?: Property.Appearance;\n  /**\n   * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.\n   *\n   * **Syntax**: `auto | <ratio>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"aspect-ratio\"?: Property.AspectRatio;\n  /**\n   * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"backdrop-filter\"?: Property.BackdropFilter;\n  /**\n   * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.\n   *\n   * **Syntax**: `visible | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"backface-visibility\"?: Property.BackfaceVisibility;\n  /**\n   * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.\n   *\n   * **Syntax**: `<attachment>#`\n   *\n   * **Initial value**: `scroll`\n   *\n   */\n  \"background-attachment\"?: Property.BackgroundAttachment;\n  /**\n   * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.\n   *\n   * **Syntax**: `<blend-mode>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"background-blend-mode\"?: Property.BackgroundBlendMode;\n  /**\n   * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  \"background-clip\"?: Property.BackgroundClip;\n  /**\n   * The **`background-color`** CSS property sets the background color of an element.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `transparent`\n   *\n   */\n  \"background-color\"?: Property.BackgroundColor;\n  /**\n   * The **`background-image`** CSS property sets one or more background images on an element.\n   *\n   * **Syntax**: `<bg-image>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"background-image\"?: Property.BackgroundImage;\n  /**\n   * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  \"background-origin\"?: Property.BackgroundOrigin;\n  /**\n   * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `left`\n   *\n   */\n  \"background-position-x\"?: Property.BackgroundPositionX;\n  /**\n   * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  \"background-position-y\"?: Property.BackgroundPositionY;\n  /**\n   * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `repeat`\n   *\n   */\n  \"background-repeat\"?: Property.BackgroundRepeat;\n  /**\n   * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto auto`\n   *\n   */\n  \"background-size\"?: Property.BackgroundSize;\n  /**\n   * **Syntax**: `clip | ellipsis | <string>`\n   *\n   * **Initial value**: `clip`\n   */\n  \"block-overflow\"?: Property.BlockOverflow;\n  /**\n   * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"block-size\"?: Property.BlockSize;\n  /**\n   * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-block-color\"?: Property.BorderBlockColor;\n  /**\n   * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-block-end-color\"?: Property.BorderBlockEndColor;\n  /**\n   * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-block-end-style\"?: Property.BorderBlockEndStyle;\n  /**\n   * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-block-end-width\"?: Property.BorderBlockEndWidth;\n  /**\n   * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-block-start-color\"?: Property.BorderBlockStartColor;\n  /**\n   * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-block-start-style\"?: Property.BorderBlockStartStyle;\n  /**\n   * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-block-start-width\"?: Property.BorderBlockStartWidth;\n  /**\n   * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-block-style\"?: Property.BorderBlockStyle;\n  /**\n   * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-block-width\"?: Property.BorderBlockWidth;\n  /**\n   * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-bottom-color\"?: Property.BorderBottomColor;\n  /**\n   * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-bottom-left-radius\"?: Property.BorderBottomLeftRadius;\n  /**\n   * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-bottom-right-radius\"?: Property.BorderBottomRightRadius;\n  /**\n   * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-bottom-style\"?: Property.BorderBottomStyle;\n  /**\n   * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-bottom-width\"?: Property.BorderBottomWidth;\n  /**\n   * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.\n   *\n   * **Syntax**: `collapse | separate`\n   *\n   * **Initial value**: `separate`\n   *\n   */\n  \"border-collapse\"?: Property.BorderCollapse;\n  /**\n   * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-end-end-radius\"?: Property.BorderEndEndRadius;\n  /**\n   * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-end-start-radius\"?: Property.BorderEndStartRadius;\n  /**\n   * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-image-outset\"?: Property.BorderImageOutset;\n  /**\n   * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  \"border-image-repeat\"?: Property.BorderImageRepeat;\n  /**\n   * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.\n   *\n   * **Syntax**: `<number-percentage>{1,4} && fill?`\n   *\n   * **Initial value**: `100%`\n   *\n   */\n  \"border-image-slice\"?: Property.BorderImageSlice;\n  /**\n   * The **`border-image-source`** CSS property sets the source image used to create an element's border image.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-image-source\"?: Property.BorderImageSource;\n  /**\n   * The **`border-image-width`** CSS property sets the width of an element's border image.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  \"border-image-width\"?: Property.BorderImageWidth;\n  /**\n   * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-inline-color\"?: Property.BorderInlineColor;\n  /**\n   * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-inline-end-color\"?: Property.BorderInlineEndColor;\n  /**\n   * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-inline-end-style\"?: Property.BorderInlineEndStyle;\n  /**\n   * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-inline-end-width\"?: Property.BorderInlineEndWidth;\n  /**\n   * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-inline-start-color\"?: Property.BorderInlineStartColor;\n  /**\n   * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-inline-start-style\"?: Property.BorderInlineStartStyle;\n  /**\n   * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-inline-start-width\"?: Property.BorderInlineStartWidth;\n  /**\n   * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-inline-style\"?: Property.BorderInlineStyle;\n  /**\n   * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-inline-width\"?: Property.BorderInlineWidth;\n  /**\n   * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-left-color\"?: Property.BorderLeftColor;\n  /**\n   * The **`border-left-style`** CSS property sets the line style of an element's left `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-left-style\"?: Property.BorderLeftStyle;\n  /**\n   * The **`border-left-width`** CSS property sets the width of the left border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-left-width\"?: Property.BorderLeftWidth;\n  /**\n   * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-right-color\"?: Property.BorderRightColor;\n  /**\n   * The **`border-right-style`** CSS property sets the line style of an element's right `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-right-style\"?: Property.BorderRightStyle;\n  /**\n   * The **`border-right-width`** CSS property sets the width of the right border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-right-width\"?: Property.BorderRightWidth;\n  /**\n   * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.\n   *\n   * **Syntax**: `<length> <length>?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-spacing\"?: Property.BorderSpacing;\n  /**\n   * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-start-end-radius\"?: Property.BorderStartEndRadius;\n  /**\n   * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-start-start-radius\"?: Property.BorderStartStartRadius;\n  /**\n   * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-top-color\"?: Property.BorderTopColor;\n  /**\n   * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-top-left-radius\"?: Property.BorderTopLeftRadius;\n  /**\n   * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-top-right-radius\"?: Property.BorderTopRightRadius;\n  /**\n   * The **`border-top-style`** CSS property sets the line style of an element's top `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-top-style\"?: Property.BorderTopStyle;\n  /**\n   * The **`border-top-width`** CSS property sets the width of the top border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-top-width\"?: Property.BorderTopWidth;\n  /**\n   * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  bottom?: Property.Bottom;\n  /**\n   * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.\n   *\n   * **Syntax**: `slice | clone`\n   *\n   * **Initial value**: `slice`\n   *\n   */\n  \"box-decoration-break\"?: Property.BoxDecorationBreak;\n  /**\n   * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.\n   *\n   * **Syntax**: `none | <shadow>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"box-shadow\"?: Property.BoxShadow;\n  /**\n   * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.\n   *\n   * **Syntax**: `content-box | border-box`\n   *\n   * **Initial value**: `content-box`\n   *\n   */\n  \"box-sizing\"?: Property.BoxSizing;\n  /**\n   * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"break-after\"?: Property.BreakAfter;\n  /**\n   * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"break-before\"?: Property.BreakBefore;\n  /**\n   * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"break-inside\"?: Property.BreakInside;\n  /**\n   * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.\n   *\n   * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  \"caption-side\"?: Property.CaptionSide;\n  /**\n   * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.\n   *\n   * **Syntax**: `auto | <color>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"caret-color\"?: Property.CaretColor;\n  /**\n   * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.\n   *\n   * **Syntax**: `none | left | right | both | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  clear?: Property.Clear;\n  /**\n   * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.\n   *\n   * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"clip-path\"?: Property.ClipPath;\n  /**\n   * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: Varies from one browser to another\n   *\n   */\n  color?: Property.Color;\n  /**\n   * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.\n   *\n   * **Syntax**: `economy | exact`\n   *\n   * **Initial value**: `economy`\n   *\n   */\n  \"color-adjust\"?: Property.ColorAdjust;\n  /**\n   * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.\n   *\n   * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"color-scheme\"?: Property.ColorScheme;\n  /**\n   * The **`column-count`** CSS property breaks an element's content into the specified number of columns.\n   *\n   * **Syntax**: `<integer> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"column-count\"?: Property.ColumnCount;\n  /**\n   * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.\n   *\n   * **Syntax**: `auto | balance | balance-all`\n   *\n   * **Initial value**: `balance`\n   *\n   */\n  \"column-fill\"?: Property.ColumnFill;\n  /**\n   * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"column-gap\"?: Property.ColumnGap;\n  /**\n   * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"column-rule-color\"?: Property.ColumnRuleColor;\n  /**\n   * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"column-rule-style\"?: Property.ColumnRuleStyle;\n  /**\n   * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"column-rule-width\"?: Property.ColumnRuleWidth;\n  /**\n   * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.\n   *\n   * **Syntax**: `none | all`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"column-span\"?: Property.ColumnSpan;\n  /**\n   * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.\n   *\n   * **Syntax**: `<length> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"column-width\"?: Property.ColumnWidth;\n  /**\n   * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.\n   *\n   * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  contain?: Property.Contain;\n  /**\n   * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._\n   *\n   * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  content?: Property.Content;\n  /**\n   * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.\n   *\n   * **Syntax**: `visible | auto | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"content-visibility\"?: Property.ContentVisibility;\n  /**\n   * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"counter-increment\"?: Property.CounterIncrement;\n  /**\n   * The **`counter-reset`** CSS property resets a CSS counter to a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"counter-reset\"?: Property.CounterReset;\n  /**\n   * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"counter-set\"?: Property.CounterSet;\n  /**\n   * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.\n   *\n   * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  cursor?: Property.Cursor;\n  /**\n   * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).\n   *\n   * **Syntax**: `ltr | rtl`\n   *\n   * **Initial value**: `ltr`\n   *\n   */\n  direction?: Property.Direction;\n  /**\n   * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.\n   *\n   * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`\n   *\n   * **Initial value**: `inline`\n   *\n   */\n  display?: Property.Display;\n  /**\n   * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.\n   *\n   * **Syntax**: `show | hide`\n   *\n   * **Initial value**: `show`\n   *\n   */\n  \"empty-cells\"?: Property.EmptyCells;\n  /**\n   * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  filter?: Property.Filter;\n  /**\n   * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.\n   *\n   * **Syntax**: `content | <'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"flex-basis\"?: Property.FlexBasis;\n  /**\n   * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).\n   *\n   * **Syntax**: `row | row-reverse | column | column-reverse`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  \"flex-direction\"?: Property.FlexDirection;\n  /**\n   * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"flex-grow\"?: Property.FlexGrow;\n  /**\n   * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  \"flex-shrink\"?: Property.FlexShrink;\n  /**\n   * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.\n   *\n   * **Syntax**: `nowrap | wrap | wrap-reverse`\n   *\n   * **Initial value**: `nowrap`\n   *\n   */\n  \"flex-wrap\"?: Property.FlexWrap;\n  /**\n   * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).\n   *\n   * **Syntax**: `left | right | none | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  float?: Property.Float;\n  /**\n   * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.\n   *\n   * **Syntax**: `[ <family-name> | <generic-family> ]#`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  \"font-family\"?: Property.FontFamily;\n  /**\n   * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.\n   *\n   * **Syntax**: `normal | <feature-tag-value>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-feature-settings\"?: Property.FontFeatureSettings;\n  /**\n   * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.\n   *\n   * **Syntax**: `auto | normal | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"font-kerning\"?: Property.FontKerning;\n  /**\n   * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.\n   *\n   * **Syntax**: `normal | <string>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-language-override\"?: Property.FontLanguageOverride;\n  /**\n   * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"font-optical-sizing\"?: Property.FontOpticalSizing;\n  /**\n   * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.\n   *\n   * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"font-size\"?: Property.FontSize;\n  /**\n   * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).\n   *\n   * **Syntax**: `none | <number>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"font-size-adjust\"?: Property.FontSizeAdjust;\n  /**\n   * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.\n   *\n   * **Syntax**: `auto | always | <absolute-size> | <length>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"font-smooth\"?: Property.FontSmooth;\n  /**\n   * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.\n   *\n   * **Syntax**: `<font-stretch-absolute>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-stretch\"?: Property.FontStretch;\n  /**\n   * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.\n   *\n   * **Syntax**: `normal | italic | oblique <angle>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-style\"?: Property.FontStyle;\n  /**\n   * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.\n   *\n   * **Syntax**: `none | [ weight || style ]`\n   *\n   * **Initial value**: `weight style`\n   *\n   */\n  \"font-synthesis\"?: Property.FontSynthesis;\n  /**\n   * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant\"?: Property.FontVariant;\n  /**\n   * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.\n   *\n   * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-caps\"?: Property.FontVariantCaps;\n  /**\n   * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.\n   *\n   * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-east-asian\"?: Property.FontVariantEastAsian;\n  /**\n   * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-ligatures\"?: Property.FontVariantLigatures;\n  /**\n   * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.\n   *\n   * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-numeric\"?: Property.FontVariantNumeric;\n  /**\n   * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.\n   *\n   * **Syntax**: `normal | sub | super`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-position\"?: Property.FontVariantPosition;\n  /**\n   * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.\n   *\n   * **Syntax**: `normal | [ <string> <number> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variation-settings\"?: Property.FontVariationSettings;\n  /**\n   * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.\n   *\n   * **Syntax**: `<font-weight-absolute> | bolder | lighter`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-weight\"?: Property.FontWeight;\n  /**\n   * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"forced-color-adjust\"?: Property.ForcedColorAdjust;\n  /**\n   * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-auto-columns\"?: Property.GridAutoColumns;\n  /**\n   * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.\n   *\n   * **Syntax**: `[ row | column ] || dense`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  \"grid-auto-flow\"?: Property.GridAutoFlow;\n  /**\n   * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-auto-rows\"?: Property.GridAutoRows;\n  /**\n   * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-column-end\"?: Property.GridColumnEnd;\n  /**\n   * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-column-start\"?: Property.GridColumnStart;\n  /**\n   * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-row-end\"?: Property.GridRowEnd;\n  /**\n   * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-row-start\"?: Property.GridRowStart;\n  /**\n   * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n   *\n   * **Syntax**: `none | <string>+`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"grid-template-areas\"?: Property.GridTemplateAreas;\n  /**\n   * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"grid-template-columns\"?: Property.GridTemplateColumns;\n  /**\n   * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"grid-template-rows\"?: Property.GridTemplateRows;\n  /**\n    * The **`grid-gap`** CSS property sets the size of the gap (gutter) between between rows and columns.\n    *\n    * **Syntax**: `normal | <length-percentage>`\n    *\n    * **Initial value**: `normal`\n    *\n    */\n   \"grid-gap\"?: Property.GridGap;\n  /**\n   * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.\n   *\n   * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"hanging-punctuation\"?: Property.HangingPunctuation;\n  /**\n   * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  height?: Property.Height;\n  /**\n   * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.\n   *\n   * **Syntax**: `none | manual | auto`\n   *\n   * **Initial value**: `manual`\n   *\n   */\n  hyphens?: Property.Hyphens;\n  /**\n   * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.\n   *\n   * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`\n   *\n   * **Initial value**: `from-image`\n   *\n   */\n  \"image-orientation\"?: Property.ImageOrientation;\n  /**\n   * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.\n   *\n   * **Syntax**: `auto | crisp-edges | pixelated`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"image-rendering\"?: Property.ImageRendering;\n  /**\n   * **Syntax**: `[ from-image || <resolution> ] && snap?`\n   *\n   * **Initial value**: `1dppx`\n   */\n  \"image-resolution\"?: Property.ImageResolution;\n  /**\n   * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.\n   *\n   * **Syntax**: `normal | [ <number> <integer>? ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"initial-letter\"?: Property.InitialLetter;\n  /**\n   * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inline-size\"?: Property.InlineSize;\n  /**\n   * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.\n   *\n   * **Syntax**: `<'top'>{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  inset?: Property.Inset;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-block\"?: Property.InsetBlock;\n  /**\n   * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-block-end\"?: Property.InsetBlockEnd;\n  /**\n   * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-block-start\"?: Property.InsetBlockStart;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-inline\"?: Property.InsetInline;\n  /**\n   * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-inline-end\"?: Property.InsetInlineEnd;\n  /**\n   * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-inline-start\"?: Property.InsetInlineStart;\n  /**\n   * The **`isolation`** CSS property determines whether an element must create a new stacking context.\n   *\n   * **Syntax**: `auto | isolate`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  isolation?: Property.Isolation;\n  /**\n   * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.\n   *\n   * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"justify-content\"?: Property.JustifyContent;\n  /**\n   * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`\n   *\n   * **Initial value**: `legacy`\n   *\n   */\n  \"justify-items\"?: Property.JustifyItems;\n  /**\n   * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"justify-self\"?: Property.JustifySelf;\n  /**\n   * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.\n   *\n   * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"justify-tracks\"?: Property.JustifyTracks;\n  /**\n   * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  left?: Property.Left;\n  /**\n   * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.\n   *\n   * **Syntax**: `normal | <length>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"letter-spacing\"?: Property.LetterSpacing;\n  /**\n   * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.\n   *\n   * **Syntax**: `auto | loose | normal | strict | anywhere`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"line-break\"?: Property.LineBreak;\n  /**\n   * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.\n   *\n   * **Syntax**: `normal | <number> | <length> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"line-height\"?: Property.LineHeight;\n  /**\n   * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"line-height-step\"?: Property.LineHeightStep;\n  /**\n   * The **`list-style-image`** CSS property sets an image to be used as the list item marker.\n   *\n   * **Syntax**: `<image> | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"list-style-image\"?: Property.ListStyleImage;\n  /**\n   * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.\n   *\n   * **Syntax**: `inside | outside`\n   *\n   * **Initial value**: `outside`\n   *\n   */\n  \"list-style-position\"?: Property.ListStylePosition;\n  /**\n   * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.\n   *\n   * **Syntax**: `<counter-style> | <string> | none`\n   *\n   * **Initial value**: `disc`\n   *\n   */\n  \"list-style-type\"?: Property.ListStyleType;\n  /**\n   * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-block\"?: Property.MarginBlock;\n  /**\n   * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-block-end\"?: Property.MarginBlockEnd;\n  /**\n   * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-block-start\"?: Property.MarginBlockStart;\n  /**\n   * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-bottom\"?: Property.MarginBottom;\n  /**\n   * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-inline\"?: Property.MarginInline;\n  /**\n   * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-inline-end\"?: Property.MarginInlineEnd;\n  /**\n   * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-inline-start\"?: Property.MarginInlineStart;\n  /**\n   * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-left\"?: Property.MarginLeft;\n  /**\n   * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-right\"?: Property.MarginRight;\n  /**\n   * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-top\"?: Property.MarginTop;\n  /**\n   * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `alpha`\n   */\n  \"mask-border-mode\"?: Property.MaskBorderMode;\n  /**\n   * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"mask-border-outset\"?: Property.MaskBorderOutset;\n  /**\n   * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  \"mask-border-repeat\"?: Property.MaskBorderRepeat;\n  /**\n   * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.\n   *\n   * **Syntax**: `<number-percentage>{1,4} fill?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"mask-border-slice\"?: Property.MaskBorderSlice;\n  /**\n   * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"mask-border-source\"?: Property.MaskBorderSource;\n  /**\n   * The **`mask-border-width`** CSS property sets the width of an element's mask border.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"mask-border-width\"?: Property.MaskBorderWidth;\n  /**\n   * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.\n   *\n   * **Syntax**: `[ <geometry-box> | no-clip ]#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  \"mask-clip\"?: Property.MaskClip;\n  /**\n   * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.\n   *\n   * **Syntax**: `<compositing-operator>#`\n   *\n   * **Initial value**: `add`\n   *\n   */\n  \"mask-composite\"?: Property.MaskComposite;\n  /**\n   * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.\n   *\n   * **Syntax**: `<mask-reference>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"mask-image\"?: Property.MaskImage;\n  /**\n   * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.\n   *\n   * **Syntax**: `<masking-mode>#`\n   *\n   * **Initial value**: `match-source`\n   *\n   */\n  \"mask-mode\"?: Property.MaskMode;\n  /**\n   * The **`mask-origin`** CSS property sets the origin of a mask.\n   *\n   * **Syntax**: `<geometry-box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  \"mask-origin\"?: Property.MaskOrigin;\n  /**\n   * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.\n   *\n   * **Syntax**: `<position>#`\n   *\n   * **Initial value**: `center`\n   *\n   */\n  \"mask-position\"?: Property.MaskPosition;\n  /**\n   * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `no-repeat`\n   *\n   */\n  \"mask-repeat\"?: Property.MaskRepeat;\n  /**\n   * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"mask-size\"?: Property.MaskSize;\n  /**\n   * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `luminance`\n   *\n   */\n  \"mask-type\"?: Property.MaskType;\n  /**\n   * The `math-style` property indicates whether MathML equations should render with normal or compact height.\n   *\n   * **Syntax**: `normal | compact`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"math-style\"?: Property.MathStyle;\n  /**\n   * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"max-block-size\"?: Property.MaxBlockSize;\n  /**\n   * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"max-height\"?: Property.MaxHeight;\n  /**\n   * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"max-inline-size\"?: Property.MaxInlineSize;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  \"max-lines\"?: Property.MaxLines;\n  /**\n   * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"max-width\"?: Property.MaxWidth;\n  /**\n   * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"min-block-size\"?: Property.MinBlockSize;\n  /**\n   * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"min-height\"?: Property.MinHeight;\n  /**\n   * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"min-inline-size\"?: Property.MinInlineSize;\n  /**\n   * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"min-width\"?: Property.MinWidth;\n  /**\n   * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.\n   *\n   * **Syntax**: `<blend-mode>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"mix-blend-mode\"?: Property.MixBlendMode;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"motion-distance\"?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"motion-path\"?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"motion-rotation\"?: Property.OffsetRotate;\n  /**\n   * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.\n   *\n   * **Syntax**: `fill | contain | cover | none | scale-down`\n   *\n   * **Initial value**: `fill`\n   *\n   */\n  \"object-fit\"?: Property.ObjectFit;\n  /**\n   * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  \"object-position\"?: Property.ObjectPosition;\n  /**\n   * **Syntax**: `auto | <position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"offset-anchor\"?: Property.OffsetAnchor;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"offset-distance\"?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"offset-path\"?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"offset-rotate\"?: Property.OffsetRotate;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"offset-rotation\"?: Property.OffsetRotate;\n  /**\n   * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `1.0`\n   *\n   */\n  opacity?: Property.Opacity;\n  /**\n   * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  order?: Property.Order;\n  /**\n   * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  orphans?: Property.Orphans;\n  /**\n   * The **`outline-color`** CSS property sets the color of an element's outline.\n   *\n   * **Syntax**: `<color> | invert`\n   *\n   * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other\n   *\n   */\n  \"outline-color\"?: Property.OutlineColor;\n  /**\n   * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"outline-offset\"?: Property.OutlineOffset;\n  /**\n   * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `auto | <'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"outline-style\"?: Property.OutlineStyle;\n  /**\n   * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"outline-width\"?: Property.OutlineWidth;\n  /**\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overflow-anchor\"?: Property.OverflowAnchor;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overflow-block\"?: Property.OverflowBlock;\n  /**\n   * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.\n   *\n   * **Syntax**: `padding-box | content-box`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  \"overflow-clip-box\"?: Property.OverflowClipBox;\n  /**\n   * **Syntax**: `<visual-box> || <length [0,∞]>`\n   *\n   * **Initial value**: `0px`\n   *\n   */\n  \"overflow-clip-margin\"?: Property.OverflowClipMargin;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overflow-inline\"?: Property.OverflowInline;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word | anywhere`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"overflow-wrap\"?: Property.OverflowWrap;\n  /**\n   * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"overflow-x\"?: Property.OverflowX;\n  /**\n   * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"overflow-y\"?: Property.OverflowY;\n  /**\n   * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-block\"?: Property.OverscrollBehaviorBlock;\n  /**\n   * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-inline\"?: Property.OverscrollBehaviorInline;\n  /**\n   * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-x\"?: Property.OverscrollBehaviorX;\n  /**\n   * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-y\"?: Property.OverscrollBehaviorY;\n  /**\n   * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-block\"?: Property.PaddingBlock;\n  /**\n   * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-block-end\"?: Property.PaddingBlockEnd;\n  /**\n   * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-block-start\"?: Property.PaddingBlockStart;\n  /**\n   * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-bottom\"?: Property.PaddingBottom;\n  /**\n   * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-inline\"?: Property.PaddingInline;\n  /**\n   * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-inline-end\"?: Property.PaddingInlineEnd;\n  /**\n   * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-inline-start\"?: Property.PaddingInlineStart;\n  /**\n   * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-left\"?: Property.PaddingLeft;\n  /**\n   * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-right\"?: Property.PaddingRight;\n  /**\n   * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-top\"?: Property.PaddingTop;\n  /**\n   * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"page-break-after\"?: Property.PageBreakAfter;\n  /**\n   * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"page-break-before\"?: Property.PageBreakBefore;\n  /**\n   * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.\n   *\n   * **Syntax**: `auto | avoid`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"page-break-inside\"?: Property.PageBreakInside;\n  /**\n   * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.\n   *\n   * **Syntax**: `normal | [ fill || stroke || markers ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"paint-order\"?: Property.PaintOrder;\n  /**\n   * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.\n   *\n   * **Syntax**: `none | <length>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  perspective?: Property.Perspective;\n  /**\n   * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  \"perspective-origin\"?: Property.PerspectiveOrigin;\n  /**\n   * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.\n   *\n   * **Syntax**: `<'align-content'> <'justify-content'>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"place-content\"?: Property.PlaceContent;\n  /**\n   * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.\n   *\n   * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"pointer-events\"?: Property.PointerEvents;\n  /**\n   * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.\n   *\n   * **Syntax**: `static | relative | absolute | sticky | fixed`\n   *\n   * **Initial value**: `static`\n   *\n   */\n  position?: Property.Position;\n  /**\n   * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.\n   *\n   * **Syntax**: `none | auto | [ <string> <string> ]+`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  quotes?: Property.Quotes;\n  /**\n   * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.\n   *\n   * **Syntax**: `none | both | horizontal | vertical | block | inline`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  resize?: Property.Resize;\n  /**\n   * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  right?: Property.Right;\n  /**\n   * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.\n   *\n   * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  rotate?: Property.Rotate;\n  /**\n   * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"row-gap\"?: Property.RowGap;\n  /**\n   * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.\n   *\n   * **Syntax**: `start | center | space-between | space-around`\n   *\n   * **Initial value**: `space-around`\n   *\n   */\n  \"ruby-align\"?: Property.RubyAlign;\n  /**\n   * **Syntax**: `separate | collapse | auto`\n   *\n   * **Initial value**: `separate`\n   */\n  \"ruby-merge\"?: Property.RubyMerge;\n  /**\n   * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).\n   *\n   * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`\n   *\n   * **Initial value**: `alternate`\n   *\n   */\n  \"ruby-position\"?: Property.RubyPosition;\n  /**\n   * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <number>{1,3}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scale?: Property.Scale;\n  /**\n   * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.\n   *\n   * **Syntax**: `auto | smooth`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-behavior\"?: Property.ScrollBehavior;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin\"?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-block\"?: Property.ScrollMarginBlock;\n  /**\n   * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-block-end\"?: Property.ScrollMarginBlockEnd;\n  /**\n   * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-block-start\"?: Property.ScrollMarginBlockStart;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-bottom\"?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-inline\"?: Property.ScrollMarginInline;\n  /**\n   * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-inline-end\"?: Property.ScrollMarginInlineEnd;\n  /**\n   * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-inline-start\"?: Property.ScrollMarginInlineStart;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-left\"?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-right\"?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-top\"?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding\"?: Property.ScrollPadding;\n  /**\n   * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-block\"?: Property.ScrollPaddingBlock;\n  /**\n   * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-block-end\"?: Property.ScrollPaddingBlockEnd;\n  /**\n   * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-block-start\"?: Property.ScrollPaddingBlockStart;\n  /**\n   * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-bottom\"?: Property.ScrollPaddingBottom;\n  /**\n   * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-inline\"?: Property.ScrollPaddingInline;\n  /**\n   * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-inline-end\"?: Property.ScrollPaddingInlineEnd;\n  /**\n   * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-inline-start\"?: Property.ScrollPaddingInlineStart;\n  /**\n   * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-left\"?: Property.ScrollPaddingLeft;\n  /**\n   * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-right\"?: Property.ScrollPaddingRight;\n  /**\n   * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-top\"?: Property.ScrollPaddingTop;\n  /**\n   * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.\n   *\n   * **Syntax**: `[ none | start | end | center ]{1,2}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"scroll-snap-align\"?: Property.ScrollSnapAlign;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin\"?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-bottom\"?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-left\"?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-right\"?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-top\"?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to \"pass over\" possible snap positions.\n   *\n   * **Syntax**: `normal | always`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"scroll-snap-stop\"?: Property.ScrollSnapStop;\n  /**\n   * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.\n   *\n   * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"scroll-snap-type\"?: Property.ScrollSnapType;\n  /**\n   * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.\n   *\n   * **Syntax**: `auto | dark | light | <color>{2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scrollbar-color\"?: Property.ScrollbarColor;\n  /**\n   * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.\n   *\n   * **Syntax**: `auto | [ stable | always ] && both? && force?`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scrollbar-gutter\"?: Property.ScrollbarGutter;\n  /**\n   * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.\n   *\n   * **Syntax**: `auto | thin | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scrollbar-width\"?: Property.ScrollbarWidth;\n  /**\n   * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `0.0`\n   *\n   */\n  \"shape-image-threshold\"?: Property.ShapeImageThreshold;\n  /**\n   * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"shape-margin\"?: Property.ShapeMargin;\n  /**\n   * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.\n   *\n   * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"shape-outside\"?: Property.ShapeOutside;\n  /**\n   * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).\n   *\n   * **Syntax**: `<integer> | <length>`\n   *\n   * **Initial value**: `8`\n   *\n   */\n  \"tab-size\"?: Property.TabSize;\n  /**\n   * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.\n   *\n   * **Syntax**: `auto | fixed`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"table-layout\"?: Property.TableLayout;\n  /**\n   * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n   *\n   * **Syntax**: `start | end | left | right | center | justify | match-parent`\n   *\n   * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n   *\n   */\n  \"text-align\"?: Property.TextAlign;\n  /**\n   * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.\n   *\n   * **Syntax**: `auto | start | end | left | right | center | justify`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-align-last\"?: Property.TextAlignLast;\n  /**\n   * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.\n   *\n   * **Syntax**: `none | all | [ digits <integer>? ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-combine-upright\"?: Property.TextCombineUpright;\n  /**\n   * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"text-decoration-color\"?: Property.TextDecorationColor;\n  /**\n   * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.\n   *\n   * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-decoration-line\"?: Property.TextDecorationLine;\n  /**\n   * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.\n   *\n   * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`\n   *\n   * **Initial value**: `objects`\n   *\n   */\n  \"text-decoration-skip\"?: Property.TextDecorationSkip;\n  /**\n   * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.\n   *\n   * **Syntax**: `auto | all | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-decoration-skip-ink\"?: Property.TextDecorationSkipInk;\n  /**\n   * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.\n   *\n   * **Syntax**: `solid | double | dotted | dashed | wavy`\n   *\n   * **Initial value**: `solid`\n   *\n   */\n  \"text-decoration-style\"?: Property.TextDecorationStyle;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-decoration-thickness\"?: Property.TextDecorationThickness;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-decoration-width\"?: Property.TextDecorationThickness;\n  /**\n   * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"text-emphasis-color\"?: Property.TextEmphasisColor;\n  /**\n   * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.\n   *\n   * **Syntax**: `[ over | under ] && [ right | left ]`\n   *\n   * **Initial value**: `over right`\n   *\n   */\n  \"text-emphasis-position\"?: Property.TextEmphasisPosition;\n  /**\n   * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-emphasis-style\"?: Property.TextEmphasisStyle;\n  /**\n   * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.\n   *\n   * **Syntax**: `<length-percentage> && hanging? && each-line?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"text-indent\"?: Property.TextIndent;\n  /**\n   * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.\n   *\n   * **Syntax**: `auto | inter-character | inter-word | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-justify\"?: Property.TextJustify;\n  /**\n   * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.\n   *\n   * **Syntax**: `mixed | upright | sideways`\n   *\n   * **Initial value**: `mixed`\n   *\n   */\n  \"text-orientation\"?: Property.TextOrientation;\n  /**\n   * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.\n   *\n   * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`\n   *\n   * **Initial value**: `clip`\n   *\n   */\n  \"text-overflow\"?: Property.TextOverflow;\n  /**\n   * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.\n   *\n   * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-rendering\"?: Property.TextRendering;\n  /**\n   * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.\n   *\n   * **Syntax**: `none | <shadow-t>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-shadow\"?: Property.TextShadow;\n  /**\n   * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.\n   *\n   * **Syntax**: `none | auto | <percentage>`\n   *\n   * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).\n   *\n   */\n  \"text-size-adjust\"?: Property.TextSizeAdjust;\n  /**\n   * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.\n   *\n   * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-transform\"?: Property.TextTransform;\n  /**\n   * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.\n   *\n   * **Syntax**: `auto | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-underline-offset\"?: Property.TextUnderlineOffset;\n  /**\n   * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.\n   *\n   * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-underline-position\"?: Property.TextUnderlinePosition;\n  /**\n   * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  top?: Property.Top;\n  /**\n   * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).\n   *\n   * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"touch-action\"?: Property.TouchAction;\n  /**\n   * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.\n   *\n   * **Syntax**: `none | <transform-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  transform?: Property.Transform;\n  /**\n   * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.\n   *\n   * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`\n   *\n   * **Initial value**: `view-box`\n   *\n   */\n  \"transform-box\"?: Property.TransformBox;\n  /**\n   * The **`transform-origin`** CSS property sets the origin for an element's transformations.\n   *\n   * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`\n   *\n   * **Initial value**: `50% 50% 0`\n   *\n   */\n  \"transform-origin\"?: Property.TransformOrigin;\n  /**\n   * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.\n   *\n   * **Syntax**: `flat | preserve-3d`\n   *\n   * **Initial value**: `flat`\n   *\n   */\n  \"transform-style\"?: Property.TransformStyle;\n  /**\n   * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"transition-delay\"?: Property.TransitionDelay;\n  /**\n   * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"transition-duration\"?: Property.TransitionDuration;\n  /**\n   * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.\n   *\n   * **Syntax**: `none | <single-transition-property>#`\n   *\n   * **Initial value**: all\n   *\n   */\n  \"transition-property\"?: Property.TransitionProperty;\n  /**\n   * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  \"transition-timing-function\"?: Property.TransitionTimingFunction;\n  /**\n   * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  translate?: Property.Translate;\n  /**\n   * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.\n   *\n   * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"unicode-bidi\"?: Property.UnicodeBidi;\n  /**\n   * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.\n   *\n   * **Syntax**: `auto | text | none | contain | all`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"user-select\"?: Property.UserSelect;\n  /**\n   * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.\n   *\n   * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`\n   *\n   * **Initial value**: `baseline`\n   *\n   */\n  \"vertical-align\"?: Property.VerticalAlign;\n  /**\n   * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.\n   *\n   * **Syntax**: `visible | hidden | collapse`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  visibility?: Property.Visibility;\n  /**\n   * The **`white-space`** CSS property sets how white space inside an element is handled.\n   *\n   * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"white-space\"?: Property.WhiteSpace;\n  /**\n   * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  widows?: Property.Widows;\n  /**\n   * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  width?: Property.Width;\n  /**\n   * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.\n   *\n   * **Syntax**: `auto | <animateable-feature>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"will-change\"?: Property.WillChange;\n  /**\n   * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.\n   *\n   * **Syntax**: `normal | break-all | keep-all | break-word`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"word-break\"?: Property.WordBreak;\n  /**\n   * The **`word-spacing`** CSS property sets the length of space between words and between tags.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"word-spacing\"?: Property.WordSpacing;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word`\n   *\n   * **Initial value**: `normal`\n   */\n  \"word-wrap\"?: Property.WordWrap;\n  /**\n   * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).\n   *\n   * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`\n   *\n   * **Initial value**: `horizontal-tb`\n   *\n   */\n  \"writing-mode\"?: Property.WritingMode;\n  /**\n   * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.\n   *\n   * **Syntax**: `auto | <integer>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"z-index\"?: Property.ZIndex;\n  /**\n   * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.\n   *\n   * **Syntax**: `normal | reset | <number> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  zoom?: Property.Zoom;\n}\n\nexport interface StandardShorthandPropertiesHyphen {\n  /**\n   * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.\n   *\n   * **Syntax**: `initial | inherit | unset | revert`\n   *\n   * **Initial value**: There is no practical initial value for it.\n   *\n   */\n  all?: Property.All;\n  /**\n   * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.\n   *\n   * **Syntax**: `<single-animation>#`\n   *\n   */\n  animation?: Property.Animation;\n  /**\n   * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.\n   *\n   * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`\n   *\n   */\n  background?: Property.Background;\n  /**\n   * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `<bg-position>#`\n   *\n   * **Initial value**: `0% 0%`\n   *\n   */\n  \"background-position\"?: Property.BackgroundPosition;\n  /**\n   * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  border?: Property.Border;\n  /**\n   * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-block\"?: Property.BorderBlock;\n  /**\n   * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-block-end\"?: Property.BorderBlockEnd;\n  /**\n   * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-block-start\"?: Property.BorderBlockStart;\n  /**\n   * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-bottom\"?: Property.BorderBottom;\n  /**\n   * The **`border-color`** shorthand CSS property sets the color of an element's border.\n   *\n   * **Syntax**: `<color>{1,4}`\n   *\n   */\n  \"border-color\"?: Property.BorderColor;\n  /**\n   * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.\n   *\n   * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`\n   *\n   */\n  \"border-image\"?: Property.BorderImage;\n  /**\n   * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-inline\"?: Property.BorderInline;\n  /**\n   * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-inline-end\"?: Property.BorderInlineEnd;\n  /**\n   * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-inline-start\"?: Property.BorderInlineStart;\n  /**\n   * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-left\"?: Property.BorderLeft;\n  /**\n   * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.\n   *\n   * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`\n   *\n   */\n  \"border-radius\"?: Property.BorderRadius;\n  /**\n   * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-right\"?: Property.BorderRight;\n  /**\n   * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n   *\n   * **Syntax**: `<line-style>{1,4}`\n   *\n   */\n  \"border-style\"?: Property.BorderStyle;\n  /**\n   * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-top\"?: Property.BorderTop;\n  /**\n   * The **`border-width`** shorthand CSS property sets the width of an element's border.\n   *\n   * **Syntax**: `<line-width>{1,4}`\n   *\n   */\n  \"border-width\"?: Property.BorderWidth;\n  /**\n   * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`\n   *\n   */\n  \"column-rule\"?: Property.ColumnRule;\n  /**\n   * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.\n   *\n   * **Syntax**: `<'column-width'> || <'column-count'>`\n   *\n   */\n  columns?: Property.Columns;\n  /**\n   * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.\n   *\n   * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`\n   *\n   */\n  flex?: Property.Flex;\n  /**\n   * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.\n   *\n   * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`\n   *\n   */\n  \"flex-flow\"?: Property.FlexFlow;\n  /**\n   * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.\n   *\n   * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`\n   *\n   */\n  font?: Property.Font;\n  /**\n   * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.\n   *\n   * **Syntax**: `<'row-gap'> <'column-gap'>?`\n   *\n   */\n  gap?: Property.Gap;\n  /**\n   * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.\n   *\n   * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`\n   *\n   */\n  grid?: Property.Grid;\n  /**\n   * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`\n   *\n   */\n  \"grid-area\"?: Property.GridArea;\n  /**\n   * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  \"grid-column\"?: Property.GridColumn;\n  /**\n   * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  \"grid-row\"?: Property.GridRow;\n  /**\n   * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.\n   *\n   * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`\n   *\n   */\n  \"grid-template\"?: Property.GridTemplate;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  \"line-clamp\"?: Property.LineClamp;\n  /**\n   * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.\n   *\n   * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`\n   *\n   */\n  \"list-style\"?: Property.ListStyle;\n  /**\n   * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.\n   *\n   * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`\n   *\n   */\n  margin?: Property.Margin;\n  /**\n   * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.\n   *\n   * **Syntax**: `<mask-layer>#`\n   *\n   */\n  mask?: Property.Mask;\n  /**\n   * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.\n   *\n   * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`\n   *\n   */\n  \"mask-border\"?: Property.MaskBorder;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  motion?: Property.Offset;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  offset?: Property.Offset;\n  /**\n   * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.\n   *\n   * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`\n   *\n   */\n  outline?: Property.Outline;\n  /**\n   * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n   *\n   * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflow?: Property.Overflow;\n  /**\n   * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.\n   *\n   * **Syntax**: `[ contain | none | auto ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior\"?: Property.OverscrollBehavior;\n  /**\n   * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.\n   *\n   * **Syntax**: `[ <length> | <percentage> ]{1,4}`\n   *\n   */\n  padding?: Property.Padding;\n  /**\n   * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-items'> <'justify-items'>?`\n   *\n   */\n  \"place-items\"?: Property.PlaceItems;\n  /**\n   * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-self'> <'justify-self'>?`\n   *\n   */\n  \"place-self\"?: Property.PlaceSelf;\n  /**\n   * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n   *\n   * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`\n   *\n   */\n  \"text-decoration\"?: Property.TextDecoration;\n  /**\n   * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.\n   *\n   * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`\n   *\n   */\n  \"text-emphasis\"?: Property.TextEmphasis;\n  /**\n   * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.\n   *\n   * **Syntax**: `<single-transition>#`\n   *\n   */\n  transition?: Property.Transition;\n}\n\nexport interface StandardPropertiesHyphen\n  extends StandardLonghandPropertiesHyphen,\n    StandardShorthandPropertiesHyphen {}\n\n\nexport interface SvgPropertiesHyphen {\n  \"alignment-baseline\"?: Property.AlignmentBaseline;\n  \"baseline-shift\"?: Property.BaselineShift;\n  clip?: Property.Clip;\n  \"clip-path\"?: Property.ClipPath;\n  \"clip-rule\"?: Property.ClipRule;\n  color?: Property.Color;\n  \"color-interpolation\"?: Property.ColorInterpolation;\n  \"color-rendering\"?: Property.ColorRendering;\n  cursor?: Property.Cursor;\n  direction?: Property.Direction;\n  display?: Property.Display;\n  \"dominant-baseline\"?: Property.DominantBaseline;\n  fill?: Property.Fill;\n  \"fill-opacity\"?: Property.FillOpacity;\n  \"fill-rule\"?: Property.FillRule;\n  filter?: Property.Filter;\n  \"flood-color\"?: Property.FloodColor;\n  \"flood-opacity\"?: Property.FloodOpacity;\n  font?: Property.Font;\n  \"font-family\"?: Property.FontFamily;\n  \"font-size\"?: Property.FontSize;\n  \"font-size-adjust\"?: Property.FontSizeAdjust;\n  \"font-stretch\"?: Property.FontStretch;\n  \"font-style\"?: Property.FontStyle;\n  \"font-variant\"?: Property.FontVariant;\n  \"font-weight\"?: Property.FontWeight;\n  \"glyph-orientation-vertical\"?: Property.GlyphOrientationVertical;\n  \"image-rendering\"?: Property.ImageRendering;\n  \"letter-spacing\"?: Property.LetterSpacing;\n  \"lighting-color\"?: Property.LightingColor;\n  \"line-height\"?: Property.LineHeight;\n  marker?: Property.Marker;\n  \"marker-end\"?: Property.MarkerEnd;\n  \"marker-mid\"?: Property.MarkerMid;\n  \"marker-start\"?: Property.MarkerStart;\n  mask?: Property.Mask;\n  opacity?: Property.Opacity;\n  overflow?: Property.Overflow;\n  \"paint-order\"?: Property.PaintOrder;\n  \"pointer-events\"?: Property.PointerEvents;\n  \"shape-rendering\"?: Property.ShapeRendering;\n  \"stop-color\"?: Property.StopColor;\n  \"stop-opacity\"?: Property.StopOpacity;\n  stroke?: Property.Stroke;\n  \"stroke-dasharray\"?: Property.StrokeDasharray;\n  \"stroke-dashoffset\"?: Property.StrokeDashoffset;\n  \"stroke-linecap\"?: Property.StrokeLinecap;\n  \"stroke-linejoin\"?: Property.StrokeLinejoin;\n  \"stroke-miterlimit\"?: Property.StrokeMiterlimit;\n  \"stroke-opacity\"?: Property.StrokeOpacity;\n  \"stroke-width\"?: Property.StrokeWidth;\n  \"text-anchor\"?: Property.TextAnchor;\n  \"text-decoration\"?: Property.TextDecoration;\n  \"text-rendering\"?: Property.TextRendering;\n  \"unicode-bidi\"?: Property.UnicodeBidi;\n  \"vector-effect\"?: Property.VectorEffect;\n  visibility?: Property.Visibility;\n  \"white-space\"?: Property.WhiteSpace;\n  \"word-spacing\"?: Property.WordSpacing;\n  \"writing-mode\"?: Property.WritingMode;\n}\n\nexport interface PropertiesHyphen\n  extends StandardPropertiesHyphen,\n    SvgPropertiesHyphen {}\n\nexport type StandardLonghandPropertiesFallback = {\n  [P in keyof StandardLonghandProperties]: StandardLonghandProperties[P] | StandardLonghandProperties[P][];\n};\n\nexport type StandardShorthandPropertiesFallback = {\n  [P in keyof StandardShorthandProperties]: StandardShorthandProperties[P] | StandardShorthandProperties[P][];\n};\n\nexport interface StandardPropertiesFallback\n  extends StandardLonghandPropertiesFallback,\n    StandardShorthandPropertiesFallback {}\n\n\nexport type SvgPropertiesFallback = {\n  [P in keyof SvgProperties]: SvgProperties[P] | SvgProperties[P][];\n};\n\nexport interface PropertiesFallback\n  extends StandardPropertiesFallback,\n    SvgPropertiesFallback {}\n\nexport type StandardLonghandPropertiesHyphenFallback = {\n  [P in keyof StandardLonghandPropertiesHyphen]: StandardLonghandPropertiesHyphen[P] | StandardLonghandPropertiesHyphen[P][];\n};\n\nexport type StandardShorthandPropertiesHyphenFallback = {\n  [P in keyof StandardShorthandPropertiesHyphen]: StandardShorthandPropertiesHyphen[P] | StandardShorthandPropertiesHyphen[P][];\n};\n\nexport interface StandardPropertiesHyphenFallback\n  extends StandardLonghandPropertiesHyphenFallback,\n    StandardShorthandPropertiesHyphenFallback {}\n\n\nexport type SvgPropertiesHyphenFallback = {\n  [P in keyof SvgPropertiesHyphen]: SvgPropertiesHyphen[P] | SvgPropertiesHyphen[P][];\n};\n\nexport interface PropertiesHyphenFallback\n  extends StandardPropertiesHyphenFallback,\n    SvgPropertiesHyphenFallback {}\n\nexport type AtRules =\n  | \"@charset\"\n  | \"@counter-style\"\n  | \"@document\"\n  | \"@font-face\"\n  | \"@font-feature-values\"\n  | \"@import\"\n  | \"@keyframes\"\n  | \"@media\"\n  | \"@namespace\"\n  | \"@page\"\n  | \"@property\"\n  | \"@supports\"\n  | \"@viewport\";\n\nexport type AdvancedPseudos =\n  | \"&::cue(\"\n  | \"&::cue-region(\"\n  | \"&::part(\"\n  | \"&::slotted(\"\n  | \"&:dir(\"\n  | \"&:has(\"\n  | \"&:host(\"\n  | \"&:host-context(\"\n  | \"&:is(\"\n  | \"&:lang(\"\n  | \"&:not(\"\n  | \"&:nth-child(\"\n  | \"&:nth-last-child(\"\n  | \"&:nth-last-of-type(\"\n  | \"&:nth-of-type(\"\n  | \"&:where(\";\n\nexport type SimplePseudos =\n  | \"&::after\"\n  | \"&::backdrop\"\n  | \"&::before\"\n  | \"&::cue\"\n  | \"&::cue-region\"\n  | \"&::first-letter\"\n  | \"&::first-line\"\n  | \"&::grammar-error\"\n  | \"&::marker\"\n  | \"&::placeholder\"\n  | \"&::selection\"\n  | \"&::spelling-error\"\n  | \"&::target-text\"\n  | \"&:active\"\n  | \"&:after\"\n  | \"&:any-link\"\n  | \"&:before\"\n  | \"&:blank\"\n  | \"&:checked\"\n  | \"&:current\"\n  | \"&:default\"\n  | \"&:defined\"\n  | \"&:disabled\"\n  | \"&:empty\"\n  | \"&:enabled\"\n  | \"&:first\"\n  | \"&:first-child\"\n  | \"&:first-letter\"\n  | \"&:first-line\"\n  | \"&:first-of-type\"\n  | \"&:focus\"\n  | \"&:focus-visible\"\n  | \"&:focus-within\"\n  | \"&:fullscreen\"\n  | \"&:future\"\n  | \"&:hover\"\n  | \"&:in-range\"\n  | \"&:indeterminate\"\n  | \"&:invalid\"\n  | \"&:last-child\"\n  | \"&:last-of-type\"\n  | \"&:left\"\n  | \"&:link\"\n  | \"&:local-link\"\n  | \"&:nth-col\"\n  | \"&:nth-last-col\"\n  | \"&:only-child\"\n  | \"&:only-of-type\"\n  | \"&:optional\"\n  | \"&:out-of-range\"\n  | \"&:past\"\n  | \"&:paused\"\n  | \"&:picture-in-picture\"\n  | \"&:placeholder-shown\"\n  | \"&:read-only\"\n  | \"&:read-write\"\n  | \"&:required\"\n  | \"&:right\"\n  | \"&:root\"\n  | \"&:scope\"\n  | \"&:target\"\n  | \"&:target-within\"\n  | \"&:user-invalid\"\n  | \"&:user-valid\"\n  | \"&:valid\"\n  | \"&:visited\";\n\nexport type Pseudos = AdvancedPseudos | SimplePseudos;\n\nexport type HtmlAttributes =\n  | \"[abbr]\"\n  | \"[accept-charset]\"\n  | \"[accept]\"\n  | \"[accesskey]\"\n  | \"[action]\"\n  | \"[align]\"\n  | \"[alink]\"\n  | \"[allow]\"\n  | \"[allowfullscreen]\"\n  | \"[allowpaymentrequest]\"\n  | \"[alt]\"\n  | \"[archive]\"\n  | \"[async]\"\n  | \"[autobuffer]\"\n  | \"[autocapitalize]\"\n  | \"[autocomplete]\"\n  | \"[autofocus]\"\n  | \"[autoplay]\"\n  | \"[axis]\"\n  | \"[background]\"\n  | \"[behavior]\"\n  | \"[bgcolor]\"\n  | \"[border]\"\n  | \"[bottommargin]\"\n  | \"[buffered]\"\n  | \"[cellpadding]\"\n  | \"[cellspacing]\"\n  | \"[char]\"\n  | \"[charoff]\"\n  | \"[charset]\"\n  | \"[checked]\"\n  | \"[cite]\"\n  | \"[class]\"\n  | \"[classid]\"\n  | \"[clear]\"\n  | \"[code]\"\n  | \"[codebase]\"\n  | \"[codetype]\"\n  | \"[color]\"\n  | \"[cols]\"\n  | \"[colspan]\"\n  | \"[command]\"\n  | \"[compact]\"\n  | \"[content]\"\n  | \"[contenteditable]\"\n  | \"[contextmenu]\"\n  | \"[controls]\"\n  | \"[coords]\"\n  | \"[crossorigin]\"\n  | \"[data]\"\n  | \"[datafld]\"\n  | \"[datasrc]\"\n  | \"[datetime]\"\n  | \"[declare]\"\n  | \"[decoding]\"\n  | \"[default]\"\n  | \"[defer]\"\n  | \"[dir]\"\n  | \"[direction]\"\n  | \"[dirname]\"\n  | \"[disabled]\"\n  | \"[download]\"\n  | \"[draggable]\"\n  | \"[enctype]\"\n  | \"[enterkeyhint]\"\n  | \"[exportparts]\"\n  | \"[face]\"\n  | \"[for]\"\n  | \"[form]\"\n  | \"[formaction]\"\n  | \"[formenctype]\"\n  | \"[formmethod]\"\n  | \"[formnovalidate]\"\n  | \"[formtarget]\"\n  | \"[frame]\"\n  | \"[frameborder]\"\n  | \"[headers]\"\n  | \"[height]\"\n  | \"[hidden]\"\n  | \"[high]\"\n  | \"[href]\"\n  | \"[hreflang]\"\n  | \"[hspace]\"\n  | \"[http-equiv]\"\n  | \"[icon]\"\n  | \"[id]\"\n  | \"[imagesizes]\"\n  | \"[imagesrcset]\"\n  | \"[inputmode]\"\n  | \"[integrity]\"\n  | \"[intrinsicsize]\"\n  | \"[is]\"\n  | \"[ismap]\"\n  | \"[itemid]\"\n  | \"[itemprop]\"\n  | \"[itemref]\"\n  | \"[itemscope]\"\n  | \"[itemtype]\"\n  | \"[kind]\"\n  | \"[label]\"\n  | \"[lang]\"\n  | \"[language]\"\n  | \"[leftmargin]\"\n  | \"[link]\"\n  | \"[loading]\"\n  | \"[longdesc]\"\n  | \"[loop]\"\n  | \"[low]\"\n  | \"[manifest]\"\n  | \"[marginheight]\"\n  | \"[marginwidth]\"\n  | \"[max]\"\n  | \"[maxlength]\"\n  | \"[mayscript]\"\n  | \"[media]\"\n  | \"[method]\"\n  | \"[methods]\"\n  | \"[min]\"\n  | \"[minlength]\"\n  | \"[moz-opaque]\"\n  | \"[mozallowfullscreen]\"\n  | \"[mozcurrentsampleoffset]\"\n  | \"[msallowfullscreen]\"\n  | \"[multiple]\"\n  | \"[muted]\"\n  | \"[name]\"\n  | \"[nohref]\"\n  | \"[nomodule]\"\n  | \"[nonce]\"\n  | \"[noresize]\"\n  | \"[noshade]\"\n  | \"[novalidate]\"\n  | \"[nowrap]\"\n  | \"[object]\"\n  | \"[onafterprint]\"\n  | \"[onbeforeprint]\"\n  | \"[onbeforeunload]\"\n  | \"[onblur]\"\n  | \"[onerror]\"\n  | \"[onfocus]\"\n  | \"[onhashchange]\"\n  | \"[onlanguagechange]\"\n  | \"[onload]\"\n  | \"[onmessage]\"\n  | \"[onoffline]\"\n  | \"[ononline]\"\n  | \"[onpopstate]\"\n  | \"[onredo]\"\n  | \"[onresize]\"\n  | \"[onstorage]\"\n  | \"[onundo]\"\n  | \"[onunload]\"\n  | \"[open]\"\n  | \"[optimum]\"\n  | \"[part]\"\n  | \"[ping]\"\n  | \"[placeholder]\"\n  | \"[played]\"\n  | \"[poster]\"\n  | \"[prefetch]\"\n  | \"[preload]\"\n  | \"[profile]\"\n  | \"[prompt]\"\n  | \"[radiogroup]\"\n  | \"[readonly]\"\n  | \"[referrerPolicy]\"\n  | \"[referrerpolicy]\"\n  | \"[rel]\"\n  | \"[required]\"\n  | \"[rev]\"\n  | \"[reversed]\"\n  | \"[rightmargin]\"\n  | \"[rows]\"\n  | \"[rowspan]\"\n  | \"[rules]\"\n  | \"[sandbox-allow-downloads]\"\n  | \"[sandbox-allow-modals]\"\n  | \"[sandbox-allow-popups-to-escape-sandbox]\"\n  | \"[sandbox-allow-popups]\"\n  | \"[sandbox-allow-presentation]\"\n  | \"[sandbox-allow-same-origin]\"\n  | \"[sandbox-allow-storage-access-by-user-activation]\"\n  | \"[sandbox-allow-top-navigation-by-user-activation]\"\n  | \"[sandbox]\"\n  | \"[scope]\"\n  | \"[scoped]\"\n  | \"[scrollamount]\"\n  | \"[scrolldelay]\"\n  | \"[scrolling]\"\n  | \"[selected]\"\n  | \"[shape]\"\n  | \"[size]\"\n  | \"[sizes]\"\n  | \"[slot]\"\n  | \"[span]\"\n  | \"[spellcheck]\"\n  | \"[src]\"\n  | \"[srcdoc]\"\n  | \"[srclang]\"\n  | \"[srcset]\"\n  | \"[standby]\"\n  | \"[start]\"\n  | \"[style]\"\n  | \"[summary]\"\n  | \"[tabindex]\"\n  | \"[target]\"\n  | \"[text]\"\n  | \"[title]\"\n  | \"[topmargin]\"\n  | \"[translate]\"\n  | \"[truespeed]\"\n  | \"[type]\"\n  | \"[usemap]\"\n  | \"[valign]\"\n  | \"[value]\"\n  | \"[valuetype]\"\n  | \"[version]\"\n  | \"[vlink]\"\n  | \"[volume]\"\n  | \"[vspace]\"\n  | \"[webkitallowfullscreen]\"\n  | \"[width]\"\n  | \"[wrap]\"\n  | \"[xmlns]\";\n\nexport type SvgAttributes =\n  | \"[accent-height]\"\n  | \"[alignment-baseline]\"\n  | \"[allowReorder]\"\n  | \"[alphabetic]\"\n  | \"[animation]\"\n  | \"[arabic-form]\"\n  | \"[ascent]\"\n  | \"[attributeName]\"\n  | \"[attributeType]\"\n  | \"[azimuth]\"\n  | \"[baseFrequency]\"\n  | \"[baseProfile]\"\n  | \"[baseline-shift]\"\n  | \"[bbox]\"\n  | \"[bias]\"\n  | \"[by]\"\n  | \"[calcMode]\"\n  | \"[cap-height]\"\n  | \"[class]\"\n  | \"[clip-path]\"\n  | \"[clip-rule]\"\n  | \"[clipPathUnits]\"\n  | \"[clip]\"\n  | \"[color-interpolation-filters]\"\n  | \"[color-interpolation]\"\n  | \"[color-profile]\"\n  | \"[color-rendering]\"\n  | \"[color]\"\n  | \"[contentScriptType]\"\n  | \"[contentStyleType]\"\n  | \"[cursor]\"\n  | \"[cx]\"\n  | \"[cy]\"\n  | \"[d]\"\n  | \"[descent]\"\n  | \"[diffuseConstant]\"\n  | \"[direction]\"\n  | \"[display]\"\n  | \"[divisor]\"\n  | \"[document]\"\n  | \"[dominant-baseline]\"\n  | \"[download]\"\n  | \"[dur]\"\n  | \"[dx]\"\n  | \"[dy]\"\n  | \"[edgeMode]\"\n  | \"[elevation]\"\n  | \"[enable-background]\"\n  | \"[externalResourcesRequired]\"\n  | \"[fill-opacity]\"\n  | \"[fill-rule]\"\n  | \"[fill]\"\n  | \"[filterRes]\"\n  | \"[filterUnits]\"\n  | \"[filter]\"\n  | \"[flood-color]\"\n  | \"[flood-opacity]\"\n  | \"[font-family]\"\n  | \"[font-size-adjust]\"\n  | \"[font-size]\"\n  | \"[font-stretch]\"\n  | \"[font-style]\"\n  | \"[font-variant]\"\n  | \"[font-weight]\"\n  | \"[format]\"\n  | \"[fr]\"\n  | \"[from]\"\n  | \"[fx]\"\n  | \"[fy]\"\n  | \"[g1]\"\n  | \"[g2]\"\n  | \"[global]\"\n  | \"[glyph-name]\"\n  | \"[glyph-orientation-horizontal]\"\n  | \"[glyph-orientation-vertical]\"\n  | \"[glyphRef]\"\n  | \"[gradientTransform]\"\n  | \"[gradientUnits]\"\n  | \"[graphical]\"\n  | \"[hanging]\"\n  | \"[hatchContentUnits]\"\n  | \"[hatchUnits]\"\n  | \"[height]\"\n  | \"[horiz-adv-x]\"\n  | \"[horiz-origin-x]\"\n  | \"[horiz-origin-y]\"\n  | \"[href]\"\n  | \"[hreflang]\"\n  | \"[id]\"\n  | \"[ideographic]\"\n  | \"[image-rendering]\"\n  | \"[in2]\"\n  | \"[in]\"\n  | \"[k1]\"\n  | \"[k2]\"\n  | \"[k3]\"\n  | \"[k4]\"\n  | \"[k]\"\n  | \"[kernelMatrix]\"\n  | \"[kernelUnitLength]\"\n  | \"[kerning]\"\n  | \"[keyPoints]\"\n  | \"[lang]\"\n  | \"[lengthAdjust]\"\n  | \"[letter-spacing]\"\n  | \"[lighting-color]\"\n  | \"[limitingConeAngle]\"\n  | \"[local]\"\n  | \"[marker-end]\"\n  | \"[marker-mid]\"\n  | \"[marker-start]\"\n  | \"[markerHeight]\"\n  | \"[markerUnits]\"\n  | \"[markerWidth]\"\n  | \"[maskContentUnits]\"\n  | \"[maskUnits]\"\n  | \"[mask]\"\n  | \"[mathematical]\"\n  | \"[media]\"\n  | \"[mode]\"\n  | \"[name]\"\n  | \"[numOctaves]\"\n  | \"[offset]\"\n  | \"[opacity]\"\n  | \"[operator]\"\n  | \"[order]\"\n  | \"[orient]\"\n  | \"[orientation]\"\n  | \"[origin]\"\n  | \"[overflow]\"\n  | \"[overline-position]\"\n  | \"[overline-thickness]\"\n  | \"[paint-order]\"\n  | \"[panose-1]\"\n  | \"[path]\"\n  | \"[patternContentUnits]\"\n  | \"[patternTransform]\"\n  | \"[patternUnits]\"\n  | \"[ping]\"\n  | \"[pitch]\"\n  | \"[pointer-events]\"\n  | \"[pointsAtX]\"\n  | \"[pointsAtY]\"\n  | \"[pointsAtZ]\"\n  | \"[points]\"\n  | \"[preserveAlpha]\"\n  | \"[preserveAspectRatio]\"\n  | \"[primitiveUnits]\"\n  | \"[r]\"\n  | \"[radius]\"\n  | \"[refX]\"\n  | \"[refY]\"\n  | \"[referrerPolicy]\"\n  | \"[rel]\"\n  | \"[rendering-intent]\"\n  | \"[repeatCount]\"\n  | \"[requiredExtensions]\"\n  | \"[requiredFeatures]\"\n  | \"[rotate]\"\n  | \"[rx]\"\n  | \"[ry]\"\n  | \"[scale]\"\n  | \"[seed]\"\n  | \"[shape-rendering]\"\n  | \"[side]\"\n  | \"[slope]\"\n  | \"[solid-color]\"\n  | \"[solid-opacity]\"\n  | \"[spacing]\"\n  | \"[specularConstant]\"\n  | \"[specularExponent]\"\n  | \"[spreadMethod]\"\n  | \"[startOffset]\"\n  | \"[stdDeviation]\"\n  | \"[stemh]\"\n  | \"[stemv]\"\n  | \"[stitchTiles]\"\n  | \"[stop-color]\"\n  | \"[stop-opacity]\"\n  | \"[strikethrough-position]\"\n  | \"[strikethrough-thickness]\"\n  | \"[string]\"\n  | \"[stroke-dasharray]\"\n  | \"[stroke-dashoffset]\"\n  | \"[stroke-linecap]\"\n  | \"[stroke-linejoin]\"\n  | \"[stroke-miterlimit]\"\n  | \"[stroke-opacity]\"\n  | \"[stroke-width]\"\n  | \"[stroke]\"\n  | \"[style]\"\n  | \"[surfaceScale]\"\n  | \"[systemLanguage]\"\n  | \"[tabindex]\"\n  | \"[targetX]\"\n  | \"[targetY]\"\n  | \"[target]\"\n  | \"[text-anchor]\"\n  | \"[text-decoration]\"\n  | \"[text-overflow]\"\n  | \"[text-rendering]\"\n  | \"[textLength]\"\n  | \"[title]\"\n  | \"[to]\"\n  | \"[transform-origin]\"\n  | \"[transform]\"\n  | \"[type]\"\n  | \"[u1]\"\n  | \"[u2]\"\n  | \"[underline-position]\"\n  | \"[underline-thickness]\"\n  | \"[unicode-bidi]\"\n  | \"[unicode-range]\"\n  | \"[unicode]\"\n  | \"[units-per-em]\"\n  | \"[v-alphabetic]\"\n  | \"[v-hanging]\"\n  | \"[v-ideographic]\"\n  | \"[v-mathematical]\"\n  | \"[values]\"\n  | \"[vector-effect]\"\n  | \"[version]\"\n  | \"[vert-adv-y]\"\n  | \"[vert-origin-x]\"\n  | \"[vert-origin-y]\"\n  | \"[viewBox]\"\n  | \"[viewTarget]\"\n  | \"[visibility]\"\n  | \"[white-space]\"\n  | \"[width]\"\n  | \"[widths]\"\n  | \"[word-spacing]\"\n  | \"[writing-mode]\"\n  | \"[x-height]\"\n  | \"[x1]\"\n  | \"[x2]\"\n  | \"[xChannelSelector]\"\n  | \"[x]\"\n  | \"[y1]\"\n  | \"[y2]\"\n  | \"[yChannelSelector]\"\n  | \"[y]\"\n  | \"[z]\"\n  | \"[zoomAndPan]\";\n\nexport type Globals = \"inherit\" | \"initial\" | \"revert\" | \"unset\";\n\nexport type OnlyObject = Record<never,never>\n\nexport type OnlyNumber = number & OnlyObject\n\nexport type OnlyString = string & OnlyObject\n\nexport type OnlyStringNumeric = (number | string) & OnlyObject\n\nexport namespace Property {\n  export type AlignContent = DataType.ContentDistribution | DataType.ContentPosition | \"baseline\" | \"normal\" | OnlyString;\n\n  export type AlignItems = DataType.SelfPosition | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type AlignSelf = DataType.SelfPosition | \"auto\" | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type AlignTracks = DataType.ContentDistribution | DataType.ContentPosition | \"baseline\" | \"normal\" | OnlyString;\n\n  export type All = never;\n\n  export type Animation = DataType.SingleAnimation | OnlyString;\n\n  export type AnimationDelay = never  | OnlyString;\n\n  export type AnimationDirection = DataType.SingleAnimationDirection | OnlyString;\n\n  export type AnimationDuration = never  | OnlyString;\n\n  export type AnimationFillMode = DataType.SingleAnimationFillMode | OnlyString;\n\n  export type AnimationIterationCount = \"infinite\" | OnlyStringNumeric;\n\n  export type AnimationName = \"none\" | OnlyString;\n\n  export type AnimationPlayState = \"paused\" | \"running\" | OnlyString;\n\n  export type AnimationTimingFunction = DataType.EasingFunction | OnlyString;\n\n  export type Appearance = DataType.CompatAuto | \"auto\" | \"menulist-button\" | \"none\" | \"textfield\";\n\n  export type AspectRatio = \"auto\" | OnlyString;\n\n  export type Azimuth =\n    | \"behind\"\n    | \"center\"\n    | \"center-left\"\n    | \"center-right\"\n    | \"far-left\"\n    | \"far-right\"\n    | \"left\"\n    | \"left-side\"\n    | \"leftwards\"\n    | \"right\"\n    | \"right-side\"\n    | \"rightwards\"\n    | OnlyString;\n\n  export type BackdropFilter = \"none\" | OnlyString;\n\n  export type BackfaceVisibility = \"hidden\" | \"visible\";\n\n  export type Background = DataType.FinalBgLayer | OnlyString;\n\n  export type BackgroundAttachment = DataType.Attachment | OnlyString;\n\n  export type BackgroundBlendMode = DataType.BlendMode | OnlyString;\n\n  export type BackgroundClip = DataType.Box | OnlyString;\n\n  export type BackgroundColor = DataType.Color;\n\n  export type BackgroundImage = \"none\" | OnlyString;\n\n  export type BackgroundOrigin = DataType.Box | OnlyString;\n\n  export type BackgroundPosition = DataType.BgPosition | OnlyString;\n\n  export type BackgroundPositionX = \"center\" | \"left\" | \"right\" | \"x-end\" | \"x-start\" | OnlyStringNumeric;\n\n  export type BackgroundPositionY = \"bottom\" | \"center\" | \"top\" | \"y-end\" | \"y-start\" | OnlyStringNumeric;\n\n  export type BackgroundRepeat = DataType.RepeatStyle | OnlyString;\n\n  export type BackgroundSize = DataType.BgSize | OnlyString;\n\n  export type BlockOverflow = \"clip\" | \"ellipsis\" | OnlyString;\n\n  export type BlockSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type Border = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlock = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlockColor = DataType.Color | OnlyString;\n\n  export type BorderBlockEnd = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlockEndColor = DataType.Color;\n\n  export type BorderBlockEndStyle = DataType.LineStyle;\n\n  export type BorderBlockEndWidth = DataType.LineWidth;\n\n  export type BorderBlockStart = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlockStartColor = DataType.Color;\n\n  export type BorderBlockStartStyle = DataType.LineStyle;\n\n  export type BorderBlockStartWidth = DataType.LineWidth;\n\n  export type BorderBlockStyle = DataType.LineStyle;\n\n  export type BorderBlockWidth = DataType.LineWidth;\n\n  export type BorderBottom = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBottomColor = DataType.Color;\n\n  export type BorderBottomLeftRadius = OnlyStringNumeric;\n\n  export type BorderBottomRightRadius = OnlyStringNumeric;\n\n  export type BorderBottomStyle = DataType.LineStyle;\n\n  export type BorderBottomWidth = DataType.LineWidth;\n\n  export type BorderCollapse = \"collapse\" | \"separate\";\n\n  export type BorderColor = DataType.Color | OnlyString;\n\n  export type BorderEndEndRadius = OnlyStringNumeric;\n\n  export type BorderEndStartRadius = OnlyStringNumeric;\n\n  export type BorderImage = \"none\" | \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyStringNumeric;\n\n  export type BorderImageOutset = OnlyStringNumeric;\n\n  export type BorderImageRepeat = \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyString;\n\n  export type BorderImageSlice = OnlyStringNumeric;\n\n  export type BorderImageSource = \"none\" | OnlyString;\n\n  export type BorderImageWidth = \"auto\" | OnlyStringNumeric;\n\n  export type BorderInline = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderInlineColor = DataType.Color | OnlyString;\n\n  export type BorderInlineEnd = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderInlineEndColor = DataType.Color;\n\n  export type BorderInlineEndStyle = DataType.LineStyle;\n\n  export type BorderInlineEndWidth = DataType.LineWidth;\n\n  export type BorderInlineStart = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderInlineStartColor = DataType.Color;\n\n  export type BorderInlineStartStyle = DataType.LineStyle;\n\n  export type BorderInlineStartWidth = DataType.LineWidth;\n\n  export type BorderInlineStyle = DataType.LineStyle;\n\n  export type BorderInlineWidth = DataType.LineWidth;\n\n  export type BorderLeft = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderLeftColor = DataType.Color;\n\n  export type BorderLeftStyle = DataType.LineStyle;\n\n  export type BorderLeftWidth = DataType.LineWidth;\n\n  export type BorderRadius = OnlyStringNumeric;\n\n  export type BorderRight = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderRightColor = DataType.Color;\n\n  export type BorderRightStyle = DataType.LineStyle;\n\n  export type BorderRightWidth = DataType.LineWidth;\n\n  export type BorderSpacing = OnlyStringNumeric;\n\n  export type BorderStartEndRadius = OnlyStringNumeric;\n\n  export type BorderStartStartRadius = OnlyStringNumeric;\n\n  export type BorderStyle = DataType.LineStyle | OnlyString;\n\n  export type BorderTop = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderTopColor = DataType.Color;\n\n  export type BorderTopLeftRadius = OnlyStringNumeric;\n\n  export type BorderTopRightRadius = OnlyStringNumeric;\n\n  export type BorderTopStyle = DataType.LineStyle;\n\n  export type BorderTopWidth = DataType.LineWidth;\n\n  export type BorderWidth = DataType.LineWidth | OnlyString;\n\n  export type Bottom = \"auto\" | OnlyStringNumeric;\n\n  export type BoxAlign = \"baseline\" | \"center\" | \"end\" | \"start\" | \"stretch\";\n\n  export type BoxDecorationBreak = \"clone\" | \"slice\";\n\n  export type BoxDirection = \"inherit\" | \"normal\" | \"reverse\";\n\n  export type BoxFlex = OnlyNumber;\n\n  export type BoxFlexGroup = OnlyNumber;\n\n  export type BoxLines = \"multiple\" | \"single\";\n\n  export type BoxOrdinalGroup = OnlyNumber;\n\n  export type BoxOrient = \"block-axis\" | \"horizontal\" | \"inherit\" | \"inline-axis\" | \"vertical\";\n\n  export type BoxPack = \"center\" | \"end\" | \"justify\" | \"start\";\n\n  export type BoxShadow = \"none\" | OnlyString;\n\n  export type BoxSizing = \"border-box\" | \"content-box\";\n\n  export type BreakAfter =\n    | \"all\"\n    | \"always\"\n    | \"auto\"\n    | \"avoid\"\n    | \"avoid-column\"\n    | \"avoid-page\"\n    | \"avoid-region\"\n    | \"column\"\n    | \"left\"\n    | \"page\"\n    | \"recto\"\n    | \"region\"\n    | \"right\"\n    | \"verso\";\n\n  export type BreakBefore =\n    | \"all\"\n    | \"always\"\n    | \"auto\"\n    | \"avoid\"\n    | \"avoid-column\"\n    | \"avoid-page\"\n    | \"avoid-region\"\n    | \"column\"\n    | \"left\"\n    | \"page\"\n    | \"recto\"\n    | \"region\"\n    | \"right\"\n    | \"verso\";\n\n  export type BreakInside = \"auto\" | \"avoid\" | \"avoid-column\" | \"avoid-page\" | \"avoid-region\";\n\n  export type CaptionSide = \"block-end\" | \"block-start\" | \"bottom\" | \"inline-end\" | \"inline-start\" | \"top\";\n\n  export type CaretColor = DataType.Color | \"auto\";\n\n  export type Clear = \"both\" | \"inline-end\" | \"inline-start\" | \"left\" | \"none\" | \"right\";\n\n  export type Clip = \"auto\" | OnlyString;\n\n  export type ClipPath = DataType.GeometryBox | \"none\" | OnlyString;\n\n  export type Color = DataType.Color;\n\n  export type ColorAdjust = \"economy\" | \"exact\";\n\n  export type ColorScheme = \"dark\" | \"light\" | \"light dark\" | \"normal\" | OnlyString;\n\n  export type ColumnCount = \"auto\" | OnlyNumber;\n\n  export type ColumnFill = \"auto\" | \"balance\";\n\n  export type ColumnGap = \"normal\" | OnlyStringNumeric;\n\n  export type ColumnRule = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type ColumnRuleColor = DataType.Color;\n\n  export type ColumnRuleStyle = DataType.LineStyle | OnlyString;\n\n  export type ColumnRuleWidth = DataType.LineWidth | OnlyString;\n\n  export type ColumnSpan = \"all\" | \"none\";\n\n  export type ColumnWidth = number | \"auto\";\n\n  export type Columns = \"auto\" | OnlyStringNumeric;\n\n  export type Contain = \"content\" | \"layout\" | \"none\" | \"paint\" | \"size\" | \"strict\" | \"style\" | OnlyString;\n\n  export type Content = DataType.ContentList | \"none\" | \"normal\" | OnlyString;\n\n  export type ContentVisibility = \"auto\" | \"hidden\" | \"visible\";\n\n  export type CounterIncrement = \"none\" | OnlyString;\n\n  export type CounterReset = \"none\" | OnlyString;\n\n  export type CounterSet = \"none\" | OnlyString;\n\n  export type Cursor =\n    | \"alias\"\n    | \"all-scroll\"\n    | \"auto\"\n    | \"cell\"\n    | \"col-resize\"\n    | \"context-menu\"\n    | \"copy\"\n    | \"crosshair\"\n    | \"default\"\n    | \"e-resize\"\n    | \"ew-resize\"\n    | \"grab\"\n    | \"grabbing\"\n    | \"help\"\n    | \"move\"\n    | \"n-resize\"\n    | \"ne-resize\"\n    | \"nesw-resize\"\n    | \"no-drop\"\n    | \"none\"\n    | \"not-allowed\"\n    | \"ns-resize\"\n    | \"nw-resize\"\n    | \"nwse-resize\"\n    | \"pointer\"\n    | \"progress\"\n    | \"row-resize\"\n    | \"s-resize\"\n    | \"se-resize\"\n    | \"sw-resize\"\n    | \"text\"\n    | \"vertical-text\"\n    | \"w-resize\"\n    | \"wait\"\n    | \"zoom-in\"\n    | \"zoom-out\"\n    | OnlyString;\n\n  export type Direction = \"ltr\" | \"rtl\";\n\n  export type Display =\n    | DataType.DisplayOutside\n    | DataType.DisplayInside\n    | DataType.DisplayInternal\n    | DataType.DisplayLegacy\n    | \"contents\"\n    | \"list-item\"\n    | \"none\"\n    | OnlyString;\n\n  export type EmptyCells = \"hide\" | \"show\";\n\n  export type Filter = \"none\" | OnlyString;\n\n  export type Flex = \"auto\" | \"content\" | \"stretch\" | \"fit-content\" | \"max-content\" | \"min-content\" | \"none\" | OnlyStringNumeric;\n\n  export type FlexBasis =\n    | number\n    | \"auto\"\n    | \"content\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type FlexDirection = \"column\" | \"column-reverse\" | \"row\" | \"row-reverse\";\n\n  export type FlexFlow = \"column\" | \"column-reverse\" | \"nowrap\" | \"row\" | \"row-reverse\" | \"wrap\" | \"wrap-reverse\" | OnlyString;\n\n  export type FlexGrow = OnlyStringNumeric;\n\n  export type FlexShrink = OnlyNumber;\n\n  export type FlexWrap = \"nowrap\" | \"wrap\" | \"wrap-reverse\";\n\n  export type Float = \"inline-end\" | \"inline-start\" | \"left\" | \"none\" | \"right\";\n\n  export type Font = \"caption\" | \"icon\" | \"menu\" | \"message-box\" | \"small-caption\" | \"status-bar\" | OnlyString;\n\n  export type FontFamily = DataType.GenericFamily | OnlyString;\n\n  export type FontFeatureSettings = \"normal\" | OnlyString;\n\n  export type FontKerning = \"auto\" | \"none\" | \"normal\";\n\n  export type FontLanguageOverride = \"normal\" | OnlyString;\n\n  export type FontOpticalSizing = \"auto\" | \"none\";\n\n  export type FontSize = DataType.AbsoluteSize | \"larger\" | \"smaller\" | OnlyStringNumeric;\n\n  export type FontSizeAdjust = \"none\" | OnlyNumber;\n\n  export type FontSmooth = DataType.AbsoluteSize | number | \"always\" | \"auto\" | \"never\";\n\n  export type FontStretch = DataType.FontStretchAbsolute;\n\n  export type FontStyle = \"italic\" | \"normal\" | \"oblique\" | OnlyString;\n\n  export type FontSynthesis = \"none\" | \"style\" | \"weight\" | OnlyString;\n\n  export type FontVariant =\n    | DataType.EastAsianVariantValues\n    | \"all-petite-caps\"\n    | \"all-small-caps\"\n    | \"common-ligatures\"\n    | \"contextual\"\n    | \"diagonal-fractions\"\n    | \"discretionary-ligatures\"\n    | \"full-width\"\n    | \"historical-forms\"\n    | \"historical-ligatures\"\n    | \"lining-nums\"\n    | \"no-common-ligatures\"\n    | \"no-contextual\"\n    | \"no-discretionary-ligatures\"\n    | \"no-historical-ligatures\"\n    | \"none\"\n    | \"normal\"\n    | \"oldstyle-nums\"\n    | \"ordinal\"\n    | \"petite-caps\"\n    | \"proportional-nums\"\n    | \"proportional-width\"\n    | \"ruby\"\n    | \"slashed-zero\"\n    | \"small-caps\"\n    | \"stacked-fractions\"\n    | \"tabular-nums\"\n    | \"titling-caps\"\n    | \"unicase\"\n    | OnlyString;\n\n  export type FontVariantAlternates = \"historical-forms\" | \"normal\" | OnlyString;\n\n  export type FontVariantCaps = \"all-petite-caps\" | \"all-small-caps\" | \"normal\" | \"petite-caps\" | \"small-caps\" | \"titling-caps\" | \"unicase\";\n\n  export type FontVariantEastAsian = DataType.EastAsianVariantValues | \"full-width\" | \"normal\" | \"proportional-width\" | \"ruby\" | OnlyString;\n\n  export type FontVariantLigatures =\n    | \"common-ligatures\"\n    | \"contextual\"\n    | \"discretionary-ligatures\"\n    | \"historical-ligatures\"\n    | \"no-common-ligatures\"\n    | \"no-contextual\"\n    | \"no-discretionary-ligatures\"\n    | \"no-historical-ligatures\"\n    | \"none\"\n    | \"normal\"\n    | OnlyString;\n\n  export type FontVariantNumeric =\n    | \"diagonal-fractions\"\n    | \"lining-nums\"\n    | \"normal\"\n    | \"oldstyle-nums\"\n    | \"ordinal\"\n    | \"proportional-nums\"\n    | \"slashed-zero\"\n    | \"stacked-fractions\"\n    | \"tabular-nums\"\n    | OnlyString;\n\n  export type FontVariantPosition = \"normal\" | \"sub\" | \"super\";\n\n  export type FontVariationSettings = \"normal\" | OnlyString;\n\n  export type FontWeight = DataType.FontWeightAbsolute | \"bolder\" | \"lighter\";\n\n  export type ForcedColorAdjust = \"auto\" | \"none\";\n\n  export type Gap = \"normal\" | OnlyStringNumeric;\n\n  export type Grid = \"none\" | OnlyString;\n\n  export type GridArea = DataType.GridLine | OnlyString;\n\n  export type GridAutoColumns = DataType.TrackBreadth | OnlyString;\n\n  export type GridAutoFlow = \"column\" | \"dense\" | \"row\" | OnlyString;\n\n  export type GridAutoRows = DataType.TrackBreadth | OnlyString;\n\n  export type GridColumn = DataType.GridLine | OnlyString;\n\n  export type GridColumnEnd = DataType.GridLine;\n\n  export type GridColumnGap = OnlyStringNumeric;\n\n  export type GridColumnStart = DataType.GridLine;\n\n  export type GridGap = OnlyStringNumeric;\n\n  export type GridRow = DataType.GridLine | OnlyString;\n\n  export type GridRowEnd = DataType.GridLine;\n\n  export type GridRowGap = OnlyStringNumeric;\n\n  export type GridRowStart = DataType.GridLine;\n\n  export type GridTemplate = \"none\" | OnlyString;\n\n  export type GridTemplateAreas = \"none\" | OnlyString;\n\n  export type GridTemplateColumns = DataType.TrackBreadth | \"none\" | \"subgrid\" | OnlyString;\n\n  export type GridTemplateRows = DataType.TrackBreadth | \"none\" | \"subgrid\" | OnlyString;\n\n  export type HangingPunctuation = \"allow-end\" | \"first\" | \"force-end\" | \"last\" | \"none\" | OnlyString;\n\n  export type Height =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type Hyphens = \"auto\" | \"manual\" | \"none\";\n\n  export type ImageOrientation = \"flip\" | \"from-image\" | OnlyString;\n\n  export type ImageRendering = \"auto\" | \"crisp-edges\" | \"pixelated\";\n\n  export type ImageResolution = \"from-image\" | OnlyString;\n\n  export type ImeMode = \"active\" | \"auto\" | \"disabled\" | \"inactive\" | \"normal\";\n\n  export type InitialLetter = \"normal\" | OnlyStringNumeric;\n\n  export type InlineSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type Inset = \"auto\" | OnlyStringNumeric;\n\n  export type InsetBlock = \"auto\" | OnlyStringNumeric;\n\n  export type InsetBlockEnd = \"auto\" | OnlyStringNumeric;\n\n  export type InsetBlockStart = \"auto\" | OnlyStringNumeric;\n\n  export type InsetInline = \"auto\" | OnlyStringNumeric;\n\n  export type InsetInlineEnd = \"auto\" | OnlyStringNumeric;\n\n  export type InsetInlineStart = \"auto\" | OnlyStringNumeric;\n\n  export type Isolation = \"auto\" | \"isolate\";\n\n  export type JustifyContent = DataType.ContentDistribution | DataType.ContentPosition | \"left\" | \"normal\" | \"right\" | OnlyString;\n\n  export type JustifyItems = DataType.SelfPosition | \"baseline\" | \"left\" | \"legacy\" | \"normal\" | \"right\" | \"stretch\" | OnlyString;\n\n  export type JustifySelf = DataType.SelfPosition | \"auto\" | \"baseline\" | \"left\" | \"normal\" | \"right\" | \"stretch\" | OnlyString;\n\n  export type JustifyTracks = DataType.ContentDistribution | DataType.ContentPosition | \"left\" | \"normal\" | \"right\" | OnlyString;\n\n  export type Left = \"auto\" | OnlyStringNumeric;\n\n  export type LetterSpacing = \"normal\" | OnlyStringNumeric;\n\n  export type LineBreak = \"anywhere\" | \"auto\" | \"loose\" | \"normal\" | \"strict\";\n\n  export type LineClamp = \"none\" | OnlyNumber;\n\n  export type LineHeight = \"normal\" | OnlyStringNumeric;\n\n  export type LineHeightStep = number;\n\n  export type ListStyle = \"inside\" | \"none\" | \"outside\" | OnlyString;\n\n  export type ListStyleImage = \"none\" | OnlyString;\n\n  export type ListStylePosition = \"inside\" | \"outside\";\n\n  export type ListStyleType = \"none\" | OnlyString;\n\n  export type Margin = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBlock = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBlockEnd = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBlockStart = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBottom = \"auto\" | OnlyStringNumeric;\n\n  export type MarginInline = \"auto\" | OnlyStringNumeric;\n\n  export type MarginInlineEnd = \"auto\" | OnlyStringNumeric;\n\n  export type MarginInlineStart = \"auto\" | OnlyStringNumeric;\n\n  export type MarginLeft = \"auto\" | OnlyStringNumeric;\n\n  export type MarginRight = \"auto\" | OnlyStringNumeric;\n\n  export type MarginTop = \"auto\" | OnlyStringNumeric;\n\n  export type Mask = DataType.MaskLayer | OnlyString;\n\n  export type MaskBorder = \"alpha\" | \"luminance\" | \"none\" | \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyStringNumeric;\n\n  export type MaskBorderMode = \"alpha\" | \"luminance\";\n\n  export type MaskBorderOutset = OnlyStringNumeric;\n\n  export type MaskBorderRepeat = \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyString;\n\n  export type MaskBorderSlice = OnlyStringNumeric;\n\n  export type MaskBorderSource = \"none\" | OnlyString;\n\n  export type MaskBorderWidth = \"auto\" | OnlyStringNumeric;\n\n  export type MaskClip = DataType.GeometryBox | \"no-clip\" | OnlyString;\n\n  export type MaskComposite = DataType.CompositingOperator | OnlyString;\n\n  export type MaskImage = \"none\" | OnlyString;\n\n  export type MaskMode = DataType.MaskingMode | OnlyString;\n\n  export type MaskOrigin = DataType.Box | \"margin-box\" | OnlyString;\n\n  export type MaskPosition = DataType.Position | OnlyString;\n\n  export type MaskRepeat = DataType.RepeatStyle | OnlyString;\n\n  export type MaskSize = DataType.BgSize | OnlyString;\n\n  export type MaskType = \"alpha\" | \"luminance\";\n\n  export type MathStyle = \"compact\" | \"normal\";\n\n  export type MaxBlockSize =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MaxHeight =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MaxInlineSize =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MaxLines = \"none\" | OnlyNumber;\n\n  export type MaxWidth =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MinBlockSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type MinHeight =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type MinInlineSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type MinWidth =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"min-intrinsic\"\n    | OnlyString;\n\n  export type MixBlendMode = DataType.BlendMode;\n\n  export type Offset = DataType.Position | DataType.GeometryBox | \"auto\" | \"none\" | OnlyString;\n\n  export type OffsetDistance = OnlyStringNumeric;\n\n  export type OffsetPath = DataType.GeometryBox | \"none\" | OnlyString;\n\n  export type OffsetRotate = \"auto\" | \"reverse\" | OnlyString;\n\n  export type ObjectFit = \"contain\" | \"cover\" | \"fill\" | \"none\" | \"scale-down\";\n\n  export type ObjectPosition = DataType.Position;\n\n  export type OffsetAnchor = DataType.Position | \"auto\";\n\n  export type Opacity = OnlyStringNumeric;\n\n  export type Order = OnlyNumber;\n\n  export type Orphans = OnlyNumber;\n\n  export type Outline = DataType.Color | DataType.LineStyle | DataType.LineWidth | \"auto\" | \"invert\" | OnlyString;\n\n  export type OutlineColor = DataType.Color | \"invert\";\n\n  export type OutlineOffset = number;\n\n  export type OutlineStyle = DataType.LineStyle | \"auto\" | OnlyString;\n\n  export type OutlineWidth = DataType.LineWidth;\n\n  export type Overflow = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\" | OnlyString;\n\n  export type OverflowAnchor = \"auto\" | \"none\";\n\n  export type OverflowBlock = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverflowClipBox = \"content-box\" | \"padding-box\";\n\n  export type OverflowClipMargin = DataType.VisualBox | OnlyStringNumeric;\n\n  export type OverflowInline = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverflowWrap = \"anywhere\" | \"break-word\" | \"normal\";\n\n  export type OverflowX = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverflowY = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverscrollBehavior = \"auto\" | \"contain\" | \"none\" | OnlyString;\n\n  export type OverscrollBehaviorBlock = \"auto\" | \"contain\" | \"none\";\n\n  export type OverscrollBehaviorInline = \"auto\" | \"contain\" | \"none\";\n\n  export type OverscrollBehaviorX = \"auto\" | \"contain\" | \"none\";\n\n  export type OverscrollBehaviorY = \"auto\" | \"contain\" | \"none\";\n\n  export type Padding = OnlyStringNumeric;\n\n  export type PaddingBlock = OnlyStringNumeric;\n\n  export type PaddingBlockEnd = OnlyStringNumeric;\n\n  export type PaddingBlockStart = OnlyStringNumeric;\n\n  export type PaddingBottom = OnlyStringNumeric;\n\n  export type PaddingInline = OnlyStringNumeric;\n\n  export type PaddingInlineEnd = OnlyStringNumeric;\n\n  export type PaddingInlineStart = OnlyStringNumeric;\n\n  export type PaddingLeft = OnlyStringNumeric;\n\n  export type PaddingRight = OnlyStringNumeric;\n\n  export type PaddingTop = OnlyStringNumeric;\n\n  export type PageBreakAfter = \"always\" | \"auto\" | \"avoid\" | \"left\" | \"recto\" | \"right\" | \"verso\";\n\n  export type PageBreakBefore = \"always\" | \"auto\" | \"avoid\" | \"left\" | \"recto\" | \"right\" | \"verso\";\n\n  export type PageBreakInside = \"auto\" | \"avoid\";\n\n  export type PaintOrder = \"fill\" | \"markers\" | \"normal\" | \"stroke\" | OnlyString;\n\n  export type Perspective = number | \"none\";\n\n  export type PerspectiveOrigin = DataType.Position;\n\n  export type PlaceContent = DataType.ContentDistribution | DataType.ContentPosition | \"baseline\" | \"normal\" | OnlyString;\n\n  export type PlaceItems = DataType.SelfPosition | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type PlaceSelf = DataType.SelfPosition | \"auto\" | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type PointerEvents = \"all\" | \"auto\" | \"fill\" | \"inherit\" | \"none\" | \"painted\" | \"stroke\" | \"visible\" | \"visibleFill\" | \"visiblePainted\" | \"visibleStroke\";\n\n  export type Position = \"absolute\" | \"fixed\" | \"relative\" | \"static\" | \"sticky\";\n\n  export type Quotes = \"auto\" | \"none\" | OnlyString;\n\n  export type Resize = \"block\" | \"both\" | \"horizontal\" | \"inline\" | \"none\" | \"vertical\";\n\n  export type Right = \"auto\" | OnlyStringNumeric;\n\n  export type Rotate = \"none\" | OnlyString;\n\n  export type RowGap = \"normal\" | OnlyStringNumeric;\n\n  export type RubyAlign = \"center\" | \"space-around\" | \"space-between\" | \"start\";\n\n  export type RubyMerge = \"auto\" | \"collapse\" | \"separate\";\n\n  export type RubyPosition = \"alternate\" | \"over\" | \"under\" | OnlyString;\n\n  export type Scale = \"none\" | OnlyStringNumeric;\n\n  export type ScrollBehavior = \"auto\" | \"smooth\";\n\n  export type ScrollMargin = OnlyStringNumeric;\n\n  export type ScrollMarginBlock = OnlyStringNumeric;\n\n  export type ScrollMarginBlockEnd = number;\n\n  export type ScrollMarginBlockStart = number;\n\n  export type ScrollMarginBottom = number;\n\n  export type ScrollMarginInline = OnlyStringNumeric;\n\n  export type ScrollMarginInlineEnd = number;\n\n  export type ScrollMarginInlineStart = number;\n\n  export type ScrollMarginLeft = number;\n\n  export type ScrollMarginRight = number;\n\n  export type ScrollMarginTop = number;\n\n  export type ScrollPadding = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBlock = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBlockEnd = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBlockStart = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBottom = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingInline = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingInlineEnd = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingInlineStart = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingLeft = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingRight = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingTop = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollSnapAlign = \"center\" | \"end\" | \"none\" | \"start\" | OnlyString;\n\n  export type ScrollSnapCoordinate = DataType.Position | \"none\" | OnlyString;\n\n  export type ScrollSnapDestination = DataType.Position;\n\n  export type ScrollSnapPointsX = \"none\" | OnlyString;\n\n  export type ScrollSnapPointsY = \"none\" | OnlyString;\n\n  export type ScrollSnapStop = \"always\" | \"normal\";\n\n  export type ScrollSnapType = \"block\" | \"both\" | \"inline\" | \"none\" | \"x\" | \"y\" | OnlyString;\n\n  export type ScrollSnapTypeX = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type ScrollSnapTypeY = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type ScrollbarColor = DataType.Color | \"auto\" | \"dark\" | \"light\";\n\n  export type ScrollbarGutter = \"always\" | \"auto\" | \"stable\" | OnlyString;\n\n  export type MsScrollbarTrackColor = DataType.Color;\n\n  export type ScrollbarWidth = \"auto\" | \"none\" | \"thin\";\n\n  export type ShapeImageThreshold = OnlyStringNumeric;\n\n  export type ShapeMargin = OnlyStringNumeric;\n\n  export type ShapeOutside = DataType.Box | \"margin-box\" | \"none\" | OnlyString;\n\n  export type TabSize = number | OnlyNumber;\n\n  export type TableLayout = \"auto\" | \"fixed\";\n\n  export type TextAlign = \"center\" | \"end\" | \"justify\" | \"left\" | \"match-parent\" | \"right\" | \"start\";\n\n  export type TextAlignLast = \"auto\" | \"center\" | \"end\" | \"justify\" | \"left\" | \"right\" | \"start\";\n\n  export type TextCombineUpright = \"all\" | \"digits\" | \"none\" | OnlyString;\n\n  export type TextDecoration =\n    | DataType.Color\n    | number\n    | \"auto\"\n    | \"blink\"\n    | \"dashed\"\n    | \"dotted\"\n    | \"double\"\n    | \"from-font\"\n    | \"grammar-error\"\n    | \"line-through\"\n    | \"none\"\n    | \"overline\"\n    | \"solid\"\n    | \"spelling-error\"\n    | \"underline\"\n    | \"wavy\"\n    | OnlyString;\n\n  export type TextDecorationColor = DataType.Color;\n\n  export type TextDecorationLine = \"blink\" | \"grammar-error\" | \"line-through\" | \"none\" | \"overline\" | \"spelling-error\" | \"underline\" | OnlyString;\n\n  export type TextDecorationSkip = \"box-decoration\" | \"edges\" | \"leading-spaces\" | \"none\" | \"objects\" | \"spaces\" | \"trailing-spaces\" | OnlyString;\n\n  export type TextDecorationSkipInk = \"all\" | \"auto\" | \"none\";\n\n  export type TextDecorationStyle = \"dashed\" | \"dotted\" | \"double\" | \"solid\" | \"wavy\";\n\n  export type TextDecorationThickness = \"auto\" | \"from-font\" | OnlyStringNumeric;\n\n  export type TextEmphasis = DataType.Color | \"circle\" | \"dot\" | \"double-circle\" | \"filled\" | \"none\" | \"open\" | \"sesame\" | \"triangle\" | OnlyString;\n\n  export type TextEmphasisColor = DataType.Color;\n\n  export type TextEmphasisPosition = OnlyString;\n\n  export type TextEmphasisStyle = \"circle\" | \"dot\" | \"double-circle\" | \"filled\" | \"none\" | \"open\" | \"sesame\" | \"triangle\" | OnlyString;\n\n  export type TextIndent = OnlyStringNumeric;\n\n  export type TextJustify = \"auto\" | \"inter-character\" | \"inter-word\" | \"none\";\n\n  export type TextOrientation = \"mixed\" | \"sideways\" | \"upright\";\n\n  export type TextOverflow = \"clip\" | \"ellipsis\" | OnlyString;\n\n  export type TextRendering = \"auto\" | \"geometricPrecision\" | \"optimizeLegibility\" | \"optimizeSpeed\";\n\n  export type TextShadow = \"none\" | OnlyString;\n\n  export type TextSizeAdjust = \"auto\" | \"none\" | OnlyString;\n\n  export type TextTransform = \"capitalize\" | \"full-size-kana\" | \"full-width\" | \"lowercase\" | \"none\" | \"uppercase\";\n\n  export type TextUnderlineOffset = \"auto\" | OnlyStringNumeric;\n\n  export type TextUnderlinePosition = \"auto\" | \"from-font\" | \"left\" | \"right\" | \"under\" | OnlyString;\n\n  export type Top = \"auto\" | OnlyStringNumeric;\n\n  export type TouchAction =\n    | \"auto\"\n    | \"manipulation\"\n    | \"none\"\n    | \"pan-down\"\n    | \"pan-left\"\n    | \"pan-right\"\n    | \"pan-up\"\n    | \"pan-x\"\n    | \"pan-y\"\n    | \"pinch-zoom\"\n    | OnlyString;\n\n  export type Transform = \"none\" | OnlyString;\n\n  export type TransformBox = \"border-box\" | \"content-box\" | \"fill-box\" | \"stroke-box\" | \"view-box\";\n\n  export type TransformOrigin = \"bottom\" | \"center\" | \"left\" | \"right\" | \"top\" | OnlyStringNumeric;\n\n  export type TransformStyle = \"flat\" | \"preserve-3d\";\n\n  export type Transition = DataType.SingleTransition | OnlyString;\n\n  export type TransitionDelay = never  | OnlyString;\n\n  export type TransitionDuration = never  | OnlyString;\n\n  export type TransitionProperty = \"all\" | \"none\" | OnlyString;\n\n  export type TransitionTimingFunction = DataType.EasingFunction | OnlyString;\n\n  export type Translate = \"none\" | OnlyStringNumeric;\n\n  export type UnicodeBidi =\n    | \"bidi-override\"\n    | \"embed\"\n    | \"isolate\"\n    | \"isolate-override\"\n    | \"normal\"\n    | \"plaintext\";\n\n  export type UserSelect = \"all\" | \"auto\" | \"contain\" | \"element\" | \"none\" | \"text\";\n\n  export type VerticalAlign =\n    | number\n    | \"baseline\"\n    | \"bottom\"\n    | \"middle\"\n    | \"sub\"\n    | \"super\"\n    | \"text-bottom\"\n    | \"text-top\"\n    | \"top\"\n    | OnlyString;\n\n  export type Visibility = \"collapse\" | \"hidden\" | \"visible\";\n\n  export type WhiteSpace = \"break-spaces\" | \"normal\" | \"nowrap\" | \"pre\" | \"pre-line\" | \"pre-wrap\";\n\n  export type Widows = OnlyNumber;\n\n  export type Width =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"min-intrinsic\"\n    | OnlyString;\n\n  export type WillChange = DataType.AnimateableFeature | \"auto\" | OnlyString;\n\n  export type WordBreak = \"break-all\" | \"break-word\" | \"keep-all\" | \"normal\";\n\n  export type WordSpacing = \"normal\" | OnlyStringNumeric;\n\n  export type WordWrap = \"break-word\" | \"normal\";\n\n  export type WritingMode = \"horizontal-tb\" | \"sideways-lr\" | \"sideways-rl\" | \"vertical-lr\" | \"vertical-rl\";\n\n  export type ZIndex = \"auto\" | OnlyStringNumeric;\n\n  export type Zoom = \"normal\" | \"reset\" | OnlyStringNumeric;\n\n  export type MozAppearance =\n    | \"button\"\n    | \"button-arrow-down\"\n    | \"button-arrow-next\"\n    | \"button-arrow-previous\"\n    | \"button-arrow-up\"\n    | \"button-bevel\"\n    | \"button-focus\"\n    | \"caret\"\n    | \"checkbox\"\n    | \"checkbox-container\"\n    | \"checkbox-label\"\n    | \"checkmenuitem\"\n    | \"dualbutton\"\n    | \"groupbox\"\n    | \"listbox\"\n    | \"listitem\"\n    | \"menuarrow\"\n    | \"menubar\"\n    | \"menucheckbox\"\n    | \"menuimage\"\n    | \"menuitem\"\n    | \"menuitemtext\"\n    | \"menulist\"\n    | \"menulist-button\"\n    | \"menulist-text\"\n    | \"menulist-textfield\"\n    | \"menupopup\"\n    | \"menuradio\"\n    | \"menuseparator\"\n    | \"meterbar\"\n    | \"meterchunk\"\n    | \"none\"\n    | \"progressbar\"\n    | \"progressbar-vertical\"\n    | \"progresschunk\"\n    | \"progresschunk-vertical\"\n    | \"radio\"\n    | \"radio-container\"\n    | \"radio-label\"\n    | \"radiomenuitem\"\n    | \"range\"\n    | \"range-thumb\"\n    | \"resizer\"\n    | \"resizerpanel\"\n    | \"scale-horizontal\"\n    | \"scale-vertical\"\n    | \"scalethumb-horizontal\"\n    | \"scalethumb-vertical\"\n    | \"scalethumbend\"\n    | \"scalethumbstart\"\n    | \"scalethumbtick\"\n    | \"scrollbarbutton-down\"\n    | \"scrollbarbutton-left\"\n    | \"scrollbarbutton-right\"\n    | \"scrollbarbutton-up\"\n    | \"scrollbarthumb-horizontal\"\n    | \"scrollbarthumb-vertical\"\n    | \"scrollbartrack-horizontal\"\n    | \"scrollbartrack-vertical\"\n    | \"searchfield\"\n    | \"separator\"\n    | \"sheet\"\n    | \"spinner\"\n    | \"spinner-downbutton\"\n    | \"spinner-textfield\"\n    | \"spinner-upbutton\"\n    | \"splitter\"\n    | \"statusbar\"\n    | \"statusbarpanel\"\n    | \"tab\"\n    | \"tab-scroll-arrow-back\"\n    | \"tab-scroll-arrow-forward\"\n    | \"tabpanel\"\n    | \"tabpanels\"\n    | \"textfield\"\n    | \"textfield-multiline\"\n    | \"toolbar\"\n    | \"toolbarbutton\"\n    | \"toolbarbutton-dropdown\"\n    | \"toolbargripper\"\n    | \"toolbox\"\n    | \"tooltip\"\n    | \"treeheader\"\n    | \"treeheadercell\"\n    | \"treeheadersortarrow\"\n    | \"treeitem\"\n    | \"treeline\"\n    | \"treetwisty\"\n    | \"treetwistyopen\"\n    | \"treeview\";\n\n  export type MozBinding = \"none\" | OnlyString;\n\n  export type MozBorderBottomColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozBorderLeftColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozBorderRightColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozBorderTopColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozContextProperties = \"fill\" | \"fill-opacity\" | \"none\" | \"stroke\" | \"stroke-opacity\" | OnlyString;\n\n  export type MozFloatEdge = \"border-box\" | \"content-box\" | \"margin-box\" | \"padding-box\";\n\n  export type MozForceBrokenImageIcon = OnlyNumber;\n\n  export type MozImageRegion = \"auto\" | OnlyString;\n\n  export type MozOrient = \"block\" | \"horizontal\" | \"inline\" | \"vertical\";\n\n  export type MozOutlineRadius = OnlyStringNumeric;\n\n  export type MozOutlineRadiusBottomleft = OnlyStringNumeric;\n\n  export type MozOutlineRadiusBottomright = OnlyStringNumeric;\n\n  export type MozOutlineRadiusTopleft = OnlyStringNumeric;\n\n  export type MozOutlineRadiusTopright = OnlyStringNumeric;\n\n  export type MozStackSizing = \"ignore\" | \"stretch-to-fit\";\n\n  export type MozTextBlink = \"blink\" | \"none\";\n\n  export type MozUserFocus = \"ignore\" | \"none\" | \"normal\" | \"select-after\" | \"select-all\" | \"select-before\" | \"select-menu\" | \"select-same\";\n\n  export type MozUserInput = \"auto\" | \"disabled\" | \"enabled\" | \"none\";\n\n  export type MozUserModify = \"read-only\" | \"read-write\" | \"write-only\";\n\n  export type MozWindowDragging = \"drag\" | \"no-drag\";\n\n  export type MozWindowShadow = \"default\" | \"menu\" | \"none\" | \"sheet\" | \"tooltip\";\n\n  export type MsAccelerator = \"false\" | \"true\";\n\n  export type MsBlockProgression = \"bt\" | \"lr\" | \"rl\" | \"tb\";\n\n  export type MsContentZoomChaining = \"chained\" | \"none\";\n\n  export type MsContentZoomLimit = OnlyString;\n\n  export type MsContentZoomLimitMax = OnlyString;\n\n  export type MsContentZoomLimitMin = OnlyString;\n\n  export type MsContentZoomSnap = \"mandatory\" | \"none\" | \"proximity\" | OnlyString;\n\n  export type MsContentZoomSnapPoints = OnlyString;\n\n  export type MsContentZoomSnapType = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type MsContentZooming = \"none\" | \"zoom\";\n\n  export type MsFilter = OnlyString;\n\n  export type MsFlowFrom = \"none\" | OnlyString;\n\n  export type MsFlowInto = \"none\" | OnlyString;\n\n  export type MsGridColumns = DataType.TrackBreadth | \"none\" | OnlyString;\n\n  export type MsGridRows = DataType.TrackBreadth | \"none\" | OnlyString;\n\n  export type MsHighContrastAdjust = \"auto\" | \"none\";\n\n  export type MsHyphenateLimitChars = \"auto\" | OnlyStringNumeric;\n\n  export type MsHyphenateLimitLines = \"no-limit\" | OnlyNumber;\n\n  export type MsHyphenateLimitZone = OnlyStringNumeric;\n\n  export type MsImeAlign = \"after\" | \"auto\";\n\n  export type MsOverflowStyle = \"auto\" | \"none\" | \"scrollbar\";\n\n  export type MsScrollChaining = \"chained\" | \"none\";\n\n  export type MsScrollLimit = OnlyString;\n\n  export type MsScrollLimitXMax = number | \"auto\";\n\n  export type MsScrollLimitXMin = number;\n\n  export type MsScrollLimitYMax = number | \"auto\";\n\n  export type MsScrollLimitYMin = number;\n\n  export type MsScrollRails = \"none\" | \"railed\";\n\n  export type MsScrollSnapPointsX = OnlyString;\n\n  export type MsScrollSnapPointsY = OnlyString;\n\n  export type MsScrollSnapType = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type MsScrollSnapX = OnlyString;\n\n  export type MsScrollSnapY = OnlyString;\n\n  export type MsScrollTranslation = \"none\" | \"vertical-to-horizontal\";\n\n  export type MsScrollbar3dlightColor = DataType.Color;\n\n  export type MsScrollbarArrowColor = DataType.Color;\n\n  export type MsScrollbarBaseColor = DataType.Color;\n\n  export type MsScrollbarDarkshadowColor = DataType.Color;\n\n  export type MsScrollbarFaceColor = DataType.Color;\n\n  export type MsScrollbarHighlightColor = DataType.Color;\n\n  export type MsScrollbarShadowColor = DataType.Color;\n\n  export type MsTextAutospace = \"ideograph-alpha\" | \"ideograph-numeric\" | \"ideograph-parenthesis\" | \"ideograph-space\" | \"none\";\n\n  export type MsTouchSelect = \"grippers\" | \"none\";\n\n  export type MsUserSelect = \"element\" | \"none\" | \"text\";\n\n  export type MsWrapFlow = \"auto\" | \"both\" | \"clear\" | \"end\" | \"maximum\" | \"start\";\n\n  export type MsWrapMargin = number;\n\n  export type MsWrapThrough = \"none\" | \"wrap\";\n\n  export type WebkitAppearance =\n    | \"button\"\n    | \"button-bevel\"\n    | \"caret\"\n    | \"checkbox\"\n    | \"default-button\"\n    | \"inner-spin-button\"\n    | \"listbox\"\n    | \"listitem\"\n    | \"media-controls-background\"\n    | \"media-controls-fullscreen-background\"\n    | \"media-current-time-display\"\n    | \"media-enter-fullscreen-button\"\n    | \"media-exit-fullscreen-button\"\n    | \"media-fullscreen-button\"\n    | \"media-mute-button\"\n    | \"media-overlay-play-button\"\n    | \"media-play-button\"\n    | \"media-seek-back-button\"\n    | \"media-seek-forward-button\"\n    | \"media-slider\"\n    | \"media-sliderthumb\"\n    | \"media-time-remaining-display\"\n    | \"media-toggle-closed-captions-button\"\n    | \"media-volume-slider\"\n    | \"media-volume-slider-container\"\n    | \"media-volume-sliderthumb\"\n    | \"menulist\"\n    | \"menulist-button\"\n    | \"menulist-text\"\n    | \"menulist-textfield\"\n    | \"meter\"\n    | \"none\"\n    | \"progress-bar\"\n    | \"progress-bar-value\"\n    | \"push-button\"\n    | \"radio\"\n    | \"searchfield\"\n    | \"searchfield-cancel-button\"\n    | \"searchfield-decoration\"\n    | \"searchfield-results-button\"\n    | \"searchfield-results-decoration\"\n    | \"slider-horizontal\"\n    | \"slider-vertical\"\n    | \"sliderthumb-horizontal\"\n    | \"sliderthumb-vertical\"\n    | \"square-button\"\n    | \"textarea\"\n    | \"textfield\";\n\n  export type WebkitBorderBefore = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type WebkitBorderBeforeColor = DataType.Color;\n\n  export type WebkitBorderBeforeStyle = DataType.LineStyle | OnlyString;\n\n  export type WebkitBorderBeforeWidth = DataType.LineWidth | OnlyString;\n\n  export type WebkitBoxReflect = \"above\" | \"below\" | \"left\" | \"right\" | OnlyStringNumeric;\n\n  export type WebkitLineClamp = \"none\" | OnlyNumber;\n\n  export type WebkitMask =\n    | DataType.Position\n    | DataType.RepeatStyle\n    | DataType.Box\n    | \"border\"\n    | \"content\"\n    | \"none\"\n    | \"padding\"\n    | \"text\"\n    | OnlyString;\n\n  export type WebkitMaskAttachment = DataType.Attachment | OnlyString;\n\n  export type WebkitMaskClip = DataType.Box | \"border\" | \"content\" | \"padding\" | \"text\" | OnlyString;\n\n  export type WebkitMaskComposite = DataType.CompositeStyle | OnlyString;\n\n  export type WebkitMaskImage = \"none\" | OnlyString;\n\n  export type WebkitMaskOrigin = DataType.Box | \"border\" | \"content\" | \"padding\" | OnlyString;\n\n  export type WebkitMaskPosition = DataType.Position | OnlyString;\n\n  export type WebkitMaskPositionX = \"center\" | \"left\" | \"right\" | OnlyStringNumeric;\n\n  export type WebkitMaskPositionY = \"bottom\" | \"center\" | \"top\" | OnlyStringNumeric;\n\n  export type WebkitMaskRepeat = DataType.RepeatStyle | OnlyString;\n\n  export type WebkitMaskRepeatX = \"no-repeat\" | \"repeat\" | \"round\" | \"space\";\n\n  export type WebkitMaskRepeatY = \"no-repeat\" | \"repeat\" | \"round\" | \"space\";\n\n  export type WebkitMaskSize = DataType.BgSize | OnlyString;\n\n  export type WebkitOverflowScrolling = \"auto\" | \"touch\";\n\n  export type WebkitTapHighlightColor = DataType.Color;\n\n  export type WebkitTextFillColor = DataType.Color;\n\n  export type WebkitTextStroke = DataType.Color | OnlyStringNumeric;\n\n  export type WebkitTextStrokeColor = DataType.Color;\n\n  export type WebkitTextStrokeWidth = number;\n\n  export type WebkitTouchCallout = \"default\" | \"none\";\n\n  export type WebkitUserModify = \"read-only\" | \"read-write\" | \"read-write-plaintext-only\";\n\n  export type AlignmentBaseline =\n    | \"after-edge\"\n    | \"alphabetic\"\n    | \"auto\"\n    | \"baseline\"\n    | \"before-edge\"\n    | \"central\"\n    | \"hanging\"\n    | \"ideographic\"\n    | \"mathematical\"\n    | \"middle\"\n    | \"text-after-edge\"\n    | \"text-before-edge\";\n\n  export type BaselineShift = \"baseline\" | \"sub\" | \"super\" | OnlyStringNumeric;\n\n  export type ClipRule = \"evenodd\" | \"nonzero\";\n\n  export type ColorInterpolation = \"auto\" | \"linearRGB\" | \"sRGB\";\n\n  export type ColorRendering = \"auto\" | \"optimizeQuality\" | \"optimizeSpeed\";\n\n  export type DominantBaseline =\n    | \"alphabetic\"\n    | \"auto\"\n    | \"central\"\n    | \"hanging\"\n    | \"ideographic\"\n    | \"mathematical\"\n    | \"middle\"\n    | \"no-change\"\n    | \"reset-size\"\n    | \"text-after-edge\"\n    | \"text-before-edge\"\n    | \"use-script\";\n\n  export type Fill = DataType.Paint;\n\n  export type FillOpacity = OnlyNumber;\n\n  export type FillRule = \"evenodd\" | \"nonzero\";\n\n  export type FloodColor = DataType.Color | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\";\n\n  export type FloodOpacity = OnlyNumber;\n\n  export type GlyphOrientationVertical = \"auto\" | OnlyStringNumeric;\n\n  export type LightingColor = DataType.Color | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\";\n\n  export type Marker = \"none\" | OnlyString;\n\n  export type MarkerEnd = \"none\" | OnlyString;\n\n  export type MarkerMid = \"none\" | OnlyString;\n\n  export type MarkerStart = \"none\" | OnlyString;\n\n  export type ShapeRendering = \"auto\" | \"crispEdges\" | \"geometricPrecision\" | \"optimizeSpeed\";\n\n  export type StopColor = DataType.Color | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\";\n\n  export type StopOpacity = OnlyNumber;\n\n  export type Stroke = DataType.Paint;\n\n  export type StrokeDasharray = DataType.Dasharray | \"none\";\n\n  export type StrokeDashoffset = OnlyStringNumeric;\n\n  export type StrokeLinecap = \"butt\" | \"round\" | \"square\";\n\n  export type StrokeLinejoin = \"bevel\" | \"miter\" | \"round\";\n\n  export type StrokeMiterlimit = OnlyNumber;\n\n  export type StrokeOpacity = OnlyNumber;\n\n  export type StrokeWidth = OnlyStringNumeric;\n\n  export type TextAnchor = \"end\" | \"middle\" | \"start\";\n\n  export type VectorEffect = \"non-scaling-stroke\" | \"none\";\n}\n\nexport namespace AtRule {\n  export interface CounterStyle {\n    additiveSymbols?: string;\n    fallback?: string;\n    negative?: string;\n    pad?: string;\n    prefix?: string;\n    range?: Range;\n    speakAs?: SpeakAs;\n    suffix?: string;\n    symbols?: string;\n    system?: System;\n  }\n\n  export interface CounterStyleHyphen {\n    \"additive-symbols\"?: string;\n    fallback?: string;\n    negative?: string;\n    pad?: string;\n    prefix?: string;\n    range?: Range;\n    \"speak-as\"?: SpeakAs;\n    suffix?: string;\n    symbols?: string;\n    system?: System;\n  }\n\n  export type CounterStyleFallback = {\n    [P in keyof CounterStyle]: CounterStyle[P] | CounterStyle[P][];\n  };\n\n  export type CounterStyleHyphenFallback = {\n    [P in keyof CounterStyleHyphen]: CounterStyleHyphen[P] | CounterStyleHyphen[P][];\n  };\n\n  export interface FontFace {\n    MozFontFeatureSettings?: FontFeatureSettings;\n    fontDisplay?: FontDisplay;\n    fontFamily?: string;\n    fontFeatureSettings?: FontFeatureSettings;\n    fontStretch?: FontStretch;\n    fontStyle?: FontStyle;\n    fontVariant?: FontVariant;\n    fontVariationSettings?: FontVariationSettings;\n    fontWeight?: FontWeight;\n    src?: string;\n    unicodeRange?: string;\n    sizeAdjust?: string;\n    ascentOverride?: string;\n    descentOverride?: string;\n    lineGapOverride?: string;\n    advanceOverride?: string;\n  }\n\n  export interface FontFaceHyphen {\n    \"font-display\"?: FontDisplay;\n    \"font-family\"?: string;\n    \"font-feature-settings\"?: FontFeatureSettings;\n    \"font-stretch\"?: FontStretch;\n    \"font-style\"?: FontStyle;\n    \"font-variant\"?: FontVariant;\n    \"font-variation-settings\"?: FontVariationSettings;\n    \"font-weight\"?: FontWeight;\n    src?: string;\n    \"unicode-range\"?: string;\n    \"size-adjust\"?: string;\n    \"ascent-override\"?: string;\n    \"descent-override\"?: string;\n    \"line-gap-override\"?: string;\n    \"advance-override\"?: string;\n  }\n\n  export type FontFaceFallback = {\n    [P in keyof FontFace]: FontFace[P] | FontFace[P][];\n  };\n\n  export type FontFaceHyphenFallback = {\n    [P in keyof FontFaceHyphen]: FontFaceHyphen[P] | FontFaceHyphen[P][];\n  };\n\n  export interface Page {\n    size?: Size;\n  }\n\n  export interface PageHyphen {\n    size?: Size;\n  }\n\n  export type PageFallback = {\n    [P in keyof Page]: Page[P] | Page[P][];\n  };\n\n  export type PageHyphenFallback = {\n    [P in keyof PageHyphen]: PageHyphen[P] | PageHyphen[P][];\n  };\n\n  export interface Property {\n    inherits?: Inherits;\n    initialValue?: boolean | OnlyStringNumeric\n    syntax?: string;\n  }\n\n  export interface PropertyHyphen {\n    inherits?: Inherits;\n    \"initial-value\"?: string;\n    syntax?: string;\n  }\n\n  export type PropertyFallback = {\n    [P in keyof Property]: Property[P] | Property[P][];\n  };\n\n  export type PropertyHyphenFallback = {\n    [P in keyof PropertyHyphen]: PropertyHyphen[P] | PropertyHyphen[P][];\n  };\n\n  export interface Viewport {\n    height?: Height;\n    maxHeight?: MaxHeight;\n    maxWidth?: MaxWidth;\n    maxZoom?: MaxZoom;\n    minHeight?: MinHeight;\n    minWidth?: MinWidth;\n    minZoom?: MinZoom;\n    orientation?: Orientation;\n    userZoom?: UserZoom;\n    viewportFit?: ViewportFit;\n    width?: Width;\n    zoom?: Zoom;\n  }\n\n  export interface ViewportHyphen {\n    height?: Height;\n    \"max-height\"?: MaxHeight;\n    \"max-width\"?: MaxWidth;\n    \"max-zoom\"?: MaxZoom;\n    \"min-height\"?: MinHeight;\n    \"min-width\"?: MinWidth;\n    \"min-zoom\"?: MinZoom;\n    orientation?: Orientation;\n    \"user-zoom\"?: UserZoom;\n    \"viewport-fit\"?: ViewportFit;\n    width?: Width;\n    zoom?: Zoom;\n  }\n\n  export type ViewportFallback = {\n    [P in keyof Viewport]: Viewport[P] | Viewport[P][];\n  };\n\n  export type ViewportHyphenFallback = {\n    [P in keyof ViewportHyphen]: ViewportHyphen[P] | ViewportHyphen[P][];\n  };\n\n  type Range = \"auto\" | \"infinite\" | OnlyStringNumeric;\n\n  type SpeakAs = \"auto\" | \"bullets\" | \"numbers\" | \"spell-out\" | \"words\" | OnlyString;\n\n  type System = \"additive\" | \"alphabetic\" | \"cyclic\" | \"fixed\" | \"numeric\" | \"symbolic\" | OnlyString;\n\n  type FontFeatureSettings = \"normal\" | OnlyString;\n\n  type FontDisplay = \"auto\" | \"block\" | \"fallback\" | \"optional\" | \"swap\";\n\n  type FontStretch = DataType.FontStretchAbsolute | OnlyString;\n\n  type FontStyle = \"italic\" | \"normal\" | \"oblique\" | OnlyString;\n\n  type FontVariant =\n    | DataType.EastAsianVariantValues\n    | \"all-petite-caps\"\n    | \"all-small-caps\"\n    | \"common-ligatures\"\n    | \"contextual\"\n    | \"diagonal-fractions\"\n    | \"discretionary-ligatures\"\n    | \"full-width\"\n    | \"historical-forms\"\n    | \"historical-ligatures\"\n    | \"lining-nums\"\n    | \"no-common-ligatures\"\n    | \"no-contextual\"\n    | \"no-discretionary-ligatures\"\n    | \"no-historical-ligatures\"\n    | \"none\"\n    | \"normal\"\n    | \"oldstyle-nums\"\n    | \"ordinal\"\n    | \"petite-caps\"\n    | \"proportional-nums\"\n    | \"proportional-width\"\n    | \"ruby\"\n    | \"slashed-zero\"\n    | \"small-caps\"\n    | \"stacked-fractions\"\n    | \"tabular-nums\"\n    | \"titling-caps\"\n    | \"unicase\"\n    | OnlyString;\n\n  type FontVariationSettings = \"normal\" | OnlyString;\n\n  type FontWeight = DataType.FontWeightAbsolute;\n\n  type Size = DataType.PageSize | \"auto\" | \"landscape\" | \"portrait\" | OnlyStringNumeric;\n\n  type Inherits = \"false\" | \"true\" | boolean;\n\n  type Height = DataType.ViewportLength | OnlyString;\n\n  type MaxHeight = DataType.ViewportLength;\n\n  type MaxWidth = DataType.ViewportLength;\n\n  type MaxZoom = \"auto\" | OnlyStringNumeric;\n\n  type MinHeight = DataType.ViewportLength;\n\n  type MinWidth = DataType.ViewportLength;\n\n  type MinZoom = \"auto\" | OnlyStringNumeric;\n\n  type Orientation = \"auto\" | \"landscape\" | \"portrait\";\n\n  type UserZoom = \"fixed\" | \"zoom\";\n\n  type ViewportFit = \"auto\" | \"contain\" | \"cover\";\n\n  type Width = DataType.ViewportLength | OnlyString;\n\n  type Zoom = \"auto\" | OnlyStringNumeric;\n}\n\ndeclare namespace DataType {\n  type AbsoluteSize = \"large\" | \"medium\" | \"small\" | \"x-large\" | \"x-small\" | \"xx-large\" | \"xx-small\" | \"xxx-large\";\n\n  type AnimateableFeature = \"contents\" | \"scroll-position\" | OnlyString;\n\n  type Attachment = \"fixed\" | \"local\" | \"scroll\";\n\n  type BgPosition = \"bottom\" | \"center\" | \"left\" | \"right\" | \"top\" | OnlyStringNumeric;\n\n  type BgSize = \"auto\" | \"contain\" | \"cover\" | OnlyStringNumeric;\n\n  type BlendMode =\n    | \"color\"\n    | \"color-burn\"\n    | \"color-dodge\"\n    | \"darken\"\n    | \"difference\"\n    | \"exclusion\"\n    | \"hard-light\"\n    | \"hue\"\n    | \"lighten\"\n    | \"luminosity\"\n    | \"multiply\"\n    | \"normal\"\n    | \"overlay\"\n    | \"saturation\"\n    | \"screen\"\n    | \"soft-light\";\n\n  type Box = \"border-box\" | \"content-box\" | \"padding-box\";\n\n  type Color = NamedColor | SystemColor | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\" | OnlyString;\n\n  type CompatAuto =\n    | \"button\"\n    | \"checkbox\"\n    | \"listbox\"\n    | \"menulist\"\n    | \"meter\"\n    | \"progress-bar\"\n    | \"push-button\"\n    | \"radio\"\n    | \"searchfield\"\n    | \"slider-horizontal\"\n    | \"square-button\"\n    | \"textarea\";\n\n  type CompositeStyle =\n    | \"clear\"\n    | \"copy\"\n    | \"destination-atop\"\n    | \"destination-in\"\n    | \"destination-out\"\n    | \"destination-over\"\n    | \"source-atop\"\n    | \"source-in\"\n    | \"source-out\"\n    | \"source-over\"\n    | \"xor\";\n\n  type CompositingOperator = \"add\" | \"exclude\" | \"intersect\" | \"subtract\";\n\n  type ContentDistribution = \"space-around\" | \"space-between\" | \"space-evenly\" | \"stretch\";\n\n  type ContentList = Quote | \"contents\" | OnlyString;\n\n  type ContentPosition = \"center\" | \"end\" | \"flex-end\" | \"flex-start\" | \"start\";\n\n  type CubicBezierTimingFunction = \"ease\" | \"ease-in\" | \"ease-in-out\" | \"ease-out\" | OnlyString;\n\n  type Dasharray = OnlyStringNumeric;\n\n  type SystemColor = \"ActiveText\" | \"ButtonFace\" | \"ButtonText\" | \"ButtonBorder\" | \"Canvas\" | \"CanvasText\" | \"Field\" | \"FieldText\" | \"GrayText\" | \"Highlight\" | \"HighlightText\" | \"LinkText\" | \"Mark\" | \"MarkText\" | \"VisitedText\"\n\n  type DisplayInside = \"flex\" | \"flow\" | \"flow-root\" | \"grid\" | \"ruby\" | \"table\";\n\n  type DisplayInternal =\n    | \"ruby-base\"\n    | \"ruby-base-container\"\n    | \"ruby-text\"\n    | \"ruby-text-container\"\n    | \"table-caption\"\n    | \"table-cell\"\n    | \"table-column\"\n    | \"table-column-group\"\n    | \"table-footer-group\"\n    | \"table-header-group\"\n    | \"table-row\"\n    | \"table-row-group\";\n\n  type DisplayLegacy = \"inline-block\" | \"inline-flex\" | \"inline-grid\" | \"inline-list-item\" | \"inline-table\";\n\n  type DisplayOutside = \"block\" | \"inline\" | \"run-in\";\n\n  type EasingFunction = CubicBezierTimingFunction | StepTimingFunction | \"linear\";\n\n  type EastAsianVariantValues = \"jis04\" | \"jis78\" | \"jis83\" | \"jis90\" | \"simplified\" | \"traditional\";\n\n  type FinalBgLayer = Color | BgPosition | RepeatStyle | Attachment | Box | \"none\" | OnlyString;\n\n  type FontStretchAbsolute =\n    | \"condensed\"\n    | \"expanded\"\n    | \"extra-condensed\"\n    | \"extra-expanded\"\n    | \"normal\"\n    | \"semi-condensed\"\n    | \"semi-expanded\"\n    | \"ultra-condensed\"\n    | \"ultra-expanded\"\n    | OnlyString;\n\n  type FontWeightAbsolute = \"bold\" | \"normal\" | OnlyStringNumeric;\n\n  type GenericFamily = \"cursive\" | \"emoji\" | \"fangsong\" | \"fantasy\" | \"math\" | \"monospace\" | \"sans-serif\" | \"serif\" | \"system-ui\" | \"ui-monospace\" | \"ui-rounded\" | \"ui-sans-serif\" | \"ui-serif\";\n\n  type GeometryBox = Box | \"fill-box\" | \"margin-box\" | \"stroke-box\" | \"view-box\";\n\n  type GridLine = \"auto\" | OnlyStringNumeric;\n\n  type LineStyle = \"dashed\" | \"dotted\" | \"double\" | \"groove\" | \"hidden\" | \"inset\" | \"none\" | \"outset\" | \"ridge\" | \"solid\";\n\n  type LineWidth = number | \"medium\" | \"thick\" | \"thin\";\n\n  type MaskLayer = Position | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | \"no-clip\" | \"none\" | OnlyString;\n\n  type MaskingMode = \"alpha\" | \"luminance\" | \"match-source\";\n\n  type NamedColor =\n    | \"AliceBlue\"\n    | \"AntiqueWhite\"\n    | \"Aqua\"\n    | \"Aquamarine\"\n    | \"Azure\"\n    | \"Beige\"\n    | \"Bisque\"\n    | \"Black\"\n    | \"BlanchedAlmond\"\n    | \"Blue\"\n    | \"BlueViolet\"\n    | \"Brown\"\n    | \"BurlyWood\"\n    | \"CadetBlue\"\n    | \"Chartreuse\"\n    | \"Chocolate\"\n    | \"Coral\"\n    | \"CornflowerBlue\"\n    | \"Cornsilk\"\n    | \"Crimson\"\n    | \"Cyan\"\n    | \"DarkBlue\"\n    | \"DarkCyan\"\n    | \"DarkGoldenRod\"\n    | \"DarkGray\"\n    | \"DarkGreen\"\n    | \"DarkGrey\"\n    | \"DarkKhaki\"\n    | \"DarkMagenta\"\n    | \"DarkOliveGreen\"\n    | \"DarkOrange\"\n    | \"DarkOrchid\"\n    | \"DarkRed\"\n    | \"DarkSalmon\"\n    | \"DarkSeaGreen\"\n    | \"DarkSlateBlue\"\n    | \"DarkSlateGray\"\n    | \"DarkSlateGrey\"\n    | \"DarkTurquoise\"\n    | \"DarkViolet\"\n    | \"DeepPink\"\n    | \"DeepSkyBlue\"\n    | \"DimGray\"\n    | \"DimGrey\"\n    | \"DodgerBlue\"\n    | \"FireBrick\"\n    | \"FloralWhite\"\n    | \"ForestGreen\"\n    | \"Fuchsia\"\n    | \"Gainsboro\"\n    | \"GhostWhite\"\n    | \"Gold\"\n    | \"GoldenRod\"\n    | \"Gray\"\n    | \"Green\"\n    | \"GreenYellow\"\n    | \"Grey\"\n    | \"HoneyDew\"\n    | \"HotPink\"\n    | \"IndianRed\"\n    | \"Indigo\"\n    | \"Ivory\"\n    | \"Khaki\"\n    | \"Lavender\"\n    | \"LavenderBlush\"\n    | \"LawnGreen\"\n    | \"LemonChiffon\"\n    | \"LightBlue\"\n    | \"LightCoral\"\n    | \"LightCyan\"\n    | \"LightGoldenRodYellow\"\n    | \"LightGray\"\n    | \"LightGreen\"\n    | \"LightGrey\"\n    | \"LightPink\"\n    | \"LightSalmon\"\n    | \"LightSeaGreen\"\n    | \"LightSkyBlue\"\n    | \"LightSlateGray\"\n    | \"LightSlateGrey\"\n    | \"LightSteelBlue\"\n    | \"LightYellow\"\n    | \"Lime\"\n    | \"LimeGreen\"\n    | \"Linen\"\n    | \"Magenta\"\n    | \"Maroon\"\n    | \"MediumAquaMarine\"\n    | \"MediumBlue\"\n    | \"MediumOrchid\"\n    | \"MediumPurple\"\n    | \"MediumSeaGreen\"\n    | \"MediumSlateBlue\"\n    | \"MediumSpringGreen\"\n    | \"MediumTurquoise\"\n    | \"MediumVioletRed\"\n    | \"MidnightBlue\"\n    | \"MintCream\"\n    | \"MistyRose\"\n    | \"Moccasin\"\n    | \"NavajoWhite\"\n    | \"Navy\"\n    | \"OldLace\"\n    | \"Olive\"\n    | \"OliveDrab\"\n    | \"Orange\"\n    | \"OrangeRed\"\n    | \"Orchid\"\n    | \"PaleGoldenRod\"\n    | \"PaleGreen\"\n    | \"PaleTurquoise\"\n    | \"PaleVioletRed\"\n    | \"PapayaWhip\"\n    | \"PeachPuff\"\n    | \"Peru\"\n    | \"Pink\"\n    | \"Plum\"\n    | \"PowderBlue\"\n    | \"Purple\"\n    | \"RebeccaPurple\"\n    | \"Red\"\n    | \"RosyBrown\"\n    | \"RoyalBlue\"\n    | \"SaddleBrown\"\n    | \"Salmon\"\n    | \"SandyBrown\"\n    | \"SeaGreen\"\n    | \"SeaShell\"\n    | \"Sienna\"\n    | \"Silver\"\n    | \"SkyBlue\"\n    | \"SlateBlue\"\n    | \"SlateGray\"\n    | \"SlateGrey\"\n    | \"Snow\"\n    | \"SpringGreen\"\n    | \"SteelBlue\"\n    | \"Tan\"\n    | \"Teal\"\n    | \"Thistle\"\n    | \"Tomato\"\n    | \"transparent\"\n    | \"Turquoise\"\n    | \"Violet\"\n    | \"Wheat\"\n    | \"White\"\n    | \"WhiteSmoke\"\n    | \"Yellow\"\n    | \"YellowGreen\";\n\n  type PageSize = \"A3\" | \"A4\" | \"A5\" | \"B4\" | \"B5\" | \"JIS-B4\" | \"JIS-B5\" | \"ledger\" | \"legal\" | \"letter\";\n\n  type Paint = Color | \"child\" | \"context-fill\" | \"context-stroke\" | \"none\" | OnlyString;\n\n  type Position = \"bottom\" | \"center\" | \"left\" | \"right\" | \"top\" | OnlyStringNumeric;\n\n  type Quote = \"close-quote\" | \"no-close-quote\" | \"no-open-quote\" | \"open-quote\";\n\n  type RepeatStyle = \"no-repeat\" | \"repeat\" | \"repeat-x\" | \"repeat-y\" | \"round\" | \"space\" | OnlyString;\n\n  type SelfPosition = \"center\" | \"end\" | \"flex-end\" | \"flex-start\" | \"self-end\" | \"self-start\" | \"start\";\n\n  type SingleAnimation =\n    | EasingFunction\n    | SingleAnimationDirection\n    | SingleAnimationFillMode\n    | \"infinite\"\n    | \"none\"\n    | \"paused\"\n    | \"running\"\n    | OnlyString\n    | OnlyNumber;\n\n  type SingleAnimationDirection = \"alternate\" | \"alternate-reverse\" | \"normal\" | \"reverse\";\n\n  type SingleAnimationFillMode = \"backwards\" | \"both\" | \"forwards\" | \"none\";\n\n  type SingleTransition = EasingFunction  | \"all\" | \"none\" | OnlyString;\n\n  type StepTimingFunction = \"step-end\" | \"step-start\" | OnlyString;\n\n  type TrackBreadth = \"auto\" | \"max-content\" | \"min-content\" | OnlyStringNumeric;\n\n  type ViewportLength = \"auto\" | OnlyStringNumeric;\n\n  type VisualBox = \"border-box\" | \"content-box\" | \"padding-box\";\n}\n"
  },
  {
    "path": "packages/core/types/index.d.ts",
    "content": "import type Stitches from './stitches.js'\n\nimport type * as Config from './config.js'\nimport type * as CSSUtil from './css-util.js'\nimport type * as StyledComponent from './styled-component.js'\n\nexport { $$PropertyValue, $$ScaleValue, $$ThemeValue} from './css-util.js'\nexport type CreateStitches = Config.CreateStitches\nexport type CSSProperties = CSSUtil.CSSProperties\nexport type DefaultThemeMap = Config.DefaultThemeMap\nexport type FontFace = CSSUtil.Native.AtRule.FontFace\n\n/** Returns a Style interface from a configuration, leveraging the given media and style map. */\nexport type CSS<\n\tConfig extends {\n\t\tmedia?: {}\n\t\ttheme?: {}\n\t\tthemeMap?: {}\n\t\tutils?: {}\n\t} = {\n\t\tmedia: {},\n\t\ttheme: {},\n\t\tthemeMap: {},\n\t\tutils: {}\n\t}\n> = CSSUtil.CSS<\n\tConfig['media'],\n\tConfig['theme'],\n\tConfig['themeMap'],\n\tConfig['utils']\n>\n\n/** Returns the properties, attributes, and children expected by a component. */\nexport type ComponentProps<Component> = Component extends ((...args: any[]) => any) ? Parameters<Component>[0] : never\n\n/** Returns a type that expects a value to be a kind of CSS property value. */\nexport type PropertyValue<Property extends keyof CSSUtil.CSSProperties, Config = null> = (\n\tConfig extends null\n\t\t? CSSUtil.WithPropertyValue<Property>\n\t: Config extends { [K: string]: any }\n\t\t? CSSUtil.CSS<\n\t\t\tConfig['media'],\n\t\t\tConfig['theme'],\n\t\t\tConfig['themeMap'],\n\t\t\tConfig['utils']\n\t\t>[Property]\n\t: never\n)\n\n/** Returns a type that expects a value to be a kind of theme scale value. */\nexport type ScaleValue<Scale, Config = null> = (\n\tConfig extends null\n\t\t? CSSUtil.WithScaleValue<Scale>\n\t: Config extends { [K: string]: any }\n\t\t? Scale extends keyof Config['theme']\n\t\t\t? `$${string & keyof Config['theme'][Scale]}`\n\t\t: never\n\t: never\n)\n\n/** Returns a type that suggests variants from a component as possible prop values. */\nexport type VariantProps<Component extends {[key: symbol | string]: any}> = StyledComponent.TransformProps<Component[StyledComponent.$$StyledComponentProps], Component[StyledComponent.$$StyledComponentMedia]>\n\n/** Map of CSS properties to token scales. */\nexport declare const defaultThemeMap: DefaultThemeMap\n\n/** Returns a library used to create styles. */\nexport declare const createStitches: CreateStitches\n\n/** Returns an object representing a theme. */\nexport declare const createTheme: Stitches['createTheme']\n\n/** Returns a function that applies globalCss styles. */\nexport declare const globalCss: Stitches['globalCss']\n\n/** Returns an object that applies `@keyframes` styles. */\nexport declare const keyframes: Stitches['keyframes']\n\n/** Returns a function that applies styles and variants for a specific class. */\nexport declare const css: Stitches['css']\n"
  },
  {
    "path": "packages/core/types/stitches.d.ts",
    "content": "import type * as CSSUtil from './css-util.js'\nimport type * as StyledComponent from './styled-component.js'\nimport type * as ThemeUtil from './theme.js'\nimport type * as Util from './util.js'\n\n/** Remove an index signature from a type */\nexport type RemoveIndex<T> = {[k in keyof T as string extends k ? never : number extends k ? never : k]: T[k]}\n\nexport interface CssFunctionType<Media extends {} = {}, Theme extends {} = {}, ThemeMap extends {} = {}, Utils extends {} = {}> {\n\t<Composers extends (string | Util.Function | {\n\t\t[name: string]: unknown\n\t})[], CSS = CSSUtil.CSS<Media, Theme, ThemeMap, Utils>>(...composers: {\n\t\t[K in keyof Composers]: (\n\t\t\t// Strings and Functions can be skipped over\n\t\t\tstring extends Composers[K] ? Composers[K] : Composers[K] extends string | Util.Function ? Composers[K] : RemoveIndex<CSS> & {\n\t\t\t\t/** The **variants** property lets you set a subclass of styles based on a key-value pair.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants)\n\t\t\t\t */\n\t\t\t\tvariants?: {\n\t\t\t\t\t[Name in string]: {\n\t\t\t\t\t\t[Pair in number | string]: CSS\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t/** The **compoundVariants** property lets you to set a subclass of styles based on a combination of active variants.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants#compound-variants)\n\t\t\t\t */\n\t\t\t\tcompoundVariants?: (('variants' extends keyof Composers[K] ? {\n\t\t\t\t\t[Name in keyof Composers[K]['variants']]?: Util.Widen<keyof Composers[K]['variants'][Name]> | Util.String\n\t\t\t\t} : Util.WideObject) & {\n\t\t\t\t\tcss: CSS\n\t\t\t\t})[]\n\t\t\t\t/** The **defaultVariants** property allows you to predefine the active key-value pairs of variants.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants#default-variants)\n\t\t\t\t */\n\t\t\t\tdefaultVariants?: ('variants' extends keyof Composers[K] ? {\n\t\t\t\t\t[Name in keyof Composers[K]['variants']]?: Util.Widen<keyof Composers[K]['variants'][Name]> | Util.String\n\t\t\t\t} : Util.WideObject)\n\t\t\t} & CSS & {\n\t\t\t\t[K2 in keyof Composers[K]]: K2 extends 'compoundVariants' | 'defaultVariants' | 'variants' ? unknown : K2 extends keyof CSS ? CSS[K2] : unknown\n\t\t\t})\n\t}): StyledComponent.CssComponent<StyledComponent.StyledComponentType<Composers>, StyledComponent.StyledComponentProps<Composers>, Media, CSS>\n}\n\n/** Stitches interface. */\nexport default interface Stitches<\n\tPrefix extends string = '',\n\tMedia extends {} = {},\n\tTheme extends {} = {},\n\tThemeMap extends {} = {},\n\tUtils extends {} = {}\n> {\n\tconfig: {\n\t\tprefix: Prefix\n\t\tmedia: Media\n\t\ttheme: Theme\n\t\tthemeMap: ThemeMap\n\t\tutils: Utils\n\t},\n\tprefix: Prefix\n\t/** The **prefix** property defined.\n\t *\n\t * [Read Documentation](https://stitches.dev/docs/variants)\n\t */\n\tglobalCss: {\n\t\t<Styles extends { [K: string]: any }>(\n\t\t\t...styles: (\n\t\t\t\t{\n\t\t\t\t\t/** The **@import** CSS at-rule imports style rules from other style sheets. */\n\t\t\t\t\t'@import'?: unknown\n\n\t\t\t\t\t/** The **@font-face** CSS at-rule specifies a custom font with which to display text. */\n\t\t\t\t\t'@font-face'?: unknown\n\t\t\t\t}\n\t\t\t\t& {\n\t\t\t\t\t[K in keyof Styles]: (\n\t\t\t\t\t\tK extends '@import'\n\t\t\t\t\t\t\t? string | string[]\n\t\t\t\t\t\t: K extends '@font-face'\n\t\t\t\t\t\t\t? CSSUtil.Native.AtRule.FontFace | Array<CSSUtil.Native.AtRule.FontFace>\n\t\t\t\t\t\t: K extends `@keyframes ${string}`\n\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t[KeyFrame in string]: CSSUtil.CSS<Media, Theme, ThemeMap, Utils>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t: K extends `@property ${string}`\n\t\t\t\t\t\t\t? CSSUtil.Native.AtRule.Property\n\t\t\t\t\t\t: CSSUtil.CSS<Media, Theme, ThemeMap, Utils>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t)[]\n\t\t): {\n\t\t\t(): string\n\t\t}\n\t},\n\tkeyframes: {\n\t\t(style: {\n\t\t\t[offset: string]: CSSUtil.CSS<Media, Theme, ThemeMap, Utils>\n\t\t}): {\n\t\t\t(): string\n\t\t\tname: string\n\t\t}\n\t},\n\tcreateTheme: {\n\t\t<\n\t\t\tArgument0 extends (\n\t\t\t\t| string\n\t\t\t\t| (\n\t\t\t\t\t{\n\t\t\t\t\t\t[Scale in keyof Theme]?: {\n\t\t\t\t\t\t\t[Token in keyof Theme[Scale]]?: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t} & {\n\t\t\t\t\t\t[scale in string]: {\n\t\t\t\t\t\t\t[token in number | string]: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t)\n\t\t\t),\n\t\t\tArgument1 extends (\n\t\t\t\t| string\n\t\t\t\t| (\n\t\t\t\t\t{\n\t\t\t\t\t\t[Scale in keyof Theme]?: {\n\t\t\t\t\t\t\t[Token in keyof Theme[Scale]]?: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t} & {\n\t\t\t\t\t\t[scale in string]: {\n\t\t\t\t\t\t\t[token in number | string]: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t)\n\t\t\t)\n\t\t>(\n\t\t\tnameOrScalesArg0: Argument0,\n\t\t\tnameOrScalesArg1?: Argument1\n\t\t):\n\t\t\t& string\n\t\t\t& {\n\t\t\t\tclassName: string\n\t\t\t\tselector: string\n\t\t\t}\n\t\t\t& (\n\t\t\t\tArgument0 extends string\n\t\t\t\t\t? ThemeTokens<Argument1, Prefix>\n\t\t\t\t\t: ThemeTokens<Argument0, Prefix>\n\t\t\t)\n\t}\n\ttheme:\n\t\tstring\n\t\t& {\n\t\t\tclassName: string\n\t\t\tselector: string\n\t\t}\n\t\t& {\n\t\t\t[Scale in keyof Theme]: {\n\t\t\t\t[Token in keyof Theme[Scale]]: ThemeUtil.Token<\n\t\t\t\t\tExtract<Token, string | number>,\n\t\t\t\t\tstring,\n\t\t\t\t\tExtract<Scale, string | void>,\n\t\t\t\t\tExtract<Prefix, string | void>\n\t\t\t\t>\n\t\t\t}\n\t\t}\n\treset: {\n\t\t(): void\n\t}\n\tgetCssText: {\n\t\t(): string\n\t}\n  css: {\n    withConfig: (config: {\n      componentId?: string\n      displayName?: string\n      shouldForwardStitchesProp?: (prop: 'css' | (string & {})) => boolean | void\n    }) => CssFunctionType<Media, Theme, ThemeMap, Utils>\n  } & CssFunctionType<Media, Theme, ThemeMap, Utils>\n}\n\ntype ThemeTokens<Values, Prefix> = {\n\t[Scale in keyof Values]: {\n\t\t[Token in keyof Values[Scale]]: ThemeUtil.Token<\n\t\t\tExtract<Token, number | string>,\n\t\t\tValues[Scale][Token] & (string | number),\n\t\t\tExtract<Scale, string | void>,\n\t\t\tExtract<Prefix, string | void>\n\t\t>\n\t}\n}\n"
  },
  {
    "path": "packages/core/types/styled-component.d.ts",
    "content": "import type * as Util from './util.js'\n\n/** Returns a new CSS Component. */\nexport interface CssComponent<\n\tType = 'span',\n\tProps = {},\n\tMedia = {},\n\tCSS = {}\n> {\n\t(\n\t\tprops?:\n\t\t\t& TransformProps<Props, Media>\n\t\t\t& {\n\t\t\t\tcss?: CSS\n\t\t\t}\n\t\t\t& {\n\t\t\t\t[name in number | string]: any\n\t\t\t}\n\t): string & {\n\t\tclassName: string\n\t\tselector: string\n\t\tprops: {}\n\t}\n\n\tclassName: string\n\tselector: string\n\n\t[$$StyledComponentType]: Type\n\t[$$StyledComponentProps]: Props\n\t[$$StyledComponentMedia]: Media\n}\n\nexport type TransformProps<Props, Media> = {\n\t[K in keyof Props]: (\n\t\t| Props[K]\n\t\t| (\n\t\t\t& {\n\t\t\t\t[KMedia in Util.Prefixed<'@', 'initial' | keyof Media>]?: Props[K]\n\t\t\t}\n\t\t\t& {\n\t\t\t\t[KMedia in string]: Props[K]\n\t\t\t}\n\t\t)\n\t)\n}\n\n/** Unique symbol used to reference the type of a Styled Component. */\nexport declare const $$StyledComponentType: unique symbol\n\n/** Unique symbol used to reference the type of a Styled Component. */\nexport type $$StyledComponentType = typeof $$StyledComponentType\n\n/** Unique symbol used to reference the props of a Styled Component. */\nexport declare const $$StyledComponentProps: unique symbol\n\n/** Unique symbol used to reference the props of a Styled Component. */\nexport type $$StyledComponentProps = typeof $$StyledComponentProps\n\n/** Unique symbol used to reference the media passed into a Styled Component. */\nexport declare const $$StyledComponentMedia: unique symbol\n\n/** Unique symbol used to reference the media passed into a Styled Component. */\nexport type $$StyledComponentMedia = typeof $$StyledComponentMedia\n\n/** Returns the first Styled Component type from the given array of compositions. */\nexport type StyledComponentType<T extends any[]> = (\n\tT[0] extends never\n\t\t? 'span'\n\t: T[0] extends string\n\t\t? T[0]\n\t: T[0] extends (props: any) => any\n\t\t? T[0]\n\t: T[0] extends { [$$StyledComponentType]: unknown }\n\t\t? T[0][$$StyledComponentType]\n\t: T extends [lead: any, ...tail: infer V]\n\t\t? StyledComponentType<V>\n\t: never\n)\n\n/** Returns the cumulative variants from the given array of compositions. */\nexport type StyledComponentProps<T extends any[]> = (\n\t& (\n\t\t$$StyledComponentProps extends keyof T[0]\n\t\t\t? T[0][$$StyledComponentProps]\n\t\t: T[0] extends { variants: { [name: string]: unknown } }\n\t\t\t? {\n\t\t\t\t[K in keyof T[0]['variants']]?: Util.Widen<keyof T[0]['variants'][K]>\n\t\t\t}\n\t\t: {}\n\t)\n\t& (\n\t\tT extends [lead: any, ...tail: infer V]\n\t\t\t? StyledComponentProps<V>\n\t\t: {}\n\t)\n)\n"
  },
  {
    "path": "packages/core/types/theme.d.ts",
    "content": "export interface ScaleValue {\n\ttoken: number | string\n\tvalue: number | string\n\tscale: string\n\tprefix: string\n}\n\nexport interface Token<\n\t/** Token name. */\n\tNameType extends number | string = string,\n\n\t/** Token value. */\n\tValueType extends number | string = string,\n\n\t/** Token scale. */\n\tScaleType extends string | void = void,\n\n\t/** Token prefix. */\n\tPrefixType extends string | void = void,\n> extends ScaleValue {\n\tnew (name: NameType, value: ValueType, scale?: ScaleType, prefix?: PrefixType): this\n\n\t/** Name of the token. */\n\ttoken: NameType\n\n\t/** Value of the token. */\n\tvalue: ValueType\n\n\t/** Category of interface the token applies to. */\n\tscale: ScaleType extends string ? ScaleType : ''\n\n\t/** Prefix added before the serialized custom property. */\n\tprefix: PrefixType extends string ? PrefixType : ''\n\n\t/** Serialized custom property representing the token. */\n\tvariable: `--${this['prefix'] extends '' ? '' : `${this['prefix']}-`}${this['scale'] extends '' ? '' : `${this['scale']}-`}${this['token']}`\n\n\t/** Serialized CSS var() representing the token. */\n\tcomputedValue: `var(${this['variable']})`\n\n\t/** Returns a serialized CSS var() representing the token. */\n\ttoString(): this['computedValue']\n}\n"
  },
  {
    "path": "packages/core/types/util.d.ts",
    "content": "/* Utilities */\n/* ========================================================================== */\n\n/** Returns a string with the given prefix followed by the given values. */\nexport type Prefixed<K extends string, T> = `${K}${Extract<T, boolean | number | string>}`\n\n/** Returns an object from the given object assigned with the values of another given object. */\nexport type Assign<T1 = {}, T2 = {}> = Omit<T1, keyof T2> & T2\n\n/** Returns a widened value from the given value. */\nexport type Widen<T> =\n\tT extends number\n\t\t? `${T}` | T\n\t: T extends 'true'\n\t\t? boolean | T\n\t: T extends 'false'\n\t\t? boolean | T\n\t: T extends `${number}`\n\t\t? number | T\n\t: T\n\n/** Narrowed string. */\nexport type String = string & Record<never, never>\n\n/** Narrowed number or string. */\nexport type Index = (number | string) & Record<never, never>\n\n/** Narrowed function. */\nexport type Function = (...args: any[]) => unknown\n\n/** Widened object. */\nexport type WideObject = { [name in number | string]: boolean | number | string | undefined | WideObject }\n"
  },
  {
    "path": "packages/react/README.md",
    "content": "# @stitches/react\n\n**@stitches/react** is a react implementation of [stitches](https://stitches.dev), a CSS-in-JS library with a best-in-class developer experience.\n\n<p><br /></p>\n\n```sh\n# with npm\nnpm install @stitches/react\n\n# with yarn\nyarn add @stitches/react\n```\n\n<p><br /></p>\n\n<a href=\"https://codepen.io/embed/prefill?editable=true&default-tab=js%2Cresult&data=%7B%22js%22%3A%22import+%7B+styled+%7D+from+%27https%3A%2F%2Fcdn.skypack.dev%2F%40stitches%2Freact%27%3B%5Cn%5Cn%2F%2F+add+your+code+here%21%5Cn%2F%2F+see+https%3A%2F%2Fstitches.dev+for+documentation%22%7D\"><img src=\"https://img.shields.io/badge/-open_in_codepen-2b354f?logo=codepen&style=flat-square\" alt=\"open in codepen\" valign=\"middle\" align=\"right\"></a>\n\n<br />\n\n```html\n<script type=\"module\">\n\nimport { styled } from 'https://cdn.skypack.dev/@stitches/react'\n\n</script>\n```\n\n<p><br /></p>\n\n<a href=\"https://codepen.io/embed/prefill?editable=true&default-tab=js%2Cresult&data=%7B%22js%22%3A%22const+%7B+styled+%7D+%3D+stitches%5Cn%5Cn%2F%2F+add+your+code+here%21%5Cn%2F%2F+see+https%3A%2F%2Fstitches.dev+for+documentation%22%2C%22js_external%22%3A%22https%3A%2F%2Funpkg.com%2Freact%2Fumd%2Freact.development.js%3Bhttps%3A%2F%2Funpkg.com%2Freact-dom%2Fumd%2Freact-dom.development.js%3Bhttps%3A%2F%2Funpkg.com%2F%40stitches%2Freact%2Fdist%2Findex.global.js%22%7D\"><img src=\"https://img.shields.io/badge/-open_in_codepen-2b354f?logo=codepen&style=flat-square\" alt=\"open in codepen\" valign=\"middle\" align=\"right\"></a>\n\n<br />\n\n```js\n<script src=\"https://unpkg.com/@stitches/react/dist/index.global.js\"></script>\n<script>\n\nconst { styled } = stitches\n\n</script>\n```\n\n<p><br /></p>\n\n## Documentation\n\nFor full documentation, visit [stitches.dev](https://stitches.dev).\n\n## Contributing\n\nPlease follow our [contributing guidelines](https://github.com/stitchesjs/stitches/blob/canary/CONTRIBUTING.md).\n\n## Authors\n\n- Pedro Duarte ([@peduarte](https://twitter.com/peduarte))\n- Jonathan Neal ([@jon_neal](https://twitter.com/jon_neal))\n- Abdulhadi Alhallak ([@hadi_hlk](https://twitter.com/hadi_hlk)) - [WorkOS](https://workos.com)\n\n## License\n\nLicensed under the MIT License, Copyright © 2022-present WorkOS.\n\nSee [LICENSE](./LICENSE.md) for more information.\n"
  },
  {
    "path": "packages/react/package.json",
    "content": "{\n  \"name\": \"@stitches/react\",\n  \"version\": \"1.3.1-1\",\n  \"description\": \"The modern CSS-in-JS library\",\n  \"type\": \"module\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.mjs\",\n  \"types\": \"types/index.d.ts\",\n  \"typesVersions\": {\n    \">= 4.1\": {\n      \"*\": [\n        \"types/*\"\n      ]\n    }\n  },\n  \"jsdelivr\": \"dist/index.global.js\",\n  \"unpkg\": \"dist/index.global.js\",\n  \"exports\": {\n    \".\": {\n      \"require\": \"./dist/index.cjs\",\n      \"import\": \"./dist/index.mjs\",\n      \"types\": \"./types/index.d.ts\"\n    },\n    \"./global\": \"./dist/index.global.js\"\n  },\n  \"files\": [\n    \"dist/*.cjs\",\n    \"dist/*.js\",\n    \"dist/*.map\",\n    \"dist/*.mjs\",\n    \"types/*.d.ts\"\n  ],\n  \"sideEffects\": false,\n  \"license\": \"MIT\",\n  \"repository\": \"stitchesjs/stitches\",\n  \"homepage\": \"https://stitches.dev/\",\n  \"bugs\": \"https://github.com/stitchesjs/stitches/issues\",\n  \"contributors\": [\n    \"Pedro Duarte\",\n    \"Abdulhadi Alhallak <abdul@workos.com>\",\n    \"Jonathan Neal\"\n  ],\n  \"devDependencies\": {\n    \"react\": \"17.0.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \">= 16.3.0\"\n  },\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"component\",\n    \"components\",\n    \"create\",\n    \"css\",\n    \"css-in-js\",\n    \"global\",\n    \"globals\",\n    \"javascript\",\n    \"js\",\n    \"nesting\",\n    \"object\",\n    \"object-oriented\",\n    \"oo\",\n    \"oocss\",\n    \"oriented\",\n    \"scope\",\n    \"scoped\",\n    \"style\",\n    \"styled\",\n    \"styles\",\n    \"stylesheet\",\n    \"stylesheets\",\n    \"theme\",\n    \"themes\",\n    \"theming\",\n    \"token\",\n    \"tokens\",\n    \"type\",\n    \"typed\",\n    \"types\",\n    \"transform\",\n    \"ts\",\n    \"variable\",\n    \"variables\",\n    \"jsx\",\n    \"next\",\n    \"nextjs\",\n    \"preact\",\n    \"react\",\n    \"tsx\"\n  ]\n}\n"
  },
  {
    "path": "packages/react/src/createStitches.js",
    "content": "import { createStitches as createStitchesCore } from '../../core/src/createStitches.js'\nimport { createStyledFunction } from './features/styled.js'\n\nexport const createStitches = (init) => {\n\tconst instance = createStitchesCore(init)\n\n\tinstance.styled = createStyledFunction(instance)\n\n\treturn instance\n}\n"
  },
  {
    "path": "packages/react/src/features/styled.js",
    "content": "import React from 'react'\n\nimport { internal } from '../../../core/src/utility/internal.js'\nimport { createMemo } from '../../../core/src/utility/createMemo.js'\n\nimport { createCssFunction } from '../../../core/src/features/css.js'\n\nconst createCssFunctionMap = createMemo()\n\n/** Returns a function that applies component styles. */\nexport const createStyledFunction = ({ config, sheet }) =>\n\tcreateCssFunctionMap(config, () => {\n\t\tconst cssFunction = createCssFunction(config, sheet)\n\n\t\tconst _styled = (args, css = cssFunction, { displayName, shouldForwardStitchesProp } = {}) => {\n\t\t\tconst cssComponent = css(...args)\n\t\t\tconst DefaultType = cssComponent[internal].type\n\t\t\tconst shouldForwardAs = shouldForwardStitchesProp?.('as')\n\n\t\t\tconst styledComponent = React.forwardRef((props, ref) => {\n\t\t\t\tconst Type = props?.as && !shouldForwardAs ? props?.as : DefaultType\n\n\t\t\t\tconst { props: forwardProps, deferredInjector } = cssComponent(props)\n\n\t\t\t\tif (!shouldForwardAs) {\n\t\t\t\t\tdelete forwardProps.as\n\t\t\t\t}\n\n\t\t\t\tforwardProps.ref = ref\n\n\t\t\t\tif (deferredInjector) {\n\t\t\t\t\treturn React.createElement(React.Fragment, null, React.createElement(Type, forwardProps), React.createElement(deferredInjector, null))\n\t\t\t\t}\n\n\t\t\t\treturn React.createElement(Type, forwardProps)\n\t\t\t})\n\n\t\t\tconst toString = () => cssComponent.selector\n\n\t\t\tstyledComponent.className = cssComponent.className\n\t\t\tstyledComponent.displayName = displayName || `Styled.${DefaultType.displayName || DefaultType.name || DefaultType}`\n\t\t\tstyledComponent.selector = cssComponent.selector\n\t\t\tstyledComponent.toString = toString\n\t\t\tstyledComponent[internal] = cssComponent[internal]\n\n\t\t\treturn styledComponent\n\t\t}\n\n\t\tconst styled = (...args) => _styled(args)\n\t\n\t\tstyled.withConfig = (componentConfig) => (...args) => {\n\t\t\tconst cssWithConfig = cssFunction.withConfig(componentConfig)\n\t\t\treturn _styled(args, cssWithConfig, componentConfig)\n\t\t}\n\n\t\treturn styled\n\t})\n"
  },
  {
    "path": "packages/react/src/index.js",
    "content": "import { getCachedConfig } from './utility/getCachedConfig.js'\n\nexport { createStitches } from './createStitches.js'\nexport { defaultThemeMap } from '../../core/src/default/defaultThemeMap.js'\n\nexport const createTheme = (...args) => getCachedConfig().createTheme(...args)\nexport const globalCss = (...args) => getCachedConfig().globalCss(...args)\nexport const keyframes = (...args) => getCachedConfig().keyframes(...args)\n\nexport const css = (...args) => getCachedConfig().css(...args)\nexport const styled = (...args) => getCachedConfig().styled(...args)\n"
  },
  {
    "path": "packages/react/src/utility/getCachedConfig.js",
    "content": "import { createStitches } from '../createStitches.js'\n\nlet cachedConfig\n\nexport const getCachedConfig = () => cachedConfig || (cachedConfig = createStitches())\n"
  },
  {
    "path": "packages/react/tests/basic.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('Basic', () => {\n\ttest('Functionality of styled()', () => {\n\t\tconst { styled, getCssText } = createStitches({\n\t\t\tutils: {\n\t\t\t\tuserSelect: () => (value) => ({\n\t\t\t\t\tWebkitUserSelector: value,\n\t\t\t\t\tuserSelect: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tlet Button = styled('button', {\n\t\t\t'backgroundColor': 'gainsboro',\n\t\t\t'borderRadius': '9999px',\n\t\t\t'fontWeight': 500,\n\t\t\t'padding': '0.75em 1em',\n\t\t\t'border': 0,\n\t\t\t'transition': 'all 200ms ease',\n\n\t\t\t'&:hover': {\n\t\t\t\ttransform: 'translateY(-2px)',\n\t\t\t\tboxShadow: '0 10px 25px rgba(0, 0, 0, .3)',\n\t\t\t},\n\t\t})\n\n\t\tconst vdom = renderer.create(React.createElement(React.Fragment))\n\n\t\trenderer.act(() => {\n\t\t\tvdom.update(React.createElement(Button, null, 'Hello, World!'))\n\t\t})\n\n\t\texpect(vdom.toJSON()).toEqual({\n\t\t\ttype: 'button',\n\t\t\tprops: {\n\t\t\t\tclassName: 'c-iSEgvG',\n\t\t\t},\n\t\t\tchildren: ['Hello, World!'],\n\t\t})\n\n\t\texpect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:2 c-iSEgvG}@media{.c-iSEgvG{background-color:gainsboro;border-radius:9999px;font-weight:500;padding:0.75em 1em;border:0;transition:all 200ms ease}.c-iSEgvG:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(0, 0, 0, .3)}}`,\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-as-props.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('As prop', () => {\n\ttest('The \"as\" property can be used or overridden', () => {\n\t\tconst { styled } = createStitches()\n\t\tconst component1 = styled()\n\n\t\tconst expression1 = component1.render()\n\n\t\texpect(expression1.type).toBe('span')\n\n\t\tconst component2 = styled('div')\n\t\tconst expression2 = component2.render()\n\n\t\texpect(expression2.type).toBe('div')\n\n\t\tconst expression2a = component2.render({ as: 'span' })\n\n\t\texpect(expression2a.type).toBe('span')\n\t})\n\n\ttest('The \"as\" property is followed during extension', () => {\n\t\tconst { styled } = createStitches()\n\t\tconst component1 = styled('div')\n\t\tconst component2 = styled(component1)\n\t\tconst expression = component2.render()\n\n\t\texpect(expression.type).toBe('div')\n\n\t\tconst expression2a = component2.render({ as: 'span' })\n\n\t\texpect(expression2a.type).toBe('span')\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-className-prop.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('className prop', () => {\n\ttest('Renders a DOM Element with a class matching the className prop', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst component = styled('div')\n\t\tconst className = 'myClassName'\n\t\tconst expression = component.render({ className })\n\n\t\texpect(expression.props.className).toBe(`PJLV ${className}`)\n\t})\n\n\ttest('Renders a DOM Element with multiple classes passed as className', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst component = styled('div')\n\t\tconst className = 'myClassName1 myClassName2 myClassName3'\n\t\tconst expression = component.render({ className })\n\n\t\texpect(expression.props.className).toBe(`PJLV ${className}`)\n\t})\n\n\ttest('Renders a DOM Element withoup adding an undefined class', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst component = styled('div')\n\t\tconst className = undefined\n\t\tconst expression = component.render({ className })\n\n\t\texpect(expression.props.className).toNotBe('undefined')\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-composition.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Composition', () => {\n\ttest('Renders an empty component', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\t\tconst generic = styled()\n\t\texpect(generic.render().props).toEqual({ className: 'PJLV' })\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Does not render a component without an explicit rendering', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\t\tconst red = styled({ color: 'red' })\n\t\tconst size14 = styled({ fontSize: '14px' })\n\t\tconst bold = styled({ fontWeight: 'bold' })\n\t\tconst title = styled(red, size14, bold, { fontFamily: 'monospace' })\n\t\texpect(`${title}`).toBe('.c-gmqXFB:where(.c-hzkWus.c-cQFdVt.c-kngyIZ)')\n\t\texpect(getCssText()).toBe('')\n\t})\n\n\ttest('Renders a component with all compositions', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\t\tconst red = styled({ color: 'red' })\n\t\tconst size14 = styled({ fontSize: '14px' })\n\t\tconst bold = styled({ fontWeight: 'bold' })\n\t\tconst title = styled(red, size14, bold, { fontFamily: 'monospace' })\n\t\texpect(title.render().props.className).toBe('c-gmqXFB c-hzkWus c-cQFdVt c-kngyIZ')\n\t\texpect(getCssText()).toBe('--sxs{--sxs:2 c-gmqXFB c-hzkWus c-cQFdVt c-kngyIZ}@media{.c-gmqXFB{color:red}.c-hzkWus{font-size:14px}.c-cQFdVt{font-weight:bold}.c-kngyIZ{font-family:monospace}}')\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-css-prop-react.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\n\nimport { createStitches } from '../src/index.js'\n\nconst RenderOf = (...args) => {\n\tlet Rendered\n\n\tvoid renderer.act(() => {\n\t\tRendered = renderer.create(React.createElement(...args))\n\t})\n\n\treturn Rendered.toJSON()\n}\n\ndescribe('React Component with CSS prop', () => {\n\ttest('ABC', () => {\n\t\texpect(RenderOf('div', { className: 'foobar' }, 'hello')).toEqual({\n\t\t\ttype: 'div',\n\t\t\tprops: { className: 'foobar' },\n\t\t\tchildren: ['hello'],\n\t\t})\n\t})\n\n\ttest('XYZ', () => {\n\t\tconst { styled, toString } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tbp2: '(min-width: 900px)',\n\t\t\t},\n\t\t})\n\n\t\tconst StyledText = styled('span', {\n\t\t\tlineHeight: 1,\n\t\t\tmargin: 0,\n\t\t\tfontWeight: 400,\n\t\t\tfontVariantNumeric: 'tabular-nums',\n\t\t\tdisplay: 'block',\n\t\t})\n\n\t\texpect(RenderOf(StyledText, null, 'Radix UI test suite')).toEqual({\n\t\t\ttype: 'span',\n\t\t\tprops: { className: 'c-bMUtqP' },\n\t\t\tchildren: ['Radix UI test suite'],\n\t\t})\n\n\t\texpect(toString()).toBe('--sxs{--sxs:2 c-bMUtqP}@media{.c-bMUtqP{line-height:1;margin:0;font-weight:400;font-variant-numeric:tabular-nums;display:block}}')\n\n\t\tconst Title = React.forwardRef((props, forwardedRef) =>\n\t\t\tReact.createElement(StyledText, {\n\t\t\t\tas: 'span',\n\t\t\t\t...props,\n\t\t\t\tref: forwardedRef,\n\t\t\t\tcss: {\n\t\t\t\t\t'fontWeight': 500,\n\t\t\t\t\t'fontVariantNumeric': 'proportional-nums',\n\t\t\t\t\t'lineHeight': '35px',\n\t\t\t\t\t...props.css,\n\t\t\t\t\t'@bp2': {\n\t\t\t\t\t\tlineHeight: '55px',\n\t\t\t\t\t\t...props.css?.['@bp2'],\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t\t)\n\n\t\texpect(\n\t\t\tRenderOf(\n\t\t\t\tTitle,\n\t\t\t\t{\n\t\t\t\t\tcss: {\n\t\t\t\t\t\t'textAlign': 'center',\n\t\t\t\t\t\t'marginBottom': '$3',\n\t\t\t\t\t\t'@bp2': {\n\t\t\t\t\t\t\tcolor: 'red',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t'Radix UI test suite',\n\t\t\t),\n\t\t).toEqual({\n\t\t\ttype: 'span',\n\t\t\tprops: {\n\t\t\t\tclassName: 'c-bMUtqP c-bMUtqP-ieTXEfC-css',\n\t\t\t},\n\t\t\tchildren: ['Radix UI test suite'],\n\t\t})\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-bMUtqP}@media{.c-bMUtqP{line-height:1;margin:0;font-weight:400;font-variant-numeric:tabular-nums;display:block}}--sxs{--sxs:6 c-bMUtqP-ieTXEfC-css}@media{.c-bMUtqP-ieTXEfC-css{font-weight:500;font-variant-numeric:proportional-nums;line-height:35px;text-align:center;margin-bottom:var(--space-3)}@media (min-width: 900px){.c-bMUtqP-ieTXEfC-css{line-height:55px;color:red}}}`,\n\t\t)\n\n\t\t// ...\n\t\tconst Link = styled('a', {\n\t\t\t[`& ${StyledText}`]: {\n\t\t\t\tcolor: 'inherit',\n\t\t\t},\n\t\t})\n\n\t\texpect(RenderOf(Link, null, 'Radix UI test suite')).toEqual({\n\t\t\ttype: 'a',\n\t\t\tprops: {\n\t\t\t\tclassName: 'c-dnnagC',\n\t\t\t},\n\t\t\tchildren: ['Radix UI test suite'],\n\t\t})\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-bMUtqP c-dnnagC}@media{.c-bMUtqP{line-height:1;margin:0;font-weight:400;font-variant-numeric:tabular-nums;display:block}.c-dnnagC .c-bMUtqP{color:inherit}}--sxs{--sxs:6 c-bMUtqP-ieTXEfC-css}@media{.c-bMUtqP-ieTXEfC-css{font-weight:500;font-variant-numeric:proportional-nums;line-height:35px;text-align:center;margin-bottom:var(--space-3)}@media (min-width: 900px){.c-bMUtqP-ieTXEfC-css{line-height:55px;color:red}}}`,\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-css-prop.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('React Component with CSS prop', () => {\n\ttest('Authors can create a component and pass it a css prop of overrides', () => {\n\t\tconst { styled, toString } = createStitches()\n\n\t\tstyled('button', {\n\t\t\torder: 1,\n\t\t}).render({\n\t\t\tcss: {\n\t\t\t\torder: 2,\n\t\t\t},\n\t\t})\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:2 c-hhyRYU}@media{.c-hhyRYU{order:1}}--sxs{--sxs:6 c-hhyRYU-ilhKMMn-css}@media{.c-hhyRYU-ilhKMMn-css{order:2}}`)\n\t})\n\n\ttest('React example from Radix', () => {\n\t\tconst { styled, toString } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tbp2: '(min-width: 900px)',\n\t\t\t},\n\t\t})\n\n\t\tconst expression = styled('button', {\n\t\t\tcolor: 'inherit',\n\t\t}).render({\n\t\t\tcss: {\n\t\t\t\t'fontWeight': 500,\n\t\t\t\t'fontVariantNumeric': 'proportional-nums',\n\t\t\t\t'lineHeight': '35px',\n\t\t\t\t'@bp2': {\n\t\t\t\t\tlineHeight: '55px',\n\t\t\t\t\tcolor: 'red',\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\texpect(expression.props).toEqual({\n\t\t\tclassName: 'c-bHwuwj c-bHwuwj-ibwrayD-css',\n\t\t})\n\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:2 c-bHwuwj}@media{.c-bHwuwj{color:inherit}}--sxs{--sxs:6 c-bHwuwj-ibwrayD-css}@media{.c-bHwuwj-ibwrayD-css{font-weight:500;font-variant-numeric:proportional-nums;line-height:35px}@media (min-width: 900px){.c-bHwuwj-ibwrayD-css{line-height:55px;color:red}}}`,\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-repeated-variants.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('emerson', () => {\n\ttest('lake', () => {\n\t\tconst { styled, toString } = createStitches({\n\t\t\tutils: {\n\t\t\t\tpx: (value) => ({\n\t\t\t\t\tpaddingLeft: value,\n\t\t\t\t\tpaddingRight: value,\n\t\t\t\t}),\n\t\t\t},\n\t\t})\n\n\t\tconst component = styled('span', {\n\t\t\tvariants: {\n\t\t\t\tsize: {\n\t\t\t\t\t'1': {\n\t\t\t\t\t\tpx: '$1',\n\t\t\t\t\t},\n\t\t\t\t\t'2': {\n\t\t\t\t\t\tpx: '$2',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst cssText = (\n\t\t\t`--sxs{--sxs:3 c-PJLV-efCiES-size-1}@media{` +\n\t\t\t\t`.c-PJLV-efCiES-size-1{padding-left:var(--space-1);padding-right:var(--space-1)}` +\n\t\t\t`}`\n\t\t)\n\n\t\tcomponent.render({ size: '1' })\n\n\t\texpect(toString()).toBe(cssText)\n\n\t\tcomponent.render({ size: '1' })\n\n\t\texpect(toString()).toBe(cssText)\n\n\t\tcomponent.render({ size: '1' })\n\n\t\texpect(toString()).toBe(cssText)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component-variants.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Variants', () => {\n\tconst componentConfig = {\n\t\tvariants: {\n\t\t\tcolor: {\n\t\t\t\tblue: {\n\t\t\t\t\tbackgroundColor: 'dodgerblue',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t\tred: {\n\t\t\t\t\tbackgroundColor: 'tomato',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t},\n\t\t\tsize: {\n\t\t\t\tsmall: {\n\t\t\t\t\tfontSize: '16px',\n\t\t\t\t},\n\t\t\t\tlarge: {\n\t\t\t\t\tfontSize: '24px',\n\t\t\t\t},\n\t\t\t},\n\t\t\tlevel: {\n\t\t\t\t1: {\n\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t},\n\t\t\t\t2: {\n\t\t\t\t\tpadding: '1em',\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tsize: 'small',\n\t\t\t\tcolor: 'blue',\n\t\t\t\tcss: {\n\t\t\t\t\ttransform: 'scale(1.2)',\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t}\n\n\ttest('Renders a component without any initial styles', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render()\n\n\t\texpect(expression.props.className).toBe('c-PJLV')\n\t\texpect(toString()).toBe('')\n\t})\n\n\ttest('Renders a component with 1 matching variant', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression1 = component.render({ size: 'small' })\n\n\t\tconst expression1CssText = '.c-PJLV-Gaggi-size-small{font-size:16px}'\n\n\t\texpect(expression1.props.className).toBe('c-PJLV c-PJLV-Gaggi-size-small')\n\t\texpect(toString()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{${expression1CssText}}`)\n\n\t\tconst expression2 = component.render({ color: 'blue' })\n\n\t\tconst expression2CssText = '.c-PJLV-kaCQqN-color-blue{background-color:dodgerblue;color:white}'\n\n\t\texpect(expression2.props.className).toBe('c-PJLV c-PJLV-kaCQqN-color-blue')\n\t\texpect(toString()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small c-PJLV-kaCQqN-color-blue}@media{${expression1CssText}${expression2CssText}}`)\n\t})\n\n\ttest('Renders a component with 2 matching variants', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render({ size: 'small', level: 1 })\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1')\n\n\t\tconst expressionSizeSmallCssText = '.c-PJLV-Gaggi-size-small{font-size:16px}'\n\t\tconst expressionLevel1CssText = '.c-PJLV-iRwLiB-level-1{padding:0.5em}'\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1}@media{${expressionSizeSmallCssText}${expressionLevel1CssText}}`)\n\t})\n\n\ttest('Renders a component with a 2 matching variants and 1 matching compound', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render({ size: 'small', color: 'blue' })\n\n\t\tconst expressionSizeSmallCssText = '.c-PJLV-Gaggi-size-small{font-size:16px}'\n\t\tconst expressionColorBlueCssText = '.c-PJLV-kaCQqN-color-blue{background-color:dodgerblue;color:white}'\n\t\tconst expressionCompoundCssText = '.c-PJLV-cChFtv-cv{transform:scale(1.2)}'\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small c-PJLV-cChFtv-cv')\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small}@media{` +\n\t\t\t\texpressionColorBlueCssText +\n\t\t\t\texpressionSizeSmallCssText +\n\t\t\t`}--sxs{--sxs:5 c-PJLV-cChFtv-cv}@media{` +\n\t\t\t\texpressionCompoundCssText +\n\t\t\t`}`\n\t\t)\n\t})\n})\n\ndescribe('Variants with defaults', () => {\n\tconst componentConfig = {\n\t\tvariants: {\n\t\t\tcolor: {\n\t\t\t\tblue: {\n\t\t\t\t\tbackgroundColor: 'dodgerblue',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t\tred: {\n\t\t\t\t\tbackgroundColor: 'tomato',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t},\n\t\t\tsize: {\n\t\t\t\tsmall: {\n\t\t\t\t\tfontSize: '16px',\n\t\t\t\t},\n\t\t\t\tlarge: {\n\t\t\t\t\tfontSize: '24px',\n\t\t\t\t},\n\t\t\t},\n\t\t\tlevel: {\n\t\t\t\t1: {\n\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t},\n\t\t\t\t2: {\n\t\t\t\t\tpadding: '1em',\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tsize: 'small',\n\t\t\t\tcolor: 'blue',\n\t\t\t\tcss: {\n\t\t\t\t\ttransform: 'scale(1.2)',\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t\tdefaultVariants: {\n\t\t\tsize: 'small',\n\t\t},\n\t}\n\n\ttest('Renders a component with the default variant applied', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render()\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-Gaggi-size-small')\n\t\texpect(toString()).toBe('--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{.c-PJLV-Gaggi-size-small{font-size:16px}}')\n\t})\n\n\ttest('Renders a component with the default variant explicitly applied', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render({ size: 'small' })\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-Gaggi-size-small')\n\t\texpect(toString()).toBe('--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{.c-PJLV-Gaggi-size-small{font-size:16px}}')\n\t})\n\n\ttest('Renders a component with the non-default variant explicitly applied', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render({ size: 'large' })\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-hsYHIj-size-large')\n\t\texpect(toString()).toBe('--sxs{--sxs:3 c-PJLV-hsYHIj-size-large}@media{.c-PJLV-hsYHIj-size-large{font-size:24px}}')\n\t})\n\n\ttest('Renders a component with the default variant applied and a different variant explicitly applied', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render({ level: 1 })\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1')\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-Gaggi-size-small c-PJLV-iRwLiB-level-1}@media{` +\n\t\t\t\t// implicit size:small\n\t\t\t\t`.c-PJLV-Gaggi-size-small{font-size:16px}` +\n\t\t\t\t// explicit level:1\n\t\t\t\t`.c-PJLV-iRwLiB-level-1{padding:0.5em}` +\n\t\t\t\t`}`,\n\t\t)\n\t})\n\n\ttest('Renders a component with the default variant applied, a different variant explicitly applied, and a compound applied', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst expression = component.render({ color: 'blue' })\n\n\t\texpect(expression.props.className).toBe('c-PJLV c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small c-PJLV-cChFtv-cv')\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-kaCQqN-color-blue c-PJLV-Gaggi-size-small}@media{` +\n\t\t\t\t// explicit color:blue\n\t\t\t\t`.c-PJLV-kaCQqN-color-blue{background-color:dodgerblue;color:white}` +\n\t\t\t\t// implicit size:small\n\t\t\t\t`.c-PJLV-Gaggi-size-small{font-size:16px}` +\n\t\t\t`}--sxs{--sxs:5 c-PJLV-cChFtv-cv}@media{` +\n\t\t\t\t// compound color:blue + size:small\n\t\t\t\t`.c-PJLV-cChFtv-cv{transform:scale(1.2)}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Returns a component selector without the default variant applied when toString is used', () => {\n\t\tconst { styled, toString } = createStitches()\n\t\tconst component = styled('div', componentConfig)\n\t\tconst selector = component.toString()\n\n\t\texpect(selector).toBe('.c-PJLV')\n\t\texpect(toString()).toBe('')\n\t})\n})\n\ndescribe('Conditional variants', () => {\n\tconst config = {\n\t\tmedia: {\n\t\t\tbp1: '(max-width: 767px)',\n\t\t\tbp2: '(min-width: 768px)',\n\t\t},\n\t}\n\n\t/** Component with variants and compound variants */\n\tconst componentConfig = {\n\t\tvariants: {\n\t\t\tcolor: {\n\t\t\t\tblue: {\n\t\t\t\t\tbackgroundColor: 'dodgerblue',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t\tred: {\n\t\t\t\t\tbackgroundColor: 'tomato',\n\t\t\t\t\tcolor: 'white',\n\t\t\t\t},\n\t\t\t},\n\t\t\tsize: {\n\t\t\t\tsmall: {\n\t\t\t\t\tfontSize: '16px',\n\t\t\t\t},\n\t\t\t\tlarge: {\n\t\t\t\t\tfontSize: '24px',\n\t\t\t\t},\n\t\t\t},\n\t\t\tlevel: {\n\t\t\t\t1: {\n\t\t\t\t\tpadding: '0.5em',\n\t\t\t\t},\n\t\t\t\t2: {\n\t\t\t\t\tpadding: '1em',\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tsize: 'small',\n\t\t\t\tcolor: 'blue',\n\t\t\t\tcss: {\n\t\t\t\t\ttransform: 'scale(1.2)',\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t}\n\n\ttest('Renders a component with no variant applied', () => {\n\t\tconst { styled, toString } = createStitches(config)\n\t\tconst component = styled('div', componentConfig)\n\t\tconst componentClassName = 'c-PJLV'\n\n\t\texpect(component.render().props.className).toBe(componentClassName)\n\t\texpect(toString()).toBe('')\n\t})\n\n\ttest('Renders a component with one variant applied', () => {\n\t\tconst { styled, toString } = createStitches(config)\n\t\tconst component = styled('div', componentConfig)\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst componentSmallClassName = `${componentClassName}-Gaggi-size-small`\n\t\tconst componentSmallCssText = `.${componentSmallClassName}{font-size:16px}`\n\n\t\texpect(component.render({ size: 'small' }).props.className).toBe([componentClassName, componentSmallClassName].join(' '))\n\t\texpect(toString()).toBe(`--sxs{--sxs:3 c-PJLV-Gaggi-size-small}@media{${componentSmallCssText}}`)\n\t})\n\n\ttest('Renders a component with one conditional variant on one breakpoint applied', () => {\n\t\tconst { styled, toString } = createStitches(config)\n\t\tconst component = styled('div', componentConfig)\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst componentSmallBp1ClassName = `${componentClassName}-fHtTAQ-size-small`\n\t\tconst componentSmallBp1CssText = `@media (max-width: 767px){.${componentSmallBp1ClassName}{font-size:16px}}`\n\n\t\texpect(component.render({ size: { '@bp1': 'small' } }).props.className).toBe([componentClassName, componentSmallBp1ClassName].join(' '))\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small}@media{` +\n\t\t\t\tcomponentSmallBp1CssText +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a component with one conditional variant on two breakpoints applied', () => {\n\t\tconst { styled, toString } = createStitches(config)\n\t\tconst component = styled('div', componentConfig)\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst componentSmallBp1ClassName = `${componentClassName}-fHtTAQ-size-small`\n\t\tconst componentLargeBp2ClassName = `${componentClassName}-XwbVw-size-large`\n\t\tconst componentSmallBp1CssText = `@media (max-width: 767px){.${componentSmallBp1ClassName}{font-size:16px}}`\n\t\tconst componentLargeBp2CssText = `@media (min-width: 768px){.${componentLargeBp2ClassName}{font-size:24px}}`\n\n\t\texpect(component.render({ size: { '@bp1': 'small', '@bp2': 'large' } }).props.className).toBe([componentClassName, componentSmallBp1ClassName, componentLargeBp2ClassName].join(' '))\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\tcomponentSmallBp1CssText +\n\t\t\tcomponentLargeBp2CssText +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Renders a component with a conditional variant repeatedly', () => {\n\t\tconst { styled, toString } = createStitches(config)\n\t\tconst component = styled('div', componentConfig)\n\t\tconst componentClassName = `c-PJLV`\n\t\tconst componentSmallBp1ClassName = `${componentClassName}-fHtTAQ-size-small`\n\t\tconst componentLargeBp2ClassName = `${componentClassName}-XwbVw-size-large`\n\t\tconst componentSmallBp1CssText = `@media (max-width: 767px){.${componentSmallBp1ClassName}{font-size:16px}}`\n\t\tconst componentLargeBp2CssText = `@media (min-width: 768px){.c-PJLV-XwbVw-size-large{font-size:24px}}`\n\n\t\texpect(component.render({ size: { '@bp1': 'small', '@bp2': 'large' } }).props.className).toBe([componentClassName, componentSmallBp1ClassName, componentLargeBp2ClassName].join(' '))\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\tcomponentSmallBp1CssText +\n\t\t\t\tcomponentLargeBp2CssText +\n\t\t\t`}`\n\t\t)\n\n\t\texpect(component.render({ size: { '@bp1': 'small', '@bp2': 'large' } }).props.className).toBe([componentClassName, componentSmallBp1ClassName, componentLargeBp2ClassName].join(' '))\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\t`@media (max-width: 767px){.c-PJLV-fHtTAQ-size-small{font-size:16px}}` +\n\t\t\t\t`@media (min-width: 768px){.c-PJLV-XwbVw-size-large{font-size:24px}}` +\n\t\t\t`}`\n\t\t)\n\n\t\texpect(component.render({ size: { '@bp1': 'small', '@bp2': 'large' } }).props.className).toBe(`c-PJLV c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large`)\n\t\texpect(toString()).toBe(\n\t\t\t`--sxs{--sxs:4 c-PJLV-fHtTAQ-size-small c-PJLV-XwbVw-size-large}@media{` +\n\t\t\t\t`@media (max-width: 767px){.c-PJLV-fHtTAQ-size-small{font-size:16px}}` +\n\t\t\t\t`@media (min-width: 768px){.c-PJLV-XwbVw-size-large{font-size:24px}}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/component.js",
    "content": "import { createStitches } from '../src/index.js'\n\nconst internal = Symbol.for('sxs.internal')\n\ndescribe('Components', () => {\n\ttest('The `styled` function returns an implicit span component', () => {\n\t\tconst { styled } = createStitches()\n\t\tconst component = styled()\n\n\t\texpect(component.$$typeof).toBe(Symbol.for('react.forward_ref'))\n\t\texpect(component[internal].type).toBe('span')\n\t})\n\n\ttest('The `styled` function can return an explicit div component', () => {\n\t\tconst { styled } = createStitches()\n\t\tconst component = styled('div')\n\n\t\texpect(component.$$typeof).toBe(Symbol.for('react.forward_ref'))\n\t\texpect(component[internal].type).toBe('div')\n\t})\n\n\ttest('The `styled` function can return an explicit React component', () => {\n\t\tfunction TextComponent() {\n\t\t\treturn 'text'\n\t\t}\n\n\t\tconst { styled } = createStitches()\n\t\tconst component = styled(TextComponent)\n\n\t\texpect(component.$$typeof).toBe(Symbol.for('react.forward_ref'))\n\t\texpect(component[internal].type).toBe(TextComponent)\n\t})\n\n\ttest('The `styled` function can return an explicit forwarded React component', () => {\n\t\tconst ForwardedComponent = {\n\t\t\t$$typeof: Symbol.for('react.forward_ref'),\n\t\t\trender: () => 'text',\n\t\t}\n\n\t\tconst { styled } = createStitches()\n\t\tconst component = styled(ForwardedComponent)\n\n\t\texpect(component.$$typeof).toBe(Symbol.for('react.forward_ref'))\n\t\texpect(component[internal].type).toBe(ForwardedComponent)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/issue-416.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('Issue #416: Composition versus Descendancy', () => {\n\t{\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst BoxA = styled('main', {\n\t\t\tvariants: {\n\t\t\t\tfoo: {\n\t\t\t\t\tbar: {\n\t\t\t\t\t\t'--box-a': 'foo-bar',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst BoxB = styled(BoxA, {\n\t\t\tvariants: {\n\t\t\t\tfoo: {\n\t\t\t\t\tbar: {\n\t\t\t\t\t\t'--box-b': 'foo-bar',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst GenY = (props) => {\n\t\t\treturn React.createElement(BoxB, props)\n\t\t}\n\n\t\tconst BoxZ = styled(GenY, {\n\t\t\tvariants: {\n\t\t\t\tfoo: {\n\t\t\t\t\tbar: {\n\t\t\t\t\t\t'--box-z': 'foo-bar',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tconst App = () => {\n\t\t\treturn React.createElement(\n\t\t\t\t'div',\n\t\t\t\tnull,\n\t\t\t\t// children\n\t\t\t\tReact.createElement(BoxA, { foo: 'bar' }),\n\t\t\t\tReact.createElement(BoxB, { foo: 'bar' }),\n\t\t\t\tReact.createElement(GenY, { foo: 'bar' }),\n\t\t\t\tReact.createElement(BoxZ, { foo: 'bar' }),\n\t\t\t)\n\t\t}\n\n\t\tlet wrapper\n\t\ttest('it can render without errors', () => {\n\t\t\trenderer.act(() => {\n\t\t\t\twrapper = renderer.create(React.createElement(App))\n\t\t\t})\n\t\t})\n\n\t\tconst [boxA, boxB, genY, boxZ] = wrapper.toJSON().children\n\n\t\tconst baselineClass = `c-PJLV`\n\t\tconst variantAClass = `c-PJLV-kgptgY-foo-bar`\n\t\tconst variantBClass = `c-PJLV-cHNUhn-foo-bar`\n\t\tconst variantZClass = `c-PJLV-vFFMz-foo-bar`\n\n\t\ttest('Box A has an active variant', () => expect(boxA.props.className).toBe(`${baselineClass} ${variantAClass}`))\n\n\t\ttest('Box B has an active variant, plus the active variant of Box A', () => expect(boxB.props.className).toBe(`${baselineClass} ${variantAClass} ${variantBClass}`))\n\n\t\ttest('Gen Y has no variant, but activates the variants of Box A and Box B', () => expect(genY.props.className).toBe(`${baselineClass} ${variantAClass} ${variantBClass}`))\n\n\t\ttest(\n\t\t\t'Box Z has an active variant, but does not activate the variants of Box A or Box B',\n\t\t\t() => expect(boxZ.props.className).toBe(`${baselineClass} ${variantZClass}`)\n\t\t)\n\n\t\ttest('All variant CSS is generated', () => expect(getCssText()).toBe(\n\t\t\t`--sxs{--sxs:3 c-PJLV-kgptgY-foo-bar c-PJLV-cHNUhn-foo-bar c-PJLV-vFFMz-foo-bar}@media{` +\n\t\t\t\t`.c-PJLV-kgptgY-foo-bar{--box-a:foo-bar}` +\n\t\t\t\t`.c-PJLV-cHNUhn-foo-bar{--box-b:foo-bar}` +\n\t\t\t\t`.c-PJLV-vFFMz-foo-bar{--box-z:foo-bar}` +\n\t\t\t`}`\n\t\t))\n\t}\n})\n"
  },
  {
    "path": "packages/react/tests/issue-450.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\nlet RenderOf = (...typeThenPropsThenChildren) => {\n\tlet Rendered\n\n\tvoid renderer.act(() => {\n\t\tRendered = renderer.create(React.createElement(...typeThenPropsThenChildren))\n\t})\n\n\treturn Rendered.toJSON()\n}\n\ndescribe('Issue #450', () => {\n\ttest('Compound variants apply to composed components (basic)', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst Happy = styled('div', {\n\t\t\t'--is-happy': true,\n\n\t\t\tvariants: {\n\t\t\t\tfulfilled: {\n\t\t\t\t\tpositively: {\n\t\t\t\t\t\t'--is-fulfilled-positively': true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tsatisfied: {\n\t\t\t\t\tdefinitely: {\n\t\t\t\t\t\t'--is-satisfied-definitely': true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\n\t\t\tdefaultVariants: {\n\t\t\t\tfulfilled: 'positively',\n\t\t\t\tsatisfied: 'definitely',\n\t\t\t},\n\t\t})\n\n\t\texpect(\n\t\t\tRenderOf(Happy, null).props.className\n\t\t).toBe(\n\t\t\t`c-fEpFmO c-fEpFmO-cfZmSQ-fulfilled-positively c-fEpFmO-FgYNE-satisfied-definitely`\n\t\t)\n\n\t\texpect(\n\t\t\tgetCssText()\n\t\t).toBe(\n\t\t\t// composition styles\n\t\t\t`--sxs{--sxs:2 c-fEpFmO}@media{` +\n\t\t\t\t`.c-fEpFmO{--is-happy:true}` +\n\t\t\t`}` +\n\t\t\t// variant styles\n\t\t\t`--sxs{--sxs:3 c-fEpFmO-cfZmSQ-fulfilled-positively c-fEpFmO-FgYNE-satisfied-definitely}@media{` +\n\t\t\t\t`.c-fEpFmO-cfZmSQ-fulfilled-positively{--is-fulfilled-positively:true}` +\n\t\t\t\t`.c-fEpFmO-FgYNE-satisfied-definitely{--is-satisfied-definitely:true}` +\n\t\t\t`}`\n\t\t)\n\t})\n\n\ttest('Compound variants apply to composed components (complex)', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst Tile = styled('div', {\n\t\t\t'--tile': 1,\n\n\t\t\t'variants': {\n\t\t\t\tappearance: {\n\t\t\t\t\tprimary: {},\n\t\t\t\t\tsecondary: { '--appearance': 'secondary' },\n\t\t\t\t},\n\t\t\t\tcolor: {\n\t\t\t\t\tred: {},\n\t\t\t\t\tpurple: { '--color': 'purple' },\n\t\t\t\t\tlightBlue: { '--color': 'lightBlue' },\n\t\t\t\t},\n\t\t\t},\n\n\t\t\t'compoundVariants': [\n\t\t\t\t{\n\t\t\t\t\tappearance: 'secondary',\n\t\t\t\t\tcolor: 'lightBlue',\n\t\t\t\t\tcss: {\n\t\t\t\t\t\t'--compound': 'appearance secondary / color lightBlue',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\n\t\t\t'defaultVariants': {\n\t\t\t\tappearance: 'primary',\n\t\t\t\tcolor: 'red',\n\t\t\t},\n\t\t})\n\n\t\tconst RoundedTile = styled(Tile, {\n\t\t\t'--rounded-tile': 1,\n\n\t\t\t'defaultVariants': {\n\t\t\t\tappearance: 'secondary',\n\t\t\t\tcolor: 'lightBlue',\n\t\t\t},\n\t\t})\n\n\t\tlet RenderOf = (...typeThenPropsThenChildren) => {\n\t\t\tlet Rendered\n\n\t\t\tvoid renderer.act(() => {\n\t\t\t\tRendered = renderer.create(React.createElement(...typeThenPropsThenChildren))\n\t\t\t})\n\n\t\t\treturn Rendered.toJSON()\n\t\t}\n\n\t\tconst tileComponentClass = `c-kTjQBa`\n\t\tconst roundedTileComponentClass = `c-gLsErE`\n\n\t\tconst variantLightBlueClass = `c-kTjQBa-ilDyRi-color-lightBlue`\n\t\tconst variantAppearanceSecondaryClass = `c-kTjQBa-cOChOn-appearance-secondary`\n\t\tconst variantCompoundClass = `c-kTjQBa-gYqlvA-cv`\n\n\t\t// Normal variants\n\n\t\t// renders { appearance: \"primary\"; color: \"red\" }, neither empty variant will render\n\t\texpect(RenderOf(Tile).props.className).toBe(tileComponentClass)\n\n\t\t// renders { appearance: \"primary\"; color: \"lightBlue\" }, the { color: \"lightBlue\" } variant will render\n\t\texpect(RenderOf(Tile, { color: 'lightBlue' }).props.className).toBe(`${tileComponentClass} ${variantLightBlueClass}`)\n\n\t\t// Compound variants\n\n\t\t// renders { appearance: \"secondary\"; color: \"lightBlue\" }, the { appearance: \"secondary\" } variant will render\n\t\texpect(RenderOf(Tile, { appearance: 'secondary' }).props.className).toBe(`${tileComponentClass} ${variantAppearanceSecondaryClass}`)\n\n\t\t// renders { appearance: \"secondary\"; color: \"lightBlue\" }, the { appearance: \"secondary\" }, { color: \"lightBlue\" } variants will render\n\t\texpect(RenderOf(Tile, { appearance: 'secondary', color: 'lightBlue' }).props.className).toBe(`${tileComponentClass} ${variantAppearanceSecondaryClass} ${variantLightBlueClass} ${variantCompoundClass}`)\n\n\t\t// Restyled compound variants (compound is activated implicitly by defaultVariants)\n\n\t\t// appearance: primary, color: red, +\n\t\texpect(\n\t\t\tRenderOf(RoundedTile).props.className\n\t\t).toBe(\n\t\t\t`${tileComponentClass} ${roundedTileComponentClass} ${variantAppearanceSecondaryClass} ${variantLightBlueClass} ${variantCompoundClass}`\n\t\t)\n\n\t\t// Restyled compound variants (compound is activated explicitly by props)\n\n\t\t// appearance: secondary, compound * 2, +\n\t\texpect(\n\t\t\tRenderOf(RoundedTile, { appearance: 'secondary', color: 'lightBlue' }).props.className\n\t\t).toBe(\n\t\t\t`${tileComponentClass} ${roundedTileComponentClass} ${variantAppearanceSecondaryClass} ${variantLightBlueClass} ${variantCompoundClass}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/issue-555.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\nlet RenderOf = (...args) => {\n\tlet Rendered\n\n\tvoid renderer.act(() => {\n\t\tRendered = renderer.create(React.createElement(...args))\n\t})\n\n\tconst json = Rendered.toJSON()\n\tconst { props } = json\n\n\tfor (const prop in props) {\n\t\tconst value = props[prop]\n\n\t\t// serialize objects as they might appear in a render\n\t\tif (typeof value === 'object' && value !== null && value.toString) {\n\t\t\tprops[prop] = value.toString()\n\t\t}\n\t}\n\n\treturn json\n}\n\ndescribe('Issue #555', () => {\n\ttest('an element accepts styles via className prop', () => {\n\t\tconst { css, toString } = createStitches()\n\n\t\tconst el = css({ color: \"dodgerblue\" })\n\n\t\texpect(\n\t\t\tRenderOf('div', { className: el() })\n\t\t).toEqual({\n\t\t\ttype: 'div',\n\t\t\tprops: {\n\t\t\t\tclassName: 'c-jEKtXH',\n\t\t\t},\n\t\t\tchildren: null,\n\t\t})\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:2 c-jEKtXH}@media{.c-jEKtXH{color:dodgerblue}}`)\n\t})\n\n\ttest('an element accepts styles via className prop', () => {\n\t\tconst { css, styled, toString } = createStitches()\n\n\t\tconst el = css({ color: \"dodgerblue\" })\n\t\tconst Box = styled('div', {})\n\n\t\texpect(\n\t\t\tRenderOf(Box, { className: el() })\n\t\t).toEqual({\n\t\t\ttype: 'div',\n\t\t\tprops: {\n\t\t\t\tclassName: 'c-PJLV c-jEKtXH',\n\t\t\t},\n\t\t\tchildren: null,\n\t\t})\n\n\t\texpect(toString()).toBe(`--sxs{--sxs:2 c-jEKtXH c-PJLV}@media{.c-jEKtXH{color:dodgerblue}}`)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/issue-671-forwardRef.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('Issue #671 - forwardRef', () => {\n\t{\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst StyledBase = styled('div', { color: 'black' })\n\t\tconst ForwardRefReactComponent = React.forwardRef((props, ref) => React.createElement(StyledBase, { ...props, ref }))\n\t\tconst StitshcesComponentExtendingForwardRefReactComponent = styled(ForwardRefReactComponent, { color: 'white' })\n\n\t\tconst App = () => {\n\t\t\treturn React.createElement(\n\t\t\t\t'div',\n\t\t\t\tnull,\n\t\t\t\tReact.createElement(StitshcesComponentExtendingForwardRefReactComponent, {}),\n\t\t\t)\n\t\t}\n\n\t\trenderer.act(() => {\n\t\t\trenderer.create(React.createElement(App))\n\t\t})\n\n\t\ttest('a stitches component extending a forwardRef react component will inject the styles in the correct order', () => {\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-fjEkWJ c-bjcmt}@media{.c-bjcmt{color:black}.c-fjEkWJ{color:white}}`)\n\t\t})\n\t}\n})\n"
  },
  {
    "path": "packages/react/tests/issue-671.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('Issue #671', () => {\n\t{\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst StyledBase = styled('div', { color: 'red' })\n\t\tconst Base = (props) => React.createElement(StyledBase, { ...props })\n\t\tconst Bar = styled(Base, { color: 'blue' })\n\n\t\tconst App = () => {\n\t\t\treturn React.createElement(\n\t\t\t\t'div',\n\t\t\t\tnull,\n\t\t\t\t// children\n\t\t\t\tReact.createElement(Bar, {}),\n\t\t\t)\n\t\t}\n\n\t\trenderer.act(() => {\n\t\t\trenderer.create(React.createElement(App))\n\t\t})\n\n\t\ttest('a stitches component extending a react component will inject the styles in the correct order', () => {\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:2 c-kydkiA c-gmqXFB}@media{.c-gmqXFB{color:red}.c-kydkiA{color:blue}}`)\n\t\t})\n\t}\n})\n"
  },
  {
    "path": "packages/react/tests/issue-737.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('Issue #737', () => {\n\t{\n\t\tconst { styled, getCssText } = createStitches({\n\t\t\tmedia: {\n\t\t\t\tbp1: '(min-width: 768px)',\n\t\t\t},\n\t\t})\n\n\t\tconst TestComponent = styled('div', {\n\t\t\tvariants: {\n\t\t\t\tvariant: {\n\t\t\t\t\tred: {\n\t\t\t\t\t\tcolor: 'red',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\t// now test that the initial variant in rendered fist\n\t\ttest('initial variants are rendered before responsive variants', () => {\n\t\t\t// render responsive variants\n\t\t\trenderer.act(() => {\n\t\t\t\trenderer.create(\n\t\t\t\t\tReact.createElement(React.Fragment, null, [\n\t\t\t\t\t\t// render responsive variant first without initial\n\t\t\t\t\t\tReact.createElement(TestComponent, { key: 0, variant: { '@bp1': 'red' } }),\n\t\t\t\t\t\t// render initial variant\n\t\t\t\t\t\tReact.createElement(TestComponent, { key: 1, variant: {'@initial': 'red'} }),\n\t\t\t\t\t]),\n\t\t\t\t)\n\t\t\t})\n\t\t\texpect(getCssText()).toBe(`--sxs{--sxs:3 c-PJLV-gmqXFB-variant-red}@media{.c-PJLV-gmqXFB-variant-red{color:red}}--sxs{--sxs:4 c-PJLV-iOPXJy-variant-red}@media{@media (min-width: 768px){.c-PJLV-iOPXJy-variant-red{color:red}}}`)\n\n\t\t})\n\t}\n})\n"
  },
  {
    "path": "packages/react/tests/issue-921.tsx",
    "content": "import { createStitches, PropertyValue, CSS } from '../types/index'\n\nconst config = {\n\tutils: {\n\t\tbackground: (value: boolean | PropertyValue<'background'>) => {\n\t\t\tif (typeof value === 'boolean') {\n\t\t\t\treturn value ? {\n\t\t\t\t\tbackground: 'red'\n\t\t\t\t} : {}\n\t\t\t} else {\n\t\t\t\treturn {\n\t\t\t\t\tbackground: value\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n}\n\nconst { css, globalCss, styled } = createStitches(config)\n\nglobalCss({\n\thtml: {\n\t\tbackground: true\n\t},\n\tbody: {\n\t\tbackground: 'green'\n\t},\n})\n\nconst CComponent = css({\n\tbackground: true,\n\t'> *': {\n\t\tbackground: 'green'\n\t}\n})\n\nCComponent({\n\tbackground: 'green',\n\t'> *': {\n\t\tbackground: true\n\t}\n})\n\ncss(CComponent, {\n\tbackground: 'green'\n})\n\ncss(CComponent, {\n\tbackground: true\n})\n\nconst SComponent = styled('div', {\n\tbackground: 'green',\n\t'> *': {\n\t\tbackground: true\n\t}\n})\n\nvoid function Test() {\n\treturn (\n\t\t<SComponent css={{\n\t\t\t\tbackground: true,\n\t\t\t\t'> *': {\n\t\t\t\t\tbackground: 'green'\n\t\t\t\t}\n\t\t\t}}\n\t\t/>\n\t)\n}\n\nconst style: CSS = {\n\t// @ts-expect-error\n\tbackground: true \n}\n\nconst style2: CSS<typeof config> = {\n\tbackground: true\n}\n\nconst style3: CSS<typeof config> = {\n\tbackground: 'green'\n}\n"
  },
  {
    "path": "packages/react/tests/issue-943.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Issue #943', () => {\n\ttest('@font-face descriptors', () => {\n\t\tconst { globalCss, getCssText } = createStitches()\n\n\t\tglobalCss({\n\t\t\t'@font-face': [\n\t\t\t\t{\n\t\t\t\t\tfontFamily: 'fallback-font',\n\t\t\t\t\tascentOverride: '83.6%',\n\t\t\t\t\tdescentOverride: '20.5%',\n\t\t\t\t\tlineGapOverride: '0%',\n\t\t\t\t\tadvanceOverride: '10',\n\t\t\t\t\tsrc: 'local(Arial)',\n\t\t\t\t}\n\t\t\t]\n\t\t})()\n\n\t\texpect(getCssText()).toBe('--sxs{--sxs:1 jGZRm}@media{@font-face{font-family:fallback-font;ascent-override:83.6%;descent-override:20.5%;line-gap-override:0%;advance-override:10;src:local(Arial)}}')\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/react.js",
    "content": "import * as react from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('React', () => {\n\tconst sheet = createStitches()\n\n\tlet wrapper = renderer.create(react.createElement(react.Fragment))\n\tlet Button = sheet.styled('button', {\n\t\t'backgroundColor': 'gainsboro',\n\t\t'borderRadius': '9999px',\n\t\t'fontWeight': 500,\n\t\t'padding': '0.75em 1em',\n\t\t'border': 0,\n\t\t'transition': 'all 200ms ease',\n\n\t\t'&:hover': {\n\t\t\ttransform: 'translateY(-2px)',\n\t\t\tboxShadow: '0 10px 25px rgba(0, 0, 0, .3)',\n\t\t},\n\t})\n\n\ttest('creates an object with a \"styled\" function', () => {\n\t\texpect(typeof sheet.styled).toBe('function')\n\t})\n\n\ttest('styled function returns a component function', () => {\n\t\texpect(typeof Button).toBe('object')\n\t})\n\n\ttest('component renders', () => {\n\t\tif (Button === null) return\n\n\t\trenderer.act(() => {\n\t\t\twrapper.update(react.createElement(Button))\n\t\t})\n\n\t\texpect(wrapper.toJSON()).toEqual({\n\t\t\ttype: 'button',\n\t\t\tprops: {\n\t\t\t\tclassName: 'c-iSEgvG',\n\t\t\t},\n\t\t\tchildren: null,\n\t\t})\n\n\t\texpect(sheet.toString()).toEqual(\n\t\t\t`--sxs{--sxs:2 c-iSEgvG}@media{` +\n\t\t\t\t`.c-iSEgvG{` +\n\t\t\t\t\t`background-color:gainsboro;` +\n\t\t\t\t\t`border-radius:9999px;` +\n\t\t\t\t\t`font-weight:500;` +\n\t\t\t\t\t`padding:0.75em 1em;` +\n\t\t\t\t\t`border:0;` +\n\t\t\t\t\t`transition:all 200ms ease` +\n\t\t\t\t`}` +\n\t\t\t\t`.c-iSEgvG:hover{` +\n\t\t\t\t\t`transform:translateY(-2px);` +\n\t\t\t\t\t`box-shadow:0 10px 25px rgba(0, 0, 0, .3)` +\n\t\t\t\t`}` +\n\t\t\t`}`\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/types.test.tsx",
    "content": "// core types.tests.ts\nimport * as Stitches from '../types/index'\nimport { createStitches, FontFace } from '../types/index'\n\nconst { css, globalCss, keyframes, styled, theme } = createStitches({\n\tutils: {\n\t\tmx: (value: Stitches.PropertyValue<'marginLeft'>) => ({\n\t\t\tmarginLeft: value,\n\t\t\tmarginRight: value,\n\t\t}),\n\t},\n\ttheme: {\n\t\tcolors: {\n\t\t\thiContrast: 'hsl(200, 12%, 5%)',\n\t\t\tloContrast: 'white',\n\t\t\tgray100: 'hsl(206, 20%, 98.8%)',\n\t\t\tgray200: 'hsl(206, 14%, 96.0%)',\n\t\t\tgray300: 'hsl(206, 13%, 93.7%)',\n\t\t\tgray400: 'hsl(206, 12%, 92.0%)',\n\t\t\tgray500: 'hsl(206, 12%, 89.5%)',\n\t\t\tgray600: 'hsl(206, 11%, 85.2%)',\n\t\t\tgray700: 'hsl(206, 10%, 80.0%)',\n\t\t\tgray800: 'hsl(206, 6%, 56.1%)',\n\t\t\tgray900: 'hsl(206, 6%, 43.9%)',\n\t\t\tpedro: '$gray100',\n\t\t},\n\t\tspace: {\n\t\t\t1: '10px',\n\t\t\t2: '20px',\n\t\t},\n\t\tfontSizes: {\n\t\t\t'1': '11px',\n\t\t\t'2': '13px',\n\t\t\t'3': '15px',\n\t\t\t'4': '17px',\n\t\t\t'5': '19px',\n\t\t\t'6': '21px',\n\t\t\t'7': '27px',\n\t\t\t'8': '35px',\n\t\t\t'9': '59px',\n\t\t},\n\t},\n\tmedia: {\n\t\tbp1: '(min-width: 620px)',\n\t},\n})\n\nkeyframes({\n\tfrom: {\n\t\tcolor: '$gray100',\n\t},\n\tto: {\n\t\tcolor: '$gray900',\n\t},\n})\n\nglobalCss({\n\tbody: {\n\t\tbackgroundColor: '$gray300',\n\t\t'@bp1': {\n\t\t\tbackgroundColor: '$gray100',\n\t\t},\n\t},\n})\n\n// const externalStyles: Arg<typeof css> = {\n// \t'@bp1': {\n// \t\tbackgroundColor: '$gray100',\n// \t},\n// \t'backgroundColor': '$gray300',\n// }\n\n// void externalStyles\n\nconst PotatoButton = styled('button', {\n\tvariants: {\n\t\tpeace: {\n\t\t\tmercy: {\n\t\t\t\tcolor: 'MediumOrchid',\n\t\t\t},\n\t\t\ttrust: {\n\t\t\t\tcolor: 'Turquoise',\n\t\t\t},\n\t\t},\n\t\thue: {\n\t\t\tblue: {\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t\tred: {\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t},\n\t},\n\tcompoundVariants: [\n\t\t{\n\t\t\thue: 'blue',\n\t\t\tcss: {\n\t\t\t\tbackgroundColor: '$gray200',\n\t\t\t},\n\t\t},\n\t],\n})\n\nvoid function Test() {\n\treturn (\n\t\t<PotatoButton peace=\"mercy\" hue=\"blue\" />\n\t)\n}\n\nconst ExtendedButton = styled(PotatoButton, {\n\twidth: '$$max',\n\tvariants: {\n\t\thue: {\n\t\t\tgreen: {\n\t\t\t\twidth: '$$max',\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t\tred: {\n\t\t\t\tbackgroundColor: '$gray100',\n\t\t\t},\n\t\t},\n\t\tlove: {\n\t\t\tfree: {\n\t\t\t\tcolor: 'ForestGreen',\n\t\t\t},\n\t\t\tgood: {\n\t\t\t\tcolor: 'GoldenRod',\n\t\t\t},\n\t\t}\n\t},\n\tdefaultVariants: {\n\t\thue: 'red',\n\t},\n\tcompoundVariants: [\n\t\t{\n\t\t\thue: 'green',\n\t\t\tcss: {\n\t\t\t\tbackgroundColor: '$gray200',\n\t\t\t},\n\t\t},\n\t],\n})\n\nvoid function Test() {\n\treturn (\n\t\t<ExtendedButton\n\t\t\tpeace=\"mercy\"\n\t\t\tlove=\"free\"\n\t\t\thue=\"red\"\n\t\t/>\n\t)\n}\n\nvoid function Test() {\n\treturn (\n\t\t<PotatoButton css={{\n\t\t\tbackgroundColor: '$gray300',\n\n\t\t\t'@all': {\n\t\t\t\tbackgroundColor: 'initial'\n\t\t\t},\n\n\t\t\t'@bp1': {\n\t\t\t\tbackgroundColor: 'initial',\n\t\t\t}\n\t\t}} />\n\t)\n}\n\n/* -------------------------------------------------------------------------------------------------\n * Issue #821\n * -----------------------------------------------------------------------------------------------*/\n\ntype UnionProps = { type: 'single', collapsible: boolean; } | { type: 'multiple' };\nconst UnionComponent: React.FC<UnionProps> = () => null\nconst StyledUnionComponent = styled(UnionComponent, {})\n\nvoid function Test() {\n\t<>\n\t\t<StyledUnionComponent type=\"single\" collapsible />\n\t\t{/* @ts-expect-error */}\n\t\t<StyledUnionComponent type=\"multiple\" collapsible />\n\t</>\n}\n\n/* -------------------------------------------------------------------------------------------------\n * Issue #1010\n * -----------------------------------------------------------------------------------------------*/\nconst fontFaceArray: FontFace[] = [\n\t{\n\t\tfontFamily: \"Inter\",\n\t\tsrc: `url(file.woff2) format(\"woff2\")`,\n\t\tfontDisplay: \"swap\"\n\t  }\n];\nconst styles = {\n\t\"@font-face\": fontFaceArray,\n\tbody: {\n\t  // Falbacking to a serif font so it's easier to see that the swap is hapenning\n\t  fontFamily: \"Inter, serif\"\n\t}\n  };\nvoid function Test() {\n\tglobalCss(styles)\n}\n"
  },
  {
    "path": "packages/react/tests/universal-serialization.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Serialization', () => {\n\tconst sheet = createStitches()\n\tconst { styled, getCssText, toString, createTheme } = sheet\n\n\tconst myComponent = styled('button', {\n\t\tall: 'unset',\n\t\tfont: 'inherit',\n\t\tmargin: 0,\n\t\tpadding: '0.5em 1em',\n\t})\n\tconst myComponentSelector = '.c-cLikna'\n\n\tconst myTheme = createTheme({\n\t\tcolors: {\n\t\t\tblue: 'dodgerblue',\n\t\t},\n\t})\n\tconst myThemeClass = 't-jPkpUS'\n\tconst myThemeSelector = `.${myThemeClass}`\n\n\ttest('Components implicitly return their selector', () => {\n\t\texpect(String(myComponent)).toBe(myComponentSelector)\n\t\texpect('' + myComponent).toBe(myComponentSelector)\n\t\texpect(`${myComponent}`).toBe(myComponentSelector)\n\t})\n\n\ttest('Components can explicitly return their selector', () => {\n\t\texpect(myComponent.selector).toBe(myComponentSelector)\n\t\texpect(myComponent.toString()).toBe(myComponentSelector)\n\t})\n\n\ttest('Themes implicitly return their className', () => {\n\t\texpect(String(myTheme)).toBe(myThemeClass)\n\t\texpect('' + myTheme).toBe(myThemeClass)\n\t\texpect(`${myTheme}`).toBe(myThemeClass)\n\t})\n\n\ttest('Themes can explicitly return their className', () => {\n\t\texpect(myTheme.className).toBe(myThemeClass)\n\t\texpect(myTheme.toString()).toBe(myThemeClass)\n\t})\n\n\ttest('Themes can explicitly return their selector', () => {\n\t\texpect(myTheme.selector).toBe(myThemeSelector)\n\t})\n\n\tmyComponent.render()\n\n\tconst sheetCssText = `--sxs{--sxs:0 t-jPkpUS}@media{${myThemeSelector}{--colors-blue:dodgerblue}}--sxs{--sxs:2 c-cLikna}@media{${myComponentSelector}{all:unset;font:inherit;margin:0;padding:0.5em 1em}}`\n\n\ttest('Sheets implicitly return their cssText', () => {\n\t\texpect(String(sheet)).toBe(sheetCssText)\n\t\texpect('' + sheet).toBe(sheetCssText)\n\t\texpect(`${sheet}`).toBe(sheetCssText)\n\t})\n\n\ttest('Sheets can explicitly return their cssText', () => {\n\t\texpect(getCssText()).toBe(sheetCssText)\n\t\texpect(toString()).toBe(sheetCssText)\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/variants.js",
    "content": "import { createStitches } from '../src/index.js'\n\ndescribe('Variants', () => {\n\ttest('Variant given undefined will revert to the default', () => {\n\t\tconst { styled } = createStitches()\n\t\tconst component = styled('div', {\n\t\t\tvariants: {\n\t\t\t\tcolor: {\n\t\t\t\t\tblue: {\n\t\t\t\t\t\tcolor: 'blue',\n\t\t\t\t\t},\n\t\t\t\t\tred: {\n\t\t\t\t\t\tcolor: 'red',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tdefaultVariants: {\n\t\t\t\tcolor: 'blue',\n\t\t\t},\n\t\t})\n\n\t\tconst expression1 = component.render()\n\t\texpect(expression1.props.className).toBe('c-PJLV c-PJLV-kydkiA-color-blue')\n\n\t\tconst expression3 = component.render({ color: undefined })\n\t\texpect(expression3.props.className).toBe('c-PJLV c-PJLV-kydkiA-color-blue')\n\t})\n\n\ttest('Variant with an explicit undefined will not use default variant', () => {\n\t\tconst { styled } = createStitches()\n\t\tconst component = styled('div', {\n\t\t\tvariants: {\n\t\t\t\tcolor: {\n\t\t\t\t\tblue: {\n\t\t\t\t\t\tcolor: 'blue',\n\t\t\t\t\t},\n\t\t\t\t\tred: {\n\t\t\t\t\t\tcolor: 'red',\n\t\t\t\t\t},\n\t\t\t\t\tundefined: {\n\t\t\t\t\t\tcolor: 'transparent',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tdefaultVariants: {\n\t\t\t\tcolor: 'blue',\n\t\t\t},\n\t\t})\n\n\t\tconst expression1 = component.render()\n\t\texpect(expression1.props.className).toBe('c-PJLV c-PJLV-kydkiA-color-blue')\n\n\t\tconst expression2 = component.render({ color: 'red' })\n\t\texpect(expression2.props.className).toBe('c-PJLV c-PJLV-gmqXFB-color-red')\n\n\t\tconst expression3 = component.render({ color: undefined })\n\t\texpect(expression3.props.className).toBe('c-PJLV c-PJLV-hzqlOY-color-undefined')\n\t})\n})\n"
  },
  {
    "path": "packages/react/tests/with-config-api.js",
    "content": "import * as React from 'react'\nimport * as renderer from 'react-test-renderer'\nimport { createStitches } from '../src/index.js'\n\ndescribe('styled.withConfig', () => {\n\ttest('Basic css calls without a config', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst ComponentToRender = styled.withConfig()('button', { color: 'DodgerBlue' })\n\t\tconst className = ComponentToRender.render().props.className\n\n\t\tconst cssString = getCssText()\n\n\t\texpect(className).toBe('c-dataoT')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-dataoT}@media{.c-dataoT{color:DodgerBlue}}`)\n\t})\n\n\ttest('Creates the correct className with a componentId', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tcomponentId: 'cool-id',\n\t\t}\n\t\tconst ComponentToRender = styled.withConfig(componentConfig)('button', { color: 'red' })\n\t\tconst className = ComponentToRender.render().props.className\n\n\t\tconst cssString = getCssText()\n\n\t\texpect(className).toBe('c-cool-id')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-cool-id}@media{.c-cool-id{color:red}}`)\n\t})\n\n\ttest('Creates the correct className with a displayName', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tdisplayName: 'my-cool-display-name',\n\t\t}\n\t\tconst ComponentToRender = styled.withConfig(componentConfig)('button', { color: 'red' })\n\t\tconst className = ComponentToRender.render().props.className\n\n\t\tconst cssString = getCssText()\n\n\t\texpect(className).toBe('c-my-cool-display-name-gmqXFB')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-my-cool-display-name-gmqXFB}@media{.c-my-cool-display-name-gmqXFB{color:red}}`)\n\t})\n\n\ttest('Creates the correct className with a displayName and componentId', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tcomponentId: 'cool-id',\n\t\t\tdisplayName: 'my-cool-display-name',\n\t\t}\n\t\tconst ComponentToRender = styled.withConfig(componentConfig)('button', { color: 'red' })\n\t\tconst className = ComponentToRender.render().props.className\n\n\t\tconst cssString = getCssText()\n\n\t\texpect(className).toBe('c-my-cool-display-name-cool-id')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-my-cool-display-name-cool-id}@media{.c-my-cool-display-name-cool-id{color:red}}`)\n\t})\n\n\ttest('Sets displayName on the component when passed as a componentConfig', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst componentConfig = {\n\t\t\tcomponentId: 'cool-id',\n\t\t\tdisplayName: 'my-cool-display-name',\n\t\t}\n\t\tconst ComponentToRender = styled.withConfig(componentConfig)('button', { color: 'red' })\n\t\texpect(ComponentToRender.displayName).toBe(componentConfig.displayName)\n\t})\n\n\ttest('Creates the correct className with a componentConfig while extending components', () => {\n\t\tconst { styled, getCssText } = createStitches()\n\n\t\tconst ComponentToExtend = styled.withConfig({\n\t\t\tcomponentId: 'component-to-extend-id',\n\t\t})({ color: 'red' })\n\t\tconst ComponentToRender = styled.withConfig({ componentId: 'cool-component-id' })(ComponentToExtend, { color: 'blue' })\n\n\t\tconst className = ComponentToRender.render().props.className\n\n\t\tconst cssString = getCssText()\n\n\t\texpect(className).toBe('c-component-to-extend-id c-cool-component-id')\n\t\texpect(cssString).toBe(`--sxs{--sxs:2 c-component-to-extend-id c-cool-component-id}@media{.c-component-to-extend-id{color:red}.c-cool-component-id{color:blue}}`)\n\t})\n})\n\ndescribe('shouldForwardStitchesProp', () => {\n\ttest('Forwards the variant to the underlying component when shouldForwardStitchesProp returns true', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst ReactComponent = ({ isOpen }) => {\n\t\t\treturn React.createElement('div', {}, isOpen ? 'open' : 'closed')\n\t\t}\n\n\t\tconst componentOneConfig = {\n\t\t\tshouldForwardStitchesProp: () => true,\n\t\t}\n\n\t\tconst StitchesComponent = styled.withConfig(componentOneConfig)(ReactComponent, {\n\t\t\tvariants: {\n\t\t\t\tisOpen: {\n\t\t\t\t\ttrue: { background: 'red' },\n\t\t\t\t\tfalse: { background: 'blue' },\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\n\t\tlet Rendered\n\t\trenderer.act(() => {\n\t\t\tRendered = renderer.create(React.createElement(StitchesComponent, { isOpen: true }))\n\t\t})\n\n\t\texpect(Rendered.toJSON().children[0]).toBe('open')\n\t})\n\n\ttest('Does not render the underlying ReactComponent when an as prop is provided and shouldForwardStitchesProp returns false', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst ReactComponent = ({ as: asProp }) => {\n\t\t\treturn React.createElement(asProp || 'button', {}, 'hola from child')\n\t\t}\n\n\t\tconst componentOneConfig = {\n\t\t\tshouldForwardStitchesProp: () => false,\n\t\t}\n\n\t\tconst StitchesComponent = styled.withConfig(componentOneConfig)(ReactComponent, {})\n\n\t\tlet Rendered\n\t\trenderer.act(() => {\n\t\t\tRendered = renderer.create(React.createElement(StitchesComponent, { as: 'a' }, ['comp']))\n\t\t})\n\n\t\texpect(Rendered.toJSON().children[0]).toBe('comp')\n\t})\n\n\ttest('Forwards the as prop to the underlying component when shouldForwardStitchesProp returns true and the asp prop was defined', () => {\n\t\tconst { styled } = createStitches()\n\n\t\tconst ReactComponent = ({ as: asProp }) => {\n\t\t\treturn React.createElement('div', {}, asProp || 'no-as-prop-found')\n\t\t}\n\n\t\tconst componentOneConfig = {\n\t\t\tshouldForwardStitchesProp: () => true,\n\t\t}\n\t\tconst StitchesComponent = styled.withConfig(componentOneConfig)(ReactComponent, {})\n\n\t\tlet Rendered\n\t\trenderer.act(() => {\n\t\t\tRendered = renderer.create(React.createElement(StitchesComponent))\n\t\t})\n\t\texpect(Rendered.toJSON().children[0]).toBe('no-as-prop-found')\n\n\t\trenderer.act(() => {\n\t\t\tRendered.update(React.createElement(StitchesComponent, { as: 'a' }))\n\t\t})\n\t\texpect(Rendered.toJSON().children[0]).toBe('a')\n\t})\n})\n"
  },
  {
    "path": "packages/react/types/config.d.ts",
    "content": "import type * as CSSUtil from './css-util.js'\nimport type Stitches from './stitches.js'\n\n/** Configuration Interface */\ndeclare namespace ConfigType {\n\t/** Prefix interface. */\n\texport type Prefix<T = ''> = T extends string ? T: string\n\n\t/** Media interface. */\n\texport type Media<T = {}> = {\n\t\t[name in keyof T]: T[name] extends string ? T[name] : string\n\t}\n\n\t/** Theme interface. */\n\texport type Theme<T = {}> = {\n\t\tborderStyles?: { [token in number | string]: boolean | number | string }\n\t\tborderWidths?: { [token in number | string]: boolean | number | string }\n\t\tcolors?: { [token in number | string]: boolean | number | string }\n\t\tfonts?: { [token in number | string]: boolean | number | string }\n\t\tfontSizes?: { [token in number | string]: boolean | number | string }\n\t\tfontWeights?: { [token in number | string]: boolean | number | string }\n\t\tletterSpacings?: { [token in number | string]: boolean | number | string }\n\t\tlineHeights?: { [token in number | string]: boolean | number | string }\n\t\tradii?: { [token in number | string]: boolean | number | string }\n\t\tshadows?: { [token in number | string]: boolean | number | string }\n\t\tsizes?: { [token in number | string]: boolean | number | string }\n\t\tspace?: { [token in number | string]: boolean | number | string }\n\t\ttransitions?: { [token in number | string]: boolean | number | string }\n\t\tzIndices?: { [token in number | string]: boolean | number | string }\n\t} & {\n\t\t[Scale in keyof T]: {\n\t\t\t[Token in keyof T[Scale]]: T[Scale][Token] extends (boolean | number | string) ? T[Scale][Token] : (boolean | number | string)\n\t\t}\n\t}\n\n\t/** ThemeMap interface. */\n\texport type ThemeMap<T = {}> = {\n\t\t[Property in keyof T]: T[Property] extends string ? T[Property] : string\n\t}\n\n\t/** Utility interface. */\n\texport type Utils<T = {}> = {\n\t\t[Property in keyof T]: T[Property] extends (value: infer V) => {} ? T[Property] | ((value: V) => {\n\t\t\t[K in keyof CSSUtil.CSSProperties]?: CSSUtil.CSSProperties[K] | V\n\t\t}) : never\n\t}\n}\n\n/** Default ThemeMap. */\nexport interface DefaultThemeMap {\n\tgap: 'space'\n\tgridGap: 'space'\n\tcolumnGap: 'space'\n\tgridColumnGap: 'space'\n\trowGap: 'space'\n\tgridRowGap: 'space'\n\tinset: 'space'\n\tinsetBlock: 'space'\n\tinsetBlockEnd: 'space'\n\tinsetBlockStart: 'space'\n\tinsetInline: 'space'\n\tinsetInlineEnd: 'space'\n\tinsetInlineStart: 'space'\n\tmargin: 'space'\n\tmarginTop: 'space'\n\tmarginRight: 'space'\n\tmarginBottom: 'space'\n\tmarginLeft: 'space'\n\tmarginBlock: 'space'\n\tmarginBlockEnd: 'space'\n\tmarginBlockStart: 'space'\n\tmarginInline: 'space'\n\tmarginInlineEnd: 'space'\n\tmarginInlineStart: 'space'\n\tpadding: 'space'\n\tpaddingTop: 'space'\n\tpaddingRight: 'space'\n\tpaddingBottom: 'space'\n\tpaddingLeft: 'space'\n\tpaddingBlock: 'space'\n\tpaddingBlockEnd: 'space'\n\tpaddingBlockStart: 'space'\n\tpaddingInline: 'space'\n\tpaddingInlineEnd: 'space'\n\tpaddingInlineStart: 'space'\n\tscrollMargin: 'space'\n\tscrollMarginTop: 'space'\n\tscrollMarginRight: 'space'\n\tscrollMarginBottom: 'space'\n\tscrollMarginLeft: 'space'\n\tscrollMarginBlock: 'space'\n\tscrollMarginBlockEnd: 'space'\n\tscrollMarginBlockStart: 'space'\n\tscrollMarginInline: 'space'\n\tscrollMarginInlineEnd: 'space'\n\tscrollMarginInlineStart: 'space'\n\tscrollPadding: 'space'\n\tscrollPaddingTop: 'space'\n\tscrollPaddingRight: 'space'\n\tscrollPaddingBottom: 'space'\n\tscrollPaddingLeft: 'space'\n\tscrollPaddingBlock: 'space'\n\tscrollPaddingBlockEnd: 'space'\n\tscrollPaddingBlockStart: 'space'\n\tscrollPaddingInline: 'space'\n\tscrollPaddingInlineEnd: 'space'\n\tscrollPaddingInlineStart: 'space'\n\ttop: 'space'\n\tright: 'space'\n\tbottom: 'space'\n\tleft: 'space'\n\n\tfontSize: 'fontSizes'\n\n\tbackground: 'colors'\n\tbackgroundColor: 'colors'\n\tbackgroundImage: 'colors'\n\tborderImage: 'colors'\n\tborder: 'colors'\n\tborderBlock: 'colors'\n\tborderBlockEnd: 'colors'\n\tborderBlockStart: 'colors'\n\tborderBottom: 'colors'\n\tborderBottomColor: 'colors'\n\tborderColor: 'colors'\n\tborderInline: 'colors'\n\tborderInlineEnd: 'colors'\n\tborderInlineStart: 'colors'\n\tborderLeft: 'colors'\n\tborderLeftColor: 'colors'\n\tborderRight: 'colors'\n\tborderRightColor: 'colors'\n\tborderTop: 'colors'\n\tborderTopColor: 'colors'\n\tcaretColor: 'colors'\n\tcolor: 'colors'\n\tcolumnRuleColor: 'colors'\n\toutline: 'colors'\n\toutlineColor: 'colors'\n\tfill: 'colors'\n\tstroke: 'colors'\n\ttextDecorationColor: 'colors'\n\n\tfontFamily: 'fonts'\n\n\tfontWeight: 'fontWeights'\n\tlineHeight: 'lineHeights'\n\n\tletterSpacing: 'letterSpacings'\n\n\tblockSize: 'sizes'\n\tminBlockSize: 'sizes'\n\tmaxBlockSize: 'sizes'\n\tinlineSize: 'sizes'\n\tminInlineSize: 'sizes'\n\tmaxInlineSize: 'sizes'\n\twidth: 'sizes'\n\tminWidth: 'sizes'\n\tmaxWidth: 'sizes'\n\theight: 'sizes'\n\tminHeight: 'sizes'\n\tmaxHeight: 'sizes'\n\tflexBasis: 'sizes'\n\tgridTemplateColumns: 'sizes'\n\tgridTemplateRows: 'sizes'\n\n\tborderWidth: 'borderWidths'\n\tborderTopWidth: 'borderWidths'\n\tborderLeftWidth: 'borderWidths'\n\tborderRightWidth: 'borderWidths'\n\tborderBottomWidth: 'borderWidths'\n\n\tborderStyle: 'borderStyles'\n\tborderTopStyle: 'borderStyles'\n\tborderLeftStyle: 'borderStyles'\n\tborderRightStyle: 'borderStyles'\n\tborderBottomStyle: 'borderStyles'\n\n\tborderRadius: 'radii'\n\tborderTopLeftRadius: 'radii'\n\tborderTopRightRadius: 'radii'\n\tborderBottomRightRadius: 'radii'\n\tborderBottomLeftRadius: 'radii'\n\n\tboxShadow: 'shadows'\n\ttextShadow: 'shadows'\n\n\ttransition: 'transitions'\n\n\tzIndex: 'zIndices'\n}\n\n/** Returns a function used to create a new Stitches interface. */\nexport type CreateStitches = {\n\t<\n\t\tPrefix extends string = '',\n\t\tMedia extends {} = {},\n\t\tTheme extends {} = {},\n\t\tThemeMap extends {} = DefaultThemeMap,\n\t\tUtils extends {} = {}\n\t>(\n\t\tconfig?: {\n\t\t\tprefix?: ConfigType.Prefix<Prefix>\n\t\t\tmedia?: ConfigType.Media<Media>\n\t\t\ttheme?: ConfigType.Theme<Theme>\n\t\t\tthemeMap?: ConfigType.ThemeMap<ThemeMap>\n\t\t\tutils?: ConfigType.Utils<Utils>\n\t\t}\n\t): Stitches<Prefix, Media, Theme, ThemeMap, Utils>\n}\n"
  },
  {
    "path": "packages/react/types/css-util.d.ts",
    "content": "import type * as Native from './css.js'\nimport type * as Config from './config.js'\nimport type * as ThemeUtil from './theme.js'\nimport type * as Util from './util.js'\n\nexport { Native }\n\n/** CSS style declaration object. */\nexport interface CSSProperties extends Native.StandardLonghandProperties, Native.StandardShorthandProperties, Native.SvgProperties {}\n\ntype ValueByPropertyName<PropertyName> = PropertyName extends keyof CSSProperties ? CSSProperties[PropertyName] : never\n\ntype TokenByPropertyName<PropertyName, Theme, ThemeMap> = PropertyName extends keyof ThemeMap ? TokenByScaleName<ThemeMap[PropertyName], Theme> : never\n\ntype TokenByScaleName<ScaleName, Theme> = ScaleName extends keyof Theme ? Util.Prefixed<'$', keyof Theme[ScaleName]> : never\n\n/** Returns a Style interface, leveraging the given media and style map. */\nexport type CSS<\n\tMedia = {},\n\tTheme = {},\n\tThemeMap = Config.DefaultThemeMap,\n\tUtils = {},\n> = (\n\t// nested at-rule css styles\n\t& {\n\t\t[K in Util.Prefixed<'@', keyof Media>]?: CSS<Media, Theme, ThemeMap, Utils>\n\t}\n\t// known property styles\n\t& {\n\t\t[K in keyof CSSProperties as K extends keyof Utils ? never : K]?: (\n\t\t\t| ValueByPropertyName<K>\n\t\t\t| TokenByPropertyName<K, Theme, ThemeMap>\n\t\t\t| Native.Globals\n\t\t\t| ThemeUtil.ScaleValue\n\t\t\t| Util.Index\n\t\t\t| undefined\n\t\t)\n\t}\n\t// known utility styles\n\t& {\n\t\t[K in keyof Utils]?: Utils[K] extends (arg: infer P) => any\n\t\t\t? (\n\t\t\t\t| (\n\t\t\t\t\tP extends any[]\n\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t| (\n\t\t\t\t\t\t\t\t$$PropertyValue extends keyof P[0]\n\t\t\t\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t\t\t\t| ValueByPropertyName<P[0][$$PropertyValue]>\n\t\t\t\t\t\t\t\t\t\t| TokenByPropertyName<P[0][$$PropertyValue], Theme, ThemeMap>\n\t\t\t\t\t\t\t\t\t\t| Native.Globals\n\t\t\t\t\t\t\t\t\t\t| ThemeUtil.ScaleValue\n\t\t\t\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t: $$ScaleValue extends keyof P[0]\n\t\t\t\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t\t\t\t| TokenByScaleName<P[0][$$ScaleValue], Theme>\n\t\t\t\t\t\t\t\t\t\t| { scale: P[0][$$ScaleValue] }\n\t\t\t\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t: never\n\t\t\t\t\t\t\t)[]\n\t\t\t\t\t\t\t| P\n\t\t\t\t\t\t)\n\t\t\t\t\t: $$PropertyValue extends keyof P\n\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t| ValueByPropertyName<P[$$PropertyValue]>\n\t\t\t\t\t\t\t| TokenByPropertyName<P[$$PropertyValue], Theme, ThemeMap>\n\t\t\t\t\t\t\t| Native.Globals\n\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t)\n\t\t\t\t\t: $$ScaleValue extends keyof P\n\t\t\t\t\t\t? (\n\t\t\t\t\t\t\t| TokenByScaleName<P[$$ScaleValue], Theme>\n\t\t\t\t\t\t\t| { scale: P[$$ScaleValue] }\n\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t\t)\n\t\t\t\t\t: never\n\t\t\t\t)\n\t\t\t\t| P\n\t\t\t)\n\t\t: never\n\t}\n\t// known theme styles\n\t& {\n\t\t[K in keyof ThemeMap as K extends keyof CSSProperties ? never : K extends keyof Utils ? never : K]?: (\n\t\t\t\t| Native.Globals\n\t\t\t\t| Util.Index\n\t\t\t\t| undefined\n\t\t\t)\n\t}\n\t// unknown css declaration styles\n\t& {\n\t\t/** Unknown property. */\n\t\t[K: string]: (\n\t\t\t| number\n\t\t\t| string\n\t\t\t| CSS<Media, Theme, ThemeMap, Utils>\n\t\t\t| {}\n\t\t\t| undefined\n\t\t)\n\t}\n)\n\n/** Unique symbol used to reference a property value. */\nexport declare const $$PropertyValue: unique symbol\n\n/** Unique symbol used to reference a property value. */\nexport type $$PropertyValue = typeof $$PropertyValue\n\n/** Unique symbol used to reference a token value. */\nexport declare const $$ScaleValue: unique symbol\n\n/** Unique symbol used to reference a token value. */\nexport type $$ScaleValue = typeof $$ScaleValue\n\nexport declare const $$ThemeValue: unique symbol\n\nexport type $$ThemeValue = typeof $$ThemeValue\n\n// https://github.com/microsoft/TypeScript/issues/37888#issuecomment-846638356\nexport type WithPropertyValue<T> = {\n\treadonly [K in $$PropertyValue]: T\n}\nexport type WithScaleValue<T> = {\n\treadonly [K in $$ScaleValue]: T;\n}\n"
  },
  {
    "path": "packages/react/types/css.d.ts",
    "content": "/** @license MIT License\n * Copyright (c) 2017-present, Fredrik Nicol\n * Copyright (c) 2021-present, Jonathan Neal\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\nexport {};\n\n\nexport interface StandardLonghandProperties {\n  /**\n   * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.\n   *\n   * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  alignContent?: Property.AlignContent;\n  /**\n   * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  alignItems?: Property.AlignItems;\n  /**\n   * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  alignSelf?: Property.AlignSelf;\n  /**\n   * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.\n   *\n   * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  alignTracks?: Property.AlignTracks;\n  /**\n   * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  animationDelay?: Property.AnimationDelay;\n  /**\n   * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.\n   *\n   * **Syntax**: `<single-animation-direction>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  animationDirection?: Property.AnimationDirection;\n  /**\n   * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  animationDuration?: Property.AnimationDuration;\n  /**\n   * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.\n   *\n   * **Syntax**: `<single-animation-fill-mode>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  animationFillMode?: Property.AnimationFillMode;\n  /**\n   * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.\n   *\n   * **Syntax**: `<single-animation-iteration-count>#`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  animationIterationCount?: Property.AnimationIterationCount;\n  /**\n   * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.\n   *\n   * **Syntax**: `[ none | <keyframes-name> ]#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  animationName?: Property.AnimationName;\n  /**\n   * The **`animation-play-state`** CSS property sets whether an animation is running or paused.\n   *\n   * **Syntax**: `<single-animation-play-state>#`\n   *\n   * **Initial value**: `running`\n   *\n   */\n  animationPlayState?: Property.AnimationPlayState;\n  /**\n   * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  animationTimingFunction?: Property.AnimationTimingFunction;\n  /**\n   * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.\n   *\n   * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  appearance?: Property.Appearance;\n  /**\n   * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.\n   *\n   * **Syntax**: `auto | <ratio>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  aspectRatio?: Property.AspectRatio;\n  /**\n   * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  backdropFilter?: Property.BackdropFilter;\n  /**\n   * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.\n   *\n   * **Syntax**: `visible | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  backfaceVisibility?: Property.BackfaceVisibility;\n  /**\n   * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.\n   *\n   * **Syntax**: `<attachment>#`\n   *\n   * **Initial value**: `scroll`\n   *\n   */\n  backgroundAttachment?: Property.BackgroundAttachment;\n  /**\n   * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.\n   *\n   * **Syntax**: `<blend-mode>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  backgroundBlendMode?: Property.BackgroundBlendMode;\n  /**\n   * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  backgroundClip?: Property.BackgroundClip;\n  /**\n   * The **`background-color`** CSS property sets the background color of an element.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `transparent`\n   *\n   */\n  backgroundColor?: Property.BackgroundColor;\n  /**\n   * The **`background-image`** CSS property sets one or more background images on an element.\n   *\n   * **Syntax**: `<bg-image>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  backgroundImage?: Property.BackgroundImage;\n  /**\n   * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  backgroundOrigin?: Property.BackgroundOrigin;\n  /**\n   * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `left`\n   *\n   */\n  backgroundPositionX?: Property.BackgroundPositionX;\n  /**\n   * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  backgroundPositionY?: Property.BackgroundPositionY;\n  /**\n   * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `repeat`\n   *\n   */\n  backgroundRepeat?: Property.BackgroundRepeat;\n  /**\n   * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto auto`\n   *\n   */\n  backgroundSize?: Property.BackgroundSize;\n  /**\n   * **Syntax**: `clip | ellipsis | <string>`\n   *\n   * **Initial value**: `clip`\n   */\n  blockOverflow?: Property.BlockOverflow;\n  /**\n   * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  blockSize?: Property.BlockSize;\n  /**\n   * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBlockColor?: Property.BorderBlockColor;\n  /**\n   * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBlockEndColor?: Property.BorderBlockEndColor;\n  /**\n   * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBlockEndStyle?: Property.BorderBlockEndStyle;\n  /**\n   * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBlockEndWidth?: Property.BorderBlockEndWidth;\n  /**\n   * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBlockStartColor?: Property.BorderBlockStartColor;\n  /**\n   * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBlockStartStyle?: Property.BorderBlockStartStyle;\n  /**\n   * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBlockStartWidth?: Property.BorderBlockStartWidth;\n  /**\n   * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBlockStyle?: Property.BorderBlockStyle;\n  /**\n   * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBlockWidth?: Property.BorderBlockWidth;\n  /**\n   * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderBottomColor?: Property.BorderBottomColor;\n  /**\n   * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderBottomLeftRadius?: Property.BorderBottomLeftRadius;\n  /**\n   * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderBottomRightRadius?: Property.BorderBottomRightRadius;\n  /**\n   * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderBottomStyle?: Property.BorderBottomStyle;\n  /**\n   * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderBottomWidth?: Property.BorderBottomWidth;\n  /**\n   * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.\n   *\n   * **Syntax**: `collapse | separate`\n   *\n   * **Initial value**: `separate`\n   *\n   */\n  borderCollapse?: Property.BorderCollapse;\n  /**\n   * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderEndEndRadius?: Property.BorderEndEndRadius;\n  /**\n   * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderEndStartRadius?: Property.BorderEndStartRadius;\n  /**\n   * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderImageOutset?: Property.BorderImageOutset;\n  /**\n   * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  borderImageRepeat?: Property.BorderImageRepeat;\n  /**\n   * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.\n   *\n   * **Syntax**: `<number-percentage>{1,4} && fill?`\n   *\n   * **Initial value**: `100%`\n   *\n   */\n  borderImageSlice?: Property.BorderImageSlice;\n  /**\n   * The **`border-image-source`** CSS property sets the source image used to create an element's border image.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderImageSource?: Property.BorderImageSource;\n  /**\n   * The **`border-image-width`** CSS property sets the width of an element's border image.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  borderImageWidth?: Property.BorderImageWidth;\n  /**\n   * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderInlineColor?: Property.BorderInlineColor;\n  /**\n   * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderInlineEndColor?: Property.BorderInlineEndColor;\n  /**\n   * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderInlineEndStyle?: Property.BorderInlineEndStyle;\n  /**\n   * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderInlineEndWidth?: Property.BorderInlineEndWidth;\n  /**\n   * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderInlineStartColor?: Property.BorderInlineStartColor;\n  /**\n   * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderInlineStartStyle?: Property.BorderInlineStartStyle;\n  /**\n   * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderInlineStartWidth?: Property.BorderInlineStartWidth;\n  /**\n   * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderInlineStyle?: Property.BorderInlineStyle;\n  /**\n   * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderInlineWidth?: Property.BorderInlineWidth;\n  /**\n   * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderLeftColor?: Property.BorderLeftColor;\n  /**\n   * The **`border-left-style`** CSS property sets the line style of an element's left `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderLeftStyle?: Property.BorderLeftStyle;\n  /**\n   * The **`border-left-width`** CSS property sets the width of the left border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderLeftWidth?: Property.BorderLeftWidth;\n  /**\n   * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderRightColor?: Property.BorderRightColor;\n  /**\n   * The **`border-right-style`** CSS property sets the line style of an element's right `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderRightStyle?: Property.BorderRightStyle;\n  /**\n   * The **`border-right-width`** CSS property sets the width of the right border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderRightWidth?: Property.BorderRightWidth;\n  /**\n   * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.\n   *\n   * **Syntax**: `<length> <length>?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderSpacing?: Property.BorderSpacing;\n  /**\n   * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderStartEndRadius?: Property.BorderStartEndRadius;\n  /**\n   * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderStartStartRadius?: Property.BorderStartStartRadius;\n  /**\n   * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  borderTopColor?: Property.BorderTopColor;\n  /**\n   * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderTopLeftRadius?: Property.BorderTopLeftRadius;\n  /**\n   * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  borderTopRightRadius?: Property.BorderTopRightRadius;\n  /**\n   * The **`border-top-style`** CSS property sets the line style of an element's top `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  borderTopStyle?: Property.BorderTopStyle;\n  /**\n   * The **`border-top-width`** CSS property sets the width of the top border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  borderTopWidth?: Property.BorderTopWidth;\n  /**\n   * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  bottom?: Property.Bottom;\n  /**\n   * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.\n   *\n   * **Syntax**: `slice | clone`\n   *\n   * **Initial value**: `slice`\n   *\n   */\n  boxDecorationBreak?: Property.BoxDecorationBreak;\n  /**\n   * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.\n   *\n   * **Syntax**: `none | <shadow>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  boxShadow?: Property.BoxShadow;\n  /**\n   * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.\n   *\n   * **Syntax**: `content-box | border-box`\n   *\n   * **Initial value**: `content-box`\n   *\n   */\n  boxSizing?: Property.BoxSizing;\n  /**\n   * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  breakAfter?: Property.BreakAfter;\n  /**\n   * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  breakBefore?: Property.BreakBefore;\n  /**\n   * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  breakInside?: Property.BreakInside;\n  /**\n   * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.\n   *\n   * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  captionSide?: Property.CaptionSide;\n  /**\n   * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.\n   *\n   * **Syntax**: `auto | <color>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  caretColor?: Property.CaretColor;\n  /**\n   * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.\n   *\n   * **Syntax**: `none | left | right | both | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  clear?: Property.Clear;\n  /**\n   * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.\n   *\n   * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  clipPath?: Property.ClipPath;\n  /**\n   * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: Varies from one browser to another\n   *\n   */\n  color?: Property.Color;\n  /**\n   * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.\n   *\n   * **Syntax**: `economy | exact`\n   *\n   * **Initial value**: `economy`\n   *\n   */\n  colorAdjust?: Property.ColorAdjust;\n  /**\n   * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.\n   *\n   * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  colorScheme?: Property.ColorScheme;\n  /**\n   * The **`column-count`** CSS property breaks an element's content into the specified number of columns.\n   *\n   * **Syntax**: `<integer> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  columnCount?: Property.ColumnCount;\n  /**\n   * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.\n   *\n   * **Syntax**: `auto | balance | balance-all`\n   *\n   * **Initial value**: `balance`\n   *\n   */\n  columnFill?: Property.ColumnFill;\n  /**\n   * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  columnGap?: Property.ColumnGap;\n  /**\n   * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  columnRuleColor?: Property.ColumnRuleColor;\n  /**\n   * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  columnRuleStyle?: Property.ColumnRuleStyle;\n  /**\n   * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  columnRuleWidth?: Property.ColumnRuleWidth;\n  /**\n   * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.\n   *\n   * **Syntax**: `none | all`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  columnSpan?: Property.ColumnSpan;\n  /**\n   * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.\n   *\n   * **Syntax**: `<length> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  columnWidth?: Property.ColumnWidth;\n  /**\n   * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.\n   *\n   * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  contain?: Property.Contain;\n  /**\n   * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._\n   *\n   * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  content?: Property.Content;\n  /**\n   * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.\n   *\n   * **Syntax**: `visible | auto | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  contentVisibility?: Property.ContentVisibility;\n  /**\n   * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  counterIncrement?: Property.CounterIncrement;\n  /**\n   * The **`counter-reset`** CSS property resets a CSS counter to a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  counterReset?: Property.CounterReset;\n  /**\n   * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  counterSet?: Property.CounterSet;\n  /**\n   * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.\n   *\n   * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  cursor?: Property.Cursor;\n  /**\n   * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).\n   *\n   * **Syntax**: `ltr | rtl`\n   *\n   * **Initial value**: `ltr`\n   *\n   */\n  direction?: Property.Direction;\n  /**\n   * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.\n   *\n   * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`\n   *\n   * **Initial value**: `inline`\n   *\n   */\n  display?: Property.Display;\n  /**\n   * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.\n   *\n   * **Syntax**: `show | hide`\n   *\n   * **Initial value**: `show`\n   *\n   */\n  emptyCells?: Property.EmptyCells;\n  /**\n   * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  filter?: Property.Filter;\n  /**\n   * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.\n   *\n   * **Syntax**: `content | <'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  flexBasis?: Property.FlexBasis;\n  /**\n   * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).\n   *\n   * **Syntax**: `row | row-reverse | column | column-reverse`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  flexDirection?: Property.FlexDirection;\n  /**\n   * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  flexGrow?: Property.FlexGrow;\n  /**\n   * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  flexShrink?: Property.FlexShrink;\n  /**\n   * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.\n   *\n   * **Syntax**: `nowrap | wrap | wrap-reverse`\n   *\n   * **Initial value**: `nowrap`\n   *\n   */\n  flexWrap?: Property.FlexWrap;\n  /**\n   * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).\n   *\n   * **Syntax**: `left | right | none | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  float?: Property.Float;\n  /**\n   * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.\n   *\n   * **Syntax**: `[ <family-name> | <generic-family> ]#`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  fontFamily?: Property.FontFamily;\n  /**\n   * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.\n   *\n   * **Syntax**: `normal | <feature-tag-value>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontFeatureSettings?: Property.FontFeatureSettings;\n  /**\n   * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.\n   *\n   * **Syntax**: `auto | normal | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  fontKerning?: Property.FontKerning;\n  /**\n   * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.\n   *\n   * **Syntax**: `normal | <string>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontLanguageOverride?: Property.FontLanguageOverride;\n  /**\n   * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  fontOpticalSizing?: Property.FontOpticalSizing;\n  /**\n   * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.\n   *\n   * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  fontSize?: Property.FontSize;\n  /**\n   * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).\n   *\n   * **Syntax**: `none | <number>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  fontSizeAdjust?: Property.FontSizeAdjust;\n  /**\n   * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.\n   *\n   * **Syntax**: `auto | always | <absolute-size> | <length>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  fontSmooth?: Property.FontSmooth;\n  /**\n   * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.\n   *\n   * **Syntax**: `<font-stretch-absolute>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontStretch?: Property.FontStretch;\n  /**\n   * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.\n   *\n   * **Syntax**: `normal | italic | oblique <angle>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontStyle?: Property.FontStyle;\n  /**\n   * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.\n   *\n   * **Syntax**: `none | [ weight || style ]`\n   *\n   * **Initial value**: `weight style`\n   *\n   */\n  fontSynthesis?: Property.FontSynthesis;\n  /**\n   * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariant?: Property.FontVariant;\n  /**\n   * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.\n   *\n   * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantCaps?: Property.FontVariantCaps;\n  /**\n   * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.\n   *\n   * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantEastAsian?: Property.FontVariantEastAsian;\n  /**\n   * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantLigatures?: Property.FontVariantLigatures;\n  /**\n   * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.\n   *\n   * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantNumeric?: Property.FontVariantNumeric;\n  /**\n   * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.\n   *\n   * **Syntax**: `normal | sub | super`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariantPosition?: Property.FontVariantPosition;\n  /**\n   * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.\n   *\n   * **Syntax**: `normal | [ <string> <number> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontVariationSettings?: Property.FontVariationSettings;\n  /**\n   * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.\n   *\n   * **Syntax**: `<font-weight-absolute> | bolder | lighter`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  fontWeight?: Property.FontWeight;\n  /**\n   * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  forcedColorAdjust?: Property.ForcedColorAdjust;\n  /**\n   * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridAutoColumns?: Property.GridAutoColumns;\n  /**\n   * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.\n   *\n   * **Syntax**: `[ row | column ] || dense`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  gridAutoFlow?: Property.GridAutoFlow;\n  /**\n   * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridAutoRows?: Property.GridAutoRows;\n  /**\n   * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridColumnEnd?: Property.GridColumnEnd;\n  /**\n   * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridColumnStart?: Property.GridColumnStart;\n  /**\n   * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridRowEnd?: Property.GridRowEnd;\n  /**\n   * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  gridRowStart?: Property.GridRowStart;\n  /**\n   * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n   *\n   * **Syntax**: `none | <string>+`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  gridTemplateAreas?: Property.GridTemplateAreas;\n  /**\n   * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  gridTemplateColumns?: Property.GridTemplateColumns;\n  /**\n   * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  gridTemplateRows?: Property.GridTemplateRows;\n\t/**\n   * The **`grid-gap`** CSS property sets the size of the gap (gutter) between between rows and columns.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\t\n  gridGap?: Property.GridGap;\n  /**\n   * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.\n   *\n   * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  hangingPunctuation?: Property.HangingPunctuation;\n  /**\n   * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  height?: Property.Height;\n  /**\n   * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.\n   *\n   * **Syntax**: `none | manual | auto`\n   *\n   * **Initial value**: `manual`\n   *\n   */\n  hyphens?: Property.Hyphens;\n  /**\n   * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.\n   *\n   * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`\n   *\n   * **Initial value**: `from-image`\n   *\n   */\n  imageOrientation?: Property.ImageOrientation;\n  /**\n   * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.\n   *\n   * **Syntax**: `auto | crisp-edges | pixelated`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  imageRendering?: Property.ImageRendering;\n  /**\n   * **Syntax**: `[ from-image || <resolution> ] && snap?`\n   *\n   * **Initial value**: `1dppx`\n   */\n  imageResolution?: Property.ImageResolution;\n  /**\n   * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.\n   *\n   * **Syntax**: `normal | [ <number> <integer>? ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  initialLetter?: Property.InitialLetter;\n  /**\n   * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  inlineSize?: Property.InlineSize;\n  /**\n   * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.\n   *\n   * **Syntax**: `<'top'>{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  inset?: Property.Inset;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetBlock?: Property.InsetBlock;\n  /**\n   * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetBlockEnd?: Property.InsetBlockEnd;\n  /**\n   * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetBlockStart?: Property.InsetBlockStart;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetInline?: Property.InsetInline;\n  /**\n   * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetInlineEnd?: Property.InsetInlineEnd;\n  /**\n   * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  insetInlineStart?: Property.InsetInlineStart;\n  /**\n   * The **`isolation`** CSS property determines whether an element must create a new stacking context.\n   *\n   * **Syntax**: `auto | isolate`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  isolation?: Property.Isolation;\n  /**\n   * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.\n   *\n   * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  justifyContent?: Property.JustifyContent;\n  /**\n   * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`\n   *\n   * **Initial value**: `legacy`\n   *\n   */\n  justifyItems?: Property.JustifyItems;\n  /**\n   * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  justifySelf?: Property.JustifySelf;\n  /**\n   * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.\n   *\n   * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  justifyTracks?: Property.JustifyTracks;\n  /**\n   * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  left?: Property.Left;\n  /**\n   * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.\n   *\n   * **Syntax**: `normal | <length>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  letterSpacing?: Property.LetterSpacing;\n  /**\n   * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.\n   *\n   * **Syntax**: `auto | loose | normal | strict | anywhere`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  lineBreak?: Property.LineBreak;\n  /**\n   * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.\n   *\n   * **Syntax**: `normal | <number> | <length> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  lineHeight?: Property.LineHeight;\n  /**\n   * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  lineHeightStep?: Property.LineHeightStep;\n  /**\n   * The **`list-style-image`** CSS property sets an image to be used as the list item marker.\n   *\n   * **Syntax**: `<image> | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  listStyleImage?: Property.ListStyleImage;\n  /**\n   * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.\n   *\n   * **Syntax**: `inside | outside`\n   *\n   * **Initial value**: `outside`\n   *\n   */\n  listStylePosition?: Property.ListStylePosition;\n  /**\n   * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.\n   *\n   * **Syntax**: `<counter-style> | <string> | none`\n   *\n   * **Initial value**: `disc`\n   *\n   */\n  listStyleType?: Property.ListStyleType;\n  /**\n   * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBlock?: Property.MarginBlock;\n  /**\n   * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBlockEnd?: Property.MarginBlockEnd;\n  /**\n   * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBlockStart?: Property.MarginBlockStart;\n  /**\n   * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginBottom?: Property.MarginBottom;\n  /**\n   * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginInline?: Property.MarginInline;\n  /**\n   * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginInlineEnd?: Property.MarginInlineEnd;\n  /**\n   * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginInlineStart?: Property.MarginInlineStart;\n  /**\n   * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginLeft?: Property.MarginLeft;\n  /**\n   * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginRight?: Property.MarginRight;\n  /**\n   * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  marginTop?: Property.MarginTop;\n  /**\n   * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `alpha`\n   */\n  maskBorderMode?: Property.MaskBorderMode;\n  /**\n   * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maskBorderOutset?: Property.MaskBorderOutset;\n  /**\n   * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  maskBorderRepeat?: Property.MaskBorderRepeat;\n  /**\n   * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.\n   *\n   * **Syntax**: `<number-percentage>{1,4} fill?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maskBorderSlice?: Property.MaskBorderSlice;\n  /**\n   * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maskBorderSource?: Property.MaskBorderSource;\n  /**\n   * The **`mask-border-width`** CSS property sets the width of an element's mask border.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  maskBorderWidth?: Property.MaskBorderWidth;\n  /**\n   * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.\n   *\n   * **Syntax**: `[ <geometry-box> | no-clip ]#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  maskClip?: Property.MaskClip;\n  /**\n   * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.\n   *\n   * **Syntax**: `<compositing-operator>#`\n   *\n   * **Initial value**: `add`\n   *\n   */\n  maskComposite?: Property.MaskComposite;\n  /**\n   * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.\n   *\n   * **Syntax**: `<mask-reference>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maskImage?: Property.MaskImage;\n  /**\n   * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.\n   *\n   * **Syntax**: `<masking-mode>#`\n   *\n   * **Initial value**: `match-source`\n   *\n   */\n  maskMode?: Property.MaskMode;\n  /**\n   * The **`mask-origin`** CSS property sets the origin of a mask.\n   *\n   * **Syntax**: `<geometry-box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  maskOrigin?: Property.MaskOrigin;\n  /**\n   * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.\n   *\n   * **Syntax**: `<position>#`\n   *\n   * **Initial value**: `center`\n   *\n   */\n  maskPosition?: Property.MaskPosition;\n  /**\n   * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `no-repeat`\n   *\n   */\n  maskRepeat?: Property.MaskRepeat;\n  /**\n   * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  maskSize?: Property.MaskSize;\n  /**\n   * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `luminance`\n   *\n   */\n  maskType?: Property.MaskType;\n  /**\n   * The `math-style` property indicates whether MathML equations should render with normal or compact height.\n   *\n   * **Syntax**: `normal | compact`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  mathStyle?: Property.MathStyle;\n  /**\n   * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maxBlockSize?: Property.MaxBlockSize;\n  /**\n   * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maxHeight?: Property.MaxHeight;\n  /**\n   * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  maxInlineSize?: Property.MaxInlineSize;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  maxLines?: Property.MaxLines;\n  /**\n   * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  maxWidth?: Property.MaxWidth;\n  /**\n   * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  minBlockSize?: Property.MinBlockSize;\n  /**\n   * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  minHeight?: Property.MinHeight;\n  /**\n   * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  minInlineSize?: Property.MinInlineSize;\n  /**\n   * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  minWidth?: Property.MinWidth;\n  /**\n   * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.\n   *\n   * **Syntax**: `<blend-mode>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  mixBlendMode?: Property.MixBlendMode;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  motionDistance?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  motionPath?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  motionRotation?: Property.OffsetRotate;\n  /**\n   * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.\n   *\n   * **Syntax**: `fill | contain | cover | none | scale-down`\n   *\n   * **Initial value**: `fill`\n   *\n   */\n  objectFit?: Property.ObjectFit;\n  /**\n   * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  objectPosition?: Property.ObjectPosition;\n  /**\n   * **Syntax**: `auto | <position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  offsetAnchor?: Property.OffsetAnchor;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  offsetDistance?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  offsetPath?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  offsetRotate?: Property.OffsetRotate;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  offsetRotation?: Property.OffsetRotate;\n  /**\n   * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `1.0`\n   *\n   */\n  opacity?: Property.Opacity;\n  /**\n   * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  order?: Property.Order;\n  /**\n   * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  orphans?: Property.Orphans;\n  /**\n   * The **`outline-color`** CSS property sets the color of an element's outline.\n   *\n   * **Syntax**: `<color> | invert`\n   *\n   * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other\n   *\n   */\n  outlineColor?: Property.OutlineColor;\n  /**\n   * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  outlineOffset?: Property.OutlineOffset;\n  /**\n   * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `auto | <'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  outlineStyle?: Property.OutlineStyle;\n  /**\n   * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  outlineWidth?: Property.OutlineWidth;\n  /**\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overflowAnchor?: Property.OverflowAnchor;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overflowBlock?: Property.OverflowBlock;\n  /**\n   * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.\n   *\n   * **Syntax**: `padding-box | content-box`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  overflowClipBox?: Property.OverflowClipBox;\n  /**\n   * **Syntax**: `<visual-box> || <length [0,∞]>`\n   *\n   * **Initial value**: `0px`\n   *\n   */\n  overflowClipMargin?: Property.OverflowClipMargin;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overflowInline?: Property.OverflowInline;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word | anywhere`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  overflowWrap?: Property.OverflowWrap;\n  /**\n   * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflowX?: Property.OverflowX;\n  /**\n   * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflowY?: Property.OverflowY;\n  /**\n   * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock;\n  /**\n   * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorInline?: Property.OverscrollBehaviorInline;\n  /**\n   * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorX?: Property.OverscrollBehaviorX;\n  /**\n   * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehaviorY?: Property.OverscrollBehaviorY;\n  /**\n   * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBlock?: Property.PaddingBlock;\n  /**\n   * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBlockEnd?: Property.PaddingBlockEnd;\n  /**\n   * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBlockStart?: Property.PaddingBlockStart;\n  /**\n   * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingBottom?: Property.PaddingBottom;\n  /**\n   * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingInline?: Property.PaddingInline;\n  /**\n   * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingInlineEnd?: Property.PaddingInlineEnd;\n  /**\n   * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingInlineStart?: Property.PaddingInlineStart;\n  /**\n   * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingLeft?: Property.PaddingLeft;\n  /**\n   * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingRight?: Property.PaddingRight;\n  /**\n   * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  paddingTop?: Property.PaddingTop;\n  /**\n   * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pageBreakAfter?: Property.PageBreakAfter;\n  /**\n   * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pageBreakBefore?: Property.PageBreakBefore;\n  /**\n   * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.\n   *\n   * **Syntax**: `auto | avoid`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pageBreakInside?: Property.PageBreakInside;\n  /**\n   * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.\n   *\n   * **Syntax**: `normal | [ fill || stroke || markers ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  paintOrder?: Property.PaintOrder;\n  /**\n   * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.\n   *\n   * **Syntax**: `none | <length>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  perspective?: Property.Perspective;\n  /**\n   * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  perspectiveOrigin?: Property.PerspectiveOrigin;\n  /**\n   * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.\n   *\n   * **Syntax**: `<'align-content'> <'justify-content'>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  placeContent?: Property.PlaceContent;\n  /**\n   * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.\n   *\n   * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  pointerEvents?: Property.PointerEvents;\n  /**\n   * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.\n   *\n   * **Syntax**: `static | relative | absolute | sticky | fixed`\n   *\n   * **Initial value**: `static`\n   *\n   */\n  position?: Property.Position;\n  /**\n   * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.\n   *\n   * **Syntax**: `none | auto | [ <string> <string> ]+`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  quotes?: Property.Quotes;\n  /**\n   * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.\n   *\n   * **Syntax**: `none | both | horizontal | vertical | block | inline`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  resize?: Property.Resize;\n  /**\n   * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  right?: Property.Right;\n  /**\n   * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.\n   *\n   * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  rotate?: Property.Rotate;\n  /**\n   * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  rowGap?: Property.RowGap;\n  /**\n   * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.\n   *\n   * **Syntax**: `start | center | space-between | space-around`\n   *\n   * **Initial value**: `space-around`\n   *\n   */\n  rubyAlign?: Property.RubyAlign;\n  /**\n   * **Syntax**: `separate | collapse | auto`\n   *\n   * **Initial value**: `separate`\n   */\n  rubyMerge?: Property.RubyMerge;\n  /**\n   * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).\n   *\n   * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`\n   *\n   * **Initial value**: `alternate`\n   *\n   */\n  rubyPosition?: Property.RubyPosition;\n  /**\n   * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <number>{1,3}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scale?: Property.Scale;\n  /**\n   * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.\n   *\n   * **Syntax**: `auto | smooth`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollBehavior?: Property.ScrollBehavior;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMargin?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBlock?: Property.ScrollMarginBlock;\n  /**\n   * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd;\n  /**\n   * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBlockStart?: Property.ScrollMarginBlockStart;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginBottom?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginInline?: Property.ScrollMarginInline;\n  /**\n   * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd;\n  /**\n   * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginInlineStart?: Property.ScrollMarginInlineStart;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginLeft?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginRight?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollMarginTop?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPadding?: Property.ScrollPadding;\n  /**\n   * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBlock?: Property.ScrollPaddingBlock;\n  /**\n   * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd;\n  /**\n   * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart;\n  /**\n   * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingBottom?: Property.ScrollPaddingBottom;\n  /**\n   * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingInline?: Property.ScrollPaddingInline;\n  /**\n   * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd;\n  /**\n   * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart;\n  /**\n   * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingLeft?: Property.ScrollPaddingLeft;\n  /**\n   * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingRight?: Property.ScrollPaddingRight;\n  /**\n   * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollPaddingTop?: Property.ScrollPaddingTop;\n  /**\n   * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.\n   *\n   * **Syntax**: `[ none | start | end | center ]{1,2}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scrollSnapAlign?: Property.ScrollSnapAlign;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMargin?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginBottom?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginLeft?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginRight?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  scrollSnapMarginTop?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to \"pass over\" possible snap positions.\n   *\n   * **Syntax**: `normal | always`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  scrollSnapStop?: Property.ScrollSnapStop;\n  /**\n   * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.\n   *\n   * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scrollSnapType?: Property.ScrollSnapType;\n  /**\n   * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.\n   *\n   * **Syntax**: `auto | dark | light | <color>{2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollbarColor?: Property.ScrollbarColor;\n  /**\n   * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.\n   *\n   * **Syntax**: `auto | [ stable | always ] && both? && force?`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollbarGutter?: Property.ScrollbarGutter;\n  /**\n   * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.\n   *\n   * **Syntax**: `auto | thin | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  scrollbarWidth?: Property.ScrollbarWidth;\n  /**\n   * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `0.0`\n   *\n   */\n  shapeImageThreshold?: Property.ShapeImageThreshold;\n  /**\n   * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  shapeMargin?: Property.ShapeMargin;\n  /**\n   * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.\n   *\n   * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  shapeOutside?: Property.ShapeOutside;\n  /**\n   * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).\n   *\n   * **Syntax**: `<integer> | <length>`\n   *\n   * **Initial value**: `8`\n   *\n   */\n  tabSize?: Property.TabSize;\n  /**\n   * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.\n   *\n   * **Syntax**: `auto | fixed`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  tableLayout?: Property.TableLayout;\n  /**\n   * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n   *\n   * **Syntax**: `start | end | left | right | center | justify | match-parent`\n   *\n   * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n   *\n   */\n  textAlign?: Property.TextAlign;\n  /**\n   * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.\n   *\n   * **Syntax**: `auto | start | end | left | right | center | justify`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textAlignLast?: Property.TextAlignLast;\n  /**\n   * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.\n   *\n   * **Syntax**: `none | all | [ digits <integer>? ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textCombineUpright?: Property.TextCombineUpright;\n  /**\n   * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  textDecorationColor?: Property.TextDecorationColor;\n  /**\n   * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.\n   *\n   * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textDecorationLine?: Property.TextDecorationLine;\n  /**\n   * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.\n   *\n   * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`\n   *\n   * **Initial value**: `objects`\n   *\n   */\n  textDecorationSkip?: Property.TextDecorationSkip;\n  /**\n   * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.\n   *\n   * **Syntax**: `auto | all | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textDecorationSkipInk?: Property.TextDecorationSkipInk;\n  /**\n   * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.\n   *\n   * **Syntax**: `solid | double | dotted | dashed | wavy`\n   *\n   * **Initial value**: `solid`\n   *\n   */\n  textDecorationStyle?: Property.TextDecorationStyle;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textDecorationThickness?: Property.TextDecorationThickness;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textDecorationWidth?: Property.TextDecorationThickness;\n  /**\n   * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  textEmphasisColor?: Property.TextEmphasisColor;\n  /**\n   * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.\n   *\n   * **Syntax**: `[ over | under ] && [ right | left ]`\n   *\n   * **Initial value**: `over right`\n   *\n   */\n  textEmphasisPosition?: Property.TextEmphasisPosition;\n  /**\n   * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textEmphasisStyle?: Property.TextEmphasisStyle;\n  /**\n   * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.\n   *\n   * **Syntax**: `<length-percentage> && hanging? && each-line?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  textIndent?: Property.TextIndent;\n  /**\n   * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.\n   *\n   * **Syntax**: `auto | inter-character | inter-word | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textJustify?: Property.TextJustify;\n  /**\n   * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.\n   *\n   * **Syntax**: `mixed | upright | sideways`\n   *\n   * **Initial value**: `mixed`\n   *\n   */\n  textOrientation?: Property.TextOrientation;\n  /**\n   * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.\n   *\n   * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`\n   *\n   * **Initial value**: `clip`\n   *\n   */\n  textOverflow?: Property.TextOverflow;\n  /**\n   * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.\n   *\n   * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textRendering?: Property.TextRendering;\n  /**\n   * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.\n   *\n   * **Syntax**: `none | <shadow-t>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textShadow?: Property.TextShadow;\n  /**\n   * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.\n   *\n   * **Syntax**: `none | auto | <percentage>`\n   *\n   * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).\n   *\n   */\n  textSizeAdjust?: Property.TextSizeAdjust;\n  /**\n   * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.\n   *\n   * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  textTransform?: Property.TextTransform;\n  /**\n   * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.\n   *\n   * **Syntax**: `auto | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textUnderlineOffset?: Property.TextUnderlineOffset;\n  /**\n   * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.\n   *\n   * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  textUnderlinePosition?: Property.TextUnderlinePosition;\n  /**\n   * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  top?: Property.Top;\n  /**\n   * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).\n   *\n   * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  touchAction?: Property.TouchAction;\n  /**\n   * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.\n   *\n   * **Syntax**: `none | <transform-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  transform?: Property.Transform;\n  /**\n   * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.\n   *\n   * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`\n   *\n   * **Initial value**: `view-box`\n   *\n   */\n  transformBox?: Property.TransformBox;\n  /**\n   * The **`transform-origin`** CSS property sets the origin for an element's transformations.\n   *\n   * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`\n   *\n   * **Initial value**: `50% 50% 0`\n   *\n   */\n  transformOrigin?: Property.TransformOrigin;\n  /**\n   * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.\n   *\n   * **Syntax**: `flat | preserve-3d`\n   *\n   * **Initial value**: `flat`\n   *\n   */\n  transformStyle?: Property.TransformStyle;\n  /**\n   * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  transitionDelay?: Property.TransitionDelay;\n  /**\n   * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  transitionDuration?: Property.TransitionDuration;\n  /**\n   * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.\n   *\n   * **Syntax**: `none | <single-transition-property>#`\n   *\n   * **Initial value**: all\n   *\n   */\n  transitionProperty?: Property.TransitionProperty;\n  /**\n   * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  transitionTimingFunction?: Property.TransitionTimingFunction;\n  /**\n   * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  translate?: Property.Translate;\n  /**\n   * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.\n   *\n   * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  unicodeBidi?: Property.UnicodeBidi;\n  /**\n   * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.\n   *\n   * **Syntax**: `auto | text | none | contain | all`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  userSelect?: Property.UserSelect;\n  /**\n   * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.\n   *\n   * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`\n   *\n   * **Initial value**: `baseline`\n   *\n   */\n  verticalAlign?: Property.VerticalAlign;\n  /**\n   * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.\n   *\n   * **Syntax**: `visible | hidden | collapse`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  visibility?: Property.Visibility;\n  /**\n   * The **`white-space`** CSS property sets how white space inside an element is handled.\n   *\n   * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  whiteSpace?: Property.WhiteSpace;\n  /**\n   * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  widows?: Property.Widows;\n  /**\n   * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  width?: Property.Width;\n  /**\n   * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.\n   *\n   * **Syntax**: `auto | <animateable-feature>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  willChange?: Property.WillChange;\n  /**\n   * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.\n   *\n   * **Syntax**: `normal | break-all | keep-all | break-word`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  wordBreak?: Property.WordBreak;\n  /**\n   * The **`word-spacing`** CSS property sets the length of space between words and between tags.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  wordSpacing?: Property.WordSpacing;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word`\n   *\n   * **Initial value**: `normal`\n   */\n  wordWrap?: Property.WordWrap;\n  /**\n   * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).\n   *\n   * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`\n   *\n   * **Initial value**: `horizontal-tb`\n   *\n   */\n  writingMode?: Property.WritingMode;\n  /**\n   * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.\n   *\n   * **Syntax**: `auto | <integer>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  zIndex?: Property.ZIndex;\n  /**\n   * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.\n   *\n   * **Syntax**: `normal | reset | <number> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  zoom?: Property.Zoom;\n}\n\nexport interface StandardShorthandProperties {\n  /**\n   * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.\n   *\n   * **Syntax**: `initial | inherit | unset | revert`\n   *\n   * **Initial value**: There is no practical initial value for it.\n   *\n   */\n  all?: Property.All;\n  /**\n   * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.\n   *\n   * **Syntax**: `<single-animation>#`\n   *\n   */\n  animation?: Property.Animation;\n  /**\n   * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.\n   *\n   * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`\n   *\n   */\n  background?: Property.Background;\n  /**\n   * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `<bg-position>#`\n   *\n   * **Initial value**: `0% 0%`\n   *\n   */\n  backgroundPosition?: Property.BackgroundPosition;\n  /**\n   * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  border?: Property.Border;\n  /**\n   * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderBlock?: Property.BorderBlock;\n  /**\n   * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderBlockEnd?: Property.BorderBlockEnd;\n  /**\n   * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderBlockStart?: Property.BorderBlockStart;\n  /**\n   * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderBottom?: Property.BorderBottom;\n  /**\n   * The **`border-color`** shorthand CSS property sets the color of an element's border.\n   *\n   * **Syntax**: `<color>{1,4}`\n   *\n   */\n  borderColor?: Property.BorderColor;\n  /**\n   * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.\n   *\n   * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`\n   *\n   */\n  borderImage?: Property.BorderImage;\n  /**\n   * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderInline?: Property.BorderInline;\n  /**\n   * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderInlineEnd?: Property.BorderInlineEnd;\n  /**\n   * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  borderInlineStart?: Property.BorderInlineStart;\n  /**\n   * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderLeft?: Property.BorderLeft;\n  /**\n   * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.\n   *\n   * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`\n   *\n   */\n  borderRadius?: Property.BorderRadius;\n  /**\n   * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderRight?: Property.BorderRight;\n  /**\n   * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n   *\n   * **Syntax**: `<line-style>{1,4}`\n   *\n   */\n  borderStyle?: Property.BorderStyle;\n  /**\n   * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  borderTop?: Property.BorderTop;\n  /**\n   * The **`border-width`** shorthand CSS property sets the width of an element's border.\n   *\n   * **Syntax**: `<line-width>{1,4}`\n   *\n   */\n  borderWidth?: Property.BorderWidth;\n  /**\n   * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`\n   *\n   */\n  columnRule?: Property.ColumnRule;\n  /**\n   * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.\n   *\n   * **Syntax**: `<'column-width'> || <'column-count'>`\n   *\n   */\n  columns?: Property.Columns;\n  /**\n   * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.\n   *\n   * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`\n   *\n   */\n  flex?: Property.Flex;\n  /**\n   * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.\n   *\n   * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`\n   *\n   */\n  flexFlow?: Property.FlexFlow;\n  /**\n   * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.\n   *\n   * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`\n   *\n   */\n  font?: Property.Font;\n  /**\n   * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.\n   *\n   * **Syntax**: `<'row-gap'> <'column-gap'>?`\n   *\n   */\n  gap?: Property.Gap;\n  /**\n   * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.\n   *\n   * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`\n   *\n   */\n  grid?: Property.Grid;\n  /**\n   * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`\n   *\n   */\n  gridArea?: Property.GridArea;\n  /**\n   * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  gridColumn?: Property.GridColumn;\n  /**\n   * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  gridRow?: Property.GridRow;\n  /**\n   * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.\n   *\n   * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`\n   *\n   */\n  gridTemplate?: Property.GridTemplate;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  lineClamp?: Property.LineClamp;\n  /**\n   * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.\n   *\n   * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`\n   *\n   */\n  listStyle?: Property.ListStyle;\n  /**\n   * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.\n   *\n   * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`\n   *\n   */\n  margin?: Property.Margin;\n  /**\n   * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.\n   *\n   * **Syntax**: `<mask-layer>#`\n   *\n   */\n  mask?: Property.Mask;\n  /**\n   * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.\n   *\n   * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`\n   *\n   */\n  maskBorder?: Property.MaskBorder;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  motion?: Property.Offset;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  offset?: Property.Offset;\n  /**\n   * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.\n   *\n   * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`\n   *\n   */\n  outline?: Property.Outline;\n  /**\n   * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n   *\n   * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflow?: Property.Overflow;\n  /**\n   * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.\n   *\n   * **Syntax**: `[ contain | none | auto ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  overscrollBehavior?: Property.OverscrollBehavior;\n  /**\n   * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.\n   *\n   * **Syntax**: `[ <length> | <percentage> ]{1,4}`\n   *\n   */\n  padding?: Property.Padding;\n  /**\n   * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-items'> <'justify-items'>?`\n   *\n   */\n  placeItems?: Property.PlaceItems;\n  /**\n   * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-self'> <'justify-self'>?`\n   *\n   */\n  placeSelf?: Property.PlaceSelf;\n  /**\n   * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n   *\n   * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`\n   *\n   */\n  textDecoration?: Property.TextDecoration;\n  /**\n   * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.\n   *\n   * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`\n   *\n   */\n  textEmphasis?: Property.TextEmphasis;\n  /**\n   * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.\n   *\n   * **Syntax**: `<single-transition>#`\n   *\n   */\n  transition?: Property.Transition;\n}\n\nexport interface StandardProperties\n  extends StandardLonghandProperties,\n    StandardShorthandProperties {}\n\n\nexport interface SvgProperties {\n  alignmentBaseline?: Property.AlignmentBaseline;\n  baselineShift?: Property.BaselineShift;\n  clip?: Property.Clip;\n  clipPath?: Property.ClipPath;\n  clipRule?: Property.ClipRule;\n  color?: Property.Color;\n  colorInterpolation?: Property.ColorInterpolation;\n  colorRendering?: Property.ColorRendering;\n  cursor?: Property.Cursor;\n  direction?: Property.Direction;\n  display?: Property.Display;\n  dominantBaseline?: Property.DominantBaseline;\n  fill?: Property.Fill;\n  fillOpacity?: Property.FillOpacity;\n  fillRule?: Property.FillRule;\n  filter?: Property.Filter;\n  floodColor?: Property.FloodColor;\n  floodOpacity?: Property.FloodOpacity;\n  font?: Property.Font;\n  fontFamily?: Property.FontFamily;\n  fontSize?: Property.FontSize;\n  fontSizeAdjust?: Property.FontSizeAdjust;\n  fontStretch?: Property.FontStretch;\n  fontStyle?: Property.FontStyle;\n  fontVariant?: Property.FontVariant;\n  fontWeight?: Property.FontWeight;\n  glyphOrientationVertical?: Property.GlyphOrientationVertical;\n  imageRendering?: Property.ImageRendering;\n  letterSpacing?: Property.LetterSpacing;\n  lightingColor?: Property.LightingColor;\n  lineHeight?: Property.LineHeight;\n  marker?: Property.Marker;\n  markerEnd?: Property.MarkerEnd;\n  markerMid?: Property.MarkerMid;\n  markerStart?: Property.MarkerStart;\n  mask?: Property.Mask;\n  opacity?: Property.Opacity;\n  overflow?: Property.Overflow;\n  paintOrder?: Property.PaintOrder;\n  pointerEvents?: Property.PointerEvents;\n  shapeRendering?: Property.ShapeRendering;\n  stopColor?: Property.StopColor;\n  stopOpacity?: Property.StopOpacity;\n  stroke?: Property.Stroke;\n  strokeDasharray?: Property.StrokeDasharray;\n  strokeDashoffset?: Property.StrokeDashoffset;\n  strokeLinecap?: Property.StrokeLinecap;\n  strokeLinejoin?: Property.StrokeLinejoin;\n  strokeMiterlimit?: Property.StrokeMiterlimit;\n  strokeOpacity?: Property.StrokeOpacity;\n  strokeWidth?: Property.StrokeWidth;\n  textAnchor?: Property.TextAnchor;\n  textDecoration?: Property.TextDecoration;\n  textRendering?: Property.TextRendering;\n  unicodeBidi?: Property.UnicodeBidi;\n  vectorEffect?: Property.VectorEffect;\n  visibility?: Property.Visibility;\n  whiteSpace?: Property.WhiteSpace;\n  wordSpacing?: Property.WordSpacing;\n  writingMode?: Property.WritingMode;\n}\n\nexport interface Properties\n  extends StandardProperties,\n    SvgProperties {}\n\nexport interface StandardLonghandPropertiesHyphen {\n  /**\n   * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.\n   *\n   * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"align-content\"?: Property.AlignContent;\n  /**\n   * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"align-items\"?: Property.AlignItems;\n  /**\n   * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"align-self\"?: Property.AlignSelf;\n  /**\n   * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.\n   *\n   * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"align-tracks\"?: Property.AlignTracks;\n  /**\n   * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"animation-delay\"?: Property.AnimationDelay;\n  /**\n   * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.\n   *\n   * **Syntax**: `<single-animation-direction>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"animation-direction\"?: Property.AnimationDirection;\n  /**\n   * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"animation-duration\"?: Property.AnimationDuration;\n  /**\n   * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.\n   *\n   * **Syntax**: `<single-animation-fill-mode>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"animation-fill-mode\"?: Property.AnimationFillMode;\n  /**\n   * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.\n   *\n   * **Syntax**: `<single-animation-iteration-count>#`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  \"animation-iteration-count\"?: Property.AnimationIterationCount;\n  /**\n   * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.\n   *\n   * **Syntax**: `[ none | <keyframes-name> ]#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"animation-name\"?: Property.AnimationName;\n  /**\n   * The **`animation-play-state`** CSS property sets whether an animation is running or paused.\n   *\n   * **Syntax**: `<single-animation-play-state>#`\n   *\n   * **Initial value**: `running`\n   *\n   */\n  \"animation-play-state\"?: Property.AnimationPlayState;\n  /**\n   * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  \"animation-timing-function\"?: Property.AnimationTimingFunction;\n  /**\n   * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.\n   *\n   * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  appearance?: Property.Appearance;\n  /**\n   * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.\n   *\n   * **Syntax**: `auto | <ratio>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"aspect-ratio\"?: Property.AspectRatio;\n  /**\n   * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"backdrop-filter\"?: Property.BackdropFilter;\n  /**\n   * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.\n   *\n   * **Syntax**: `visible | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"backface-visibility\"?: Property.BackfaceVisibility;\n  /**\n   * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.\n   *\n   * **Syntax**: `<attachment>#`\n   *\n   * **Initial value**: `scroll`\n   *\n   */\n  \"background-attachment\"?: Property.BackgroundAttachment;\n  /**\n   * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.\n   *\n   * **Syntax**: `<blend-mode>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"background-blend-mode\"?: Property.BackgroundBlendMode;\n  /**\n   * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  \"background-clip\"?: Property.BackgroundClip;\n  /**\n   * The **`background-color`** CSS property sets the background color of an element.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `transparent`\n   *\n   */\n  \"background-color\"?: Property.BackgroundColor;\n  /**\n   * The **`background-image`** CSS property sets one or more background images on an element.\n   *\n   * **Syntax**: `<bg-image>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"background-image\"?: Property.BackgroundImage;\n  /**\n   * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.\n   *\n   * **Syntax**: `<box>#`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  \"background-origin\"?: Property.BackgroundOrigin;\n  /**\n   * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `left`\n   *\n   */\n  \"background-position-x\"?: Property.BackgroundPositionX;\n  /**\n   * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  \"background-position-y\"?: Property.BackgroundPositionY;\n  /**\n   * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `repeat`\n   *\n   */\n  \"background-repeat\"?: Property.BackgroundRepeat;\n  /**\n   * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto auto`\n   *\n   */\n  \"background-size\"?: Property.BackgroundSize;\n  /**\n   * **Syntax**: `clip | ellipsis | <string>`\n   *\n   * **Initial value**: `clip`\n   */\n  \"block-overflow\"?: Property.BlockOverflow;\n  /**\n   * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"block-size\"?: Property.BlockSize;\n  /**\n   * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-block-color\"?: Property.BorderBlockColor;\n  /**\n   * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-block-end-color\"?: Property.BorderBlockEndColor;\n  /**\n   * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-block-end-style\"?: Property.BorderBlockEndStyle;\n  /**\n   * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-block-end-width\"?: Property.BorderBlockEndWidth;\n  /**\n   * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-block-start-color\"?: Property.BorderBlockStartColor;\n  /**\n   * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-block-start-style\"?: Property.BorderBlockStartStyle;\n  /**\n   * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-block-start-width\"?: Property.BorderBlockStartWidth;\n  /**\n   * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-block-style\"?: Property.BorderBlockStyle;\n  /**\n   * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-block-width\"?: Property.BorderBlockWidth;\n  /**\n   * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-bottom-color\"?: Property.BorderBottomColor;\n  /**\n   * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-bottom-left-radius\"?: Property.BorderBottomLeftRadius;\n  /**\n   * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-bottom-right-radius\"?: Property.BorderBottomRightRadius;\n  /**\n   * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-bottom-style\"?: Property.BorderBottomStyle;\n  /**\n   * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-bottom-width\"?: Property.BorderBottomWidth;\n  /**\n   * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.\n   *\n   * **Syntax**: `collapse | separate`\n   *\n   * **Initial value**: `separate`\n   *\n   */\n  \"border-collapse\"?: Property.BorderCollapse;\n  /**\n   * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-end-end-radius\"?: Property.BorderEndEndRadius;\n  /**\n   * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-end-start-radius\"?: Property.BorderEndStartRadius;\n  /**\n   * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-image-outset\"?: Property.BorderImageOutset;\n  /**\n   * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  \"border-image-repeat\"?: Property.BorderImageRepeat;\n  /**\n   * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.\n   *\n   * **Syntax**: `<number-percentage>{1,4} && fill?`\n   *\n   * **Initial value**: `100%`\n   *\n   */\n  \"border-image-slice\"?: Property.BorderImageSlice;\n  /**\n   * The **`border-image-source`** CSS property sets the source image used to create an element's border image.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-image-source\"?: Property.BorderImageSource;\n  /**\n   * The **`border-image-width`** CSS property sets the width of an element's border image.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  \"border-image-width\"?: Property.BorderImageWidth;\n  /**\n   * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>{1,2}`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-inline-color\"?: Property.BorderInlineColor;\n  /**\n   * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-inline-end-color\"?: Property.BorderInlineEndColor;\n  /**\n   * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-inline-end-style\"?: Property.BorderInlineEndStyle;\n  /**\n   * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-inline-end-width\"?: Property.BorderInlineEndWidth;\n  /**\n   * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-color'>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-inline-start-color\"?: Property.BorderInlineStartColor;\n  /**\n   * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-inline-start-style\"?: Property.BorderInlineStartStyle;\n  /**\n   * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-inline-start-width\"?: Property.BorderInlineStartWidth;\n  /**\n   * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-inline-style\"?: Property.BorderInlineStyle;\n  /**\n   * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'border-top-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-inline-width\"?: Property.BorderInlineWidth;\n  /**\n   * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-left-color\"?: Property.BorderLeftColor;\n  /**\n   * The **`border-left-style`** CSS property sets the line style of an element's left `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-left-style\"?: Property.BorderLeftStyle;\n  /**\n   * The **`border-left-width`** CSS property sets the width of the left border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-left-width\"?: Property.BorderLeftWidth;\n  /**\n   * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-right-color\"?: Property.BorderRightColor;\n  /**\n   * The **`border-right-style`** CSS property sets the line style of an element's right `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-right-style\"?: Property.BorderRightStyle;\n  /**\n   * The **`border-right-width`** CSS property sets the width of the right border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-right-width\"?: Property.BorderRightWidth;\n  /**\n   * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.\n   *\n   * **Syntax**: `<length> <length>?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-spacing\"?: Property.BorderSpacing;\n  /**\n   * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-start-end-radius\"?: Property.BorderStartEndRadius;\n  /**\n   * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-start-start-radius\"?: Property.BorderStartStartRadius;\n  /**\n   * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"border-top-color\"?: Property.BorderTopColor;\n  /**\n   * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-top-left-radius\"?: Property.BorderTopLeftRadius;\n  /**\n   * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.\n   *\n   * **Syntax**: `<length-percentage>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"border-top-right-radius\"?: Property.BorderTopRightRadius;\n  /**\n   * The **`border-top-style`** CSS property sets the line style of an element's top `border`.\n   *\n   * **Syntax**: `<line-style>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"border-top-style\"?: Property.BorderTopStyle;\n  /**\n   * The **`border-top-width`** CSS property sets the width of the top border of an element.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"border-top-width\"?: Property.BorderTopWidth;\n  /**\n   * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  bottom?: Property.Bottom;\n  /**\n   * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.\n   *\n   * **Syntax**: `slice | clone`\n   *\n   * **Initial value**: `slice`\n   *\n   */\n  \"box-decoration-break\"?: Property.BoxDecorationBreak;\n  /**\n   * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.\n   *\n   * **Syntax**: `none | <shadow>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"box-shadow\"?: Property.BoxShadow;\n  /**\n   * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.\n   *\n   * **Syntax**: `content-box | border-box`\n   *\n   * **Initial value**: `content-box`\n   *\n   */\n  \"box-sizing\"?: Property.BoxSizing;\n  /**\n   * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"break-after\"?: Property.BreakAfter;\n  /**\n   * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"break-before\"?: Property.BreakBefore;\n  /**\n   * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.\n   *\n   * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"break-inside\"?: Property.BreakInside;\n  /**\n   * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.\n   *\n   * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`\n   *\n   * **Initial value**: `top`\n   *\n   */\n  \"caption-side\"?: Property.CaptionSide;\n  /**\n   * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.\n   *\n   * **Syntax**: `auto | <color>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"caret-color\"?: Property.CaretColor;\n  /**\n   * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.\n   *\n   * **Syntax**: `none | left | right | both | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  clear?: Property.Clear;\n  /**\n   * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.\n   *\n   * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"clip-path\"?: Property.ClipPath;\n  /**\n   * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: Varies from one browser to another\n   *\n   */\n  color?: Property.Color;\n  /**\n   * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.\n   *\n   * **Syntax**: `economy | exact`\n   *\n   * **Initial value**: `economy`\n   *\n   */\n  \"color-adjust\"?: Property.ColorAdjust;\n  /**\n   * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.\n   *\n   * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"color-scheme\"?: Property.ColorScheme;\n  /**\n   * The **`column-count`** CSS property breaks an element's content into the specified number of columns.\n   *\n   * **Syntax**: `<integer> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"column-count\"?: Property.ColumnCount;\n  /**\n   * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.\n   *\n   * **Syntax**: `auto | balance | balance-all`\n   *\n   * **Initial value**: `balance`\n   *\n   */\n  \"column-fill\"?: Property.ColumnFill;\n  /**\n   * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"column-gap\"?: Property.ColumnGap;\n  /**\n   * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"column-rule-color\"?: Property.ColumnRuleColor;\n  /**\n   * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"column-rule-style\"?: Property.ColumnRuleStyle;\n  /**\n   * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'border-width'>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"column-rule-width\"?: Property.ColumnRuleWidth;\n  /**\n   * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.\n   *\n   * **Syntax**: `none | all`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"column-span\"?: Property.ColumnSpan;\n  /**\n   * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.\n   *\n   * **Syntax**: `<length> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"column-width\"?: Property.ColumnWidth;\n  /**\n   * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.\n   *\n   * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  contain?: Property.Contain;\n  /**\n   * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._\n   *\n   * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  content?: Property.Content;\n  /**\n   * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.\n   *\n   * **Syntax**: `visible | auto | hidden`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"content-visibility\"?: Property.ContentVisibility;\n  /**\n   * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"counter-increment\"?: Property.CounterIncrement;\n  /**\n   * The **`counter-reset`** CSS property resets a CSS counter to a given value.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"counter-reset\"?: Property.CounterReset;\n  /**\n   * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.\n   *\n   * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"counter-set\"?: Property.CounterSet;\n  /**\n   * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.\n   *\n   * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  cursor?: Property.Cursor;\n  /**\n   * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).\n   *\n   * **Syntax**: `ltr | rtl`\n   *\n   * **Initial value**: `ltr`\n   *\n   */\n  direction?: Property.Direction;\n  /**\n   * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.\n   *\n   * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`\n   *\n   * **Initial value**: `inline`\n   *\n   */\n  display?: Property.Display;\n  /**\n   * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.\n   *\n   * **Syntax**: `show | hide`\n   *\n   * **Initial value**: `show`\n   *\n   */\n  \"empty-cells\"?: Property.EmptyCells;\n  /**\n   * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.\n   *\n   * **Syntax**: `none | <filter-function-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  filter?: Property.Filter;\n  /**\n   * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.\n   *\n   * **Syntax**: `content | <'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"flex-basis\"?: Property.FlexBasis;\n  /**\n   * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).\n   *\n   * **Syntax**: `row | row-reverse | column | column-reverse`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  \"flex-direction\"?: Property.FlexDirection;\n  /**\n   * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"flex-grow\"?: Property.FlexGrow;\n  /**\n   * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.\n   *\n   * **Syntax**: `<number>`\n   *\n   * **Initial value**: `1`\n   *\n   */\n  \"flex-shrink\"?: Property.FlexShrink;\n  /**\n   * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.\n   *\n   * **Syntax**: `nowrap | wrap | wrap-reverse`\n   *\n   * **Initial value**: `nowrap`\n   *\n   */\n  \"flex-wrap\"?: Property.FlexWrap;\n  /**\n   * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).\n   *\n   * **Syntax**: `left | right | none | inline-start | inline-end`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  float?: Property.Float;\n  /**\n   * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.\n   *\n   * **Syntax**: `[ <family-name> | <generic-family> ]#`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  \"font-family\"?: Property.FontFamily;\n  /**\n   * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.\n   *\n   * **Syntax**: `normal | <feature-tag-value>#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-feature-settings\"?: Property.FontFeatureSettings;\n  /**\n   * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.\n   *\n   * **Syntax**: `auto | normal | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"font-kerning\"?: Property.FontKerning;\n  /**\n   * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.\n   *\n   * **Syntax**: `normal | <string>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-language-override\"?: Property.FontLanguageOverride;\n  /**\n   * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"font-optical-sizing\"?: Property.FontOpticalSizing;\n  /**\n   * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.\n   *\n   * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"font-size\"?: Property.FontSize;\n  /**\n   * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).\n   *\n   * **Syntax**: `none | <number>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"font-size-adjust\"?: Property.FontSizeAdjust;\n  /**\n   * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.\n   *\n   * **Syntax**: `auto | always | <absolute-size> | <length>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"font-smooth\"?: Property.FontSmooth;\n  /**\n   * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.\n   *\n   * **Syntax**: `<font-stretch-absolute>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-stretch\"?: Property.FontStretch;\n  /**\n   * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.\n   *\n   * **Syntax**: `normal | italic | oblique <angle>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-style\"?: Property.FontStyle;\n  /**\n   * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.\n   *\n   * **Syntax**: `none | [ weight || style ]`\n   *\n   * **Initial value**: `weight style`\n   *\n   */\n  \"font-synthesis\"?: Property.FontSynthesis;\n  /**\n   * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant\"?: Property.FontVariant;\n  /**\n   * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.\n   *\n   * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-caps\"?: Property.FontVariantCaps;\n  /**\n   * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.\n   *\n   * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-east-asian\"?: Property.FontVariantEastAsian;\n  /**\n   * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.\n   *\n   * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-ligatures\"?: Property.FontVariantLigatures;\n  /**\n   * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.\n   *\n   * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-numeric\"?: Property.FontVariantNumeric;\n  /**\n   * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.\n   *\n   * **Syntax**: `normal | sub | super`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variant-position\"?: Property.FontVariantPosition;\n  /**\n   * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.\n   *\n   * **Syntax**: `normal | [ <string> <number> ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-variation-settings\"?: Property.FontVariationSettings;\n  /**\n   * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.\n   *\n   * **Syntax**: `<font-weight-absolute> | bolder | lighter`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"font-weight\"?: Property.FontWeight;\n  /**\n   * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.\n   *\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"forced-color-adjust\"?: Property.ForcedColorAdjust;\n  /**\n   * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-auto-columns\"?: Property.GridAutoColumns;\n  /**\n   * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.\n   *\n   * **Syntax**: `[ row | column ] || dense`\n   *\n   * **Initial value**: `row`\n   *\n   */\n  \"grid-auto-flow\"?: Property.GridAutoFlow;\n  /**\n   * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.\n   *\n   * **Syntax**: `<track-size>+`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-auto-rows\"?: Property.GridAutoRows;\n  /**\n   * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-column-end\"?: Property.GridColumnEnd;\n  /**\n   * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-column-start\"?: Property.GridColumnStart;\n  /**\n   * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-row-end\"?: Property.GridRowEnd;\n  /**\n   * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.\n   *\n   * **Syntax**: `<grid-line>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"grid-row-start\"?: Property.GridRowStart;\n  /**\n   * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n   *\n   * **Syntax**: `none | <string>+`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"grid-template-areas\"?: Property.GridTemplateAreas;\n  /**\n   * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"grid-template-columns\"?: Property.GridTemplateColumns;\n  /**\n   * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n   *\n   * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"grid-template-rows\"?: Property.GridTemplateRows;\n\t/**\n    * The **`grid-gap`** CSS property sets the size of the gap (gutter) between between rows and columns.\n    *\n    * **Syntax**: `normal | <length-percentage>`\n    *\n    * **Initial value**: `normal`\n    *\n    */\n   \"grid-gap\"?: Property.GridGap;\n  /**\n   * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.\n   *\n   * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"hanging-punctuation\"?: Property.HangingPunctuation;\n  /**\n   * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  height?: Property.Height;\n  /**\n   * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.\n   *\n   * **Syntax**: `none | manual | auto`\n   *\n   * **Initial value**: `manual`\n   *\n   */\n  hyphens?: Property.Hyphens;\n  /**\n   * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.\n   *\n   * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`\n   *\n   * **Initial value**: `from-image`\n   *\n   */\n  \"image-orientation\"?: Property.ImageOrientation;\n  /**\n   * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.\n   *\n   * **Syntax**: `auto | crisp-edges | pixelated`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"image-rendering\"?: Property.ImageRendering;\n  /**\n   * **Syntax**: `[ from-image || <resolution> ] && snap?`\n   *\n   * **Initial value**: `1dppx`\n   */\n  \"image-resolution\"?: Property.ImageResolution;\n  /**\n   * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.\n   *\n   * **Syntax**: `normal | [ <number> <integer>? ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"initial-letter\"?: Property.InitialLetter;\n  /**\n   * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'width'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inline-size\"?: Property.InlineSize;\n  /**\n   * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.\n   *\n   * **Syntax**: `<'top'>{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  inset?: Property.Inset;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-block\"?: Property.InsetBlock;\n  /**\n   * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-block-end\"?: Property.InsetBlockEnd;\n  /**\n   * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-block-start\"?: Property.InsetBlockStart;\n  /**\n   * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-inline\"?: Property.InsetInline;\n  /**\n   * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-inline-end\"?: Property.InsetInlineEnd;\n  /**\n   * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'top'>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"inset-inline-start\"?: Property.InsetInlineStart;\n  /**\n   * The **`isolation`** CSS property determines whether an element must create a new stacking context.\n   *\n   * **Syntax**: `auto | isolate`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  isolation?: Property.Isolation;\n  /**\n   * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.\n   *\n   * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"justify-content\"?: Property.JustifyContent;\n  /**\n   * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.\n   *\n   * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`\n   *\n   * **Initial value**: `legacy`\n   *\n   */\n  \"justify-items\"?: Property.JustifyItems;\n  /**\n   * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.\n   *\n   * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"justify-self\"?: Property.JustifySelf;\n  /**\n   * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.\n   *\n   * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"justify-tracks\"?: Property.JustifyTracks;\n  /**\n   * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  left?: Property.Left;\n  /**\n   * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.\n   *\n   * **Syntax**: `normal | <length>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"letter-spacing\"?: Property.LetterSpacing;\n  /**\n   * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.\n   *\n   * **Syntax**: `auto | loose | normal | strict | anywhere`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"line-break\"?: Property.LineBreak;\n  /**\n   * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.\n   *\n   * **Syntax**: `normal | <number> | <length> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"line-height\"?: Property.LineHeight;\n  /**\n   * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"line-height-step\"?: Property.LineHeightStep;\n  /**\n   * The **`list-style-image`** CSS property sets an image to be used as the list item marker.\n   *\n   * **Syntax**: `<image> | none`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"list-style-image\"?: Property.ListStyleImage;\n  /**\n   * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.\n   *\n   * **Syntax**: `inside | outside`\n   *\n   * **Initial value**: `outside`\n   *\n   */\n  \"list-style-position\"?: Property.ListStylePosition;\n  /**\n   * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.\n   *\n   * **Syntax**: `<counter-style> | <string> | none`\n   *\n   * **Initial value**: `disc`\n   *\n   */\n  \"list-style-type\"?: Property.ListStyleType;\n  /**\n   * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-block\"?: Property.MarginBlock;\n  /**\n   * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-block-end\"?: Property.MarginBlockEnd;\n  /**\n   * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-block-start\"?: Property.MarginBlockStart;\n  /**\n   * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-bottom\"?: Property.MarginBottom;\n  /**\n   * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'margin-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-inline\"?: Property.MarginInline;\n  /**\n   * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-inline-end\"?: Property.MarginInlineEnd;\n  /**\n   * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.\n   *\n   * **Syntax**: `<'margin-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-inline-start\"?: Property.MarginInlineStart;\n  /**\n   * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-left\"?: Property.MarginLeft;\n  /**\n   * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-right\"?: Property.MarginRight;\n  /**\n   * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"margin-top\"?: Property.MarginTop;\n  /**\n   * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `alpha`\n   */\n  \"mask-border-mode\"?: Property.MaskBorderMode;\n  /**\n   * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.\n   *\n   * **Syntax**: `[ <length> | <number> ]{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"mask-border-outset\"?: Property.MaskBorderOutset;\n  /**\n   * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.\n   *\n   * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`\n   *\n   * **Initial value**: `stretch`\n   *\n   */\n  \"mask-border-repeat\"?: Property.MaskBorderRepeat;\n  /**\n   * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.\n   *\n   * **Syntax**: `<number-percentage>{1,4} fill?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"mask-border-slice\"?: Property.MaskBorderSlice;\n  /**\n   * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.\n   *\n   * **Syntax**: `none | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"mask-border-source\"?: Property.MaskBorderSource;\n  /**\n   * The **`mask-border-width`** CSS property sets the width of an element's mask border.\n   *\n   * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"mask-border-width\"?: Property.MaskBorderWidth;\n  /**\n   * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.\n   *\n   * **Syntax**: `[ <geometry-box> | no-clip ]#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  \"mask-clip\"?: Property.MaskClip;\n  /**\n   * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.\n   *\n   * **Syntax**: `<compositing-operator>#`\n   *\n   * **Initial value**: `add`\n   *\n   */\n  \"mask-composite\"?: Property.MaskComposite;\n  /**\n   * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.\n   *\n   * **Syntax**: `<mask-reference>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"mask-image\"?: Property.MaskImage;\n  /**\n   * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.\n   *\n   * **Syntax**: `<masking-mode>#`\n   *\n   * **Initial value**: `match-source`\n   *\n   */\n  \"mask-mode\"?: Property.MaskMode;\n  /**\n   * The **`mask-origin`** CSS property sets the origin of a mask.\n   *\n   * **Syntax**: `<geometry-box>#`\n   *\n   * **Initial value**: `border-box`\n   *\n   */\n  \"mask-origin\"?: Property.MaskOrigin;\n  /**\n   * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.\n   *\n   * **Syntax**: `<position>#`\n   *\n   * **Initial value**: `center`\n   *\n   */\n  \"mask-position\"?: Property.MaskPosition;\n  /**\n   * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.\n   *\n   * **Syntax**: `<repeat-style>#`\n   *\n   * **Initial value**: `no-repeat`\n   *\n   */\n  \"mask-repeat\"?: Property.MaskRepeat;\n  /**\n   * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.\n   *\n   * **Syntax**: `<bg-size>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"mask-size\"?: Property.MaskSize;\n  /**\n   * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.\n   *\n   * **Syntax**: `luminance | alpha`\n   *\n   * **Initial value**: `luminance`\n   *\n   */\n  \"mask-type\"?: Property.MaskType;\n  /**\n   * The `math-style` property indicates whether MathML equations should render with normal or compact height.\n   *\n   * **Syntax**: `normal | compact`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"math-style\"?: Property.MathStyle;\n  /**\n   * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"max-block-size\"?: Property.MaxBlockSize;\n  /**\n   * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"max-height\"?: Property.MaxHeight;\n  /**\n   * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'max-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"max-inline-size\"?: Property.MaxInlineSize;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  \"max-lines\"?: Property.MaxLines;\n  /**\n   * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.\n   *\n   * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"max-width\"?: Property.MaxWidth;\n  /**\n   * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"min-block-size\"?: Property.MinBlockSize;\n  /**\n   * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"min-height\"?: Property.MinHeight;\n  /**\n   * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.\n   *\n   * **Syntax**: `<'min-width'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"min-inline-size\"?: Property.MinInlineSize;\n  /**\n   * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"min-width\"?: Property.MinWidth;\n  /**\n   * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.\n   *\n   * **Syntax**: `<blend-mode>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"mix-blend-mode\"?: Property.MixBlendMode;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"motion-distance\"?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"motion-path\"?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"motion-rotation\"?: Property.OffsetRotate;\n  /**\n   * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.\n   *\n   * **Syntax**: `fill | contain | cover | none | scale-down`\n   *\n   * **Initial value**: `fill`\n   *\n   */\n  \"object-fit\"?: Property.ObjectFit;\n  /**\n   * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  \"object-position\"?: Property.ObjectPosition;\n  /**\n   * **Syntax**: `auto | <position>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"offset-anchor\"?: Property.OffsetAnchor;\n  /**\n   * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"offset-distance\"?: Property.OffsetDistance;\n  /**\n   * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.\n   *\n   * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"offset-path\"?: Property.OffsetPath;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"offset-rotate\"?: Property.OffsetRotate;\n  /**\n   * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.\n   *\n   * **Syntax**: `[ auto | reverse ] || <angle>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"offset-rotation\"?: Property.OffsetRotate;\n  /**\n   * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `1.0`\n   *\n   */\n  opacity?: Property.Opacity;\n  /**\n   * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  order?: Property.Order;\n  /**\n   * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  orphans?: Property.Orphans;\n  /**\n   * The **`outline-color`** CSS property sets the color of an element's outline.\n   *\n   * **Syntax**: `<color> | invert`\n   *\n   * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other\n   *\n   */\n  \"outline-color\"?: Property.OutlineColor;\n  /**\n   * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"outline-offset\"?: Property.OutlineOffset;\n  /**\n   * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `auto | <'border-style'>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"outline-style\"?: Property.OutlineStyle;\n  /**\n   * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.\n   *\n   * **Syntax**: `<line-width>`\n   *\n   * **Initial value**: `medium`\n   *\n   */\n  \"outline-width\"?: Property.OutlineWidth;\n  /**\n   * **Syntax**: `auto | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overflow-anchor\"?: Property.OverflowAnchor;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overflow-block\"?: Property.OverflowBlock;\n  /**\n   * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.\n   *\n   * **Syntax**: `padding-box | content-box`\n   *\n   * **Initial value**: `padding-box`\n   *\n   */\n  \"overflow-clip-box\"?: Property.OverflowClipBox;\n  /**\n   * **Syntax**: `<visual-box> || <length [0,∞]>`\n   *\n   * **Initial value**: `0px`\n   *\n   */\n  \"overflow-clip-margin\"?: Property.OverflowClipMargin;\n  /**\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overflow-inline\"?: Property.OverflowInline;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word | anywhere`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"overflow-wrap\"?: Property.OverflowWrap;\n  /**\n   * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"overflow-x\"?: Property.OverflowX;\n  /**\n   * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.\n   *\n   * **Syntax**: `visible | hidden | clip | scroll | auto`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  \"overflow-y\"?: Property.OverflowY;\n  /**\n   * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-block\"?: Property.OverscrollBehaviorBlock;\n  /**\n   * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-inline\"?: Property.OverscrollBehaviorInline;\n  /**\n   * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-x\"?: Property.OverscrollBehaviorX;\n  /**\n   * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.\n   *\n   * **Syntax**: `contain | none | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior-y\"?: Property.OverscrollBehaviorY;\n  /**\n   * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-block\"?: Property.PaddingBlock;\n  /**\n   * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-block-end\"?: Property.PaddingBlockEnd;\n  /**\n   * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-block-start\"?: Property.PaddingBlockStart;\n  /**\n   * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-bottom\"?: Property.PaddingBottom;\n  /**\n   * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-inline\"?: Property.PaddingInline;\n  /**\n   * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-inline-end\"?: Property.PaddingInlineEnd;\n  /**\n   * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.\n   *\n   * **Syntax**: `<'padding-left'>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-inline-start\"?: Property.PaddingInlineStart;\n  /**\n   * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-left\"?: Property.PaddingLeft;\n  /**\n   * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-right\"?: Property.PaddingRight;\n  /**\n   * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.\n   *\n   * **Syntax**: `<length> | <percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"padding-top\"?: Property.PaddingTop;\n  /**\n   * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"page-break-after\"?: Property.PageBreakAfter;\n  /**\n   * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.\n   *\n   * **Syntax**: `auto | always | avoid | left | right | recto | verso`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"page-break-before\"?: Property.PageBreakBefore;\n  /**\n   * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.\n   *\n   * **Syntax**: `auto | avoid`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"page-break-inside\"?: Property.PageBreakInside;\n  /**\n   * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.\n   *\n   * **Syntax**: `normal | [ fill || stroke || markers ]`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"paint-order\"?: Property.PaintOrder;\n  /**\n   * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.\n   *\n   * **Syntax**: `none | <length>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  perspective?: Property.Perspective;\n  /**\n   * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.\n   *\n   * **Syntax**: `<position>`\n   *\n   * **Initial value**: `50% 50%`\n   *\n   */\n  \"perspective-origin\"?: Property.PerspectiveOrigin;\n  /**\n   * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.\n   *\n   * **Syntax**: `<'align-content'> <'justify-content'>?`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"place-content\"?: Property.PlaceContent;\n  /**\n   * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.\n   *\n   * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"pointer-events\"?: Property.PointerEvents;\n  /**\n   * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.\n   *\n   * **Syntax**: `static | relative | absolute | sticky | fixed`\n   *\n   * **Initial value**: `static`\n   *\n   */\n  position?: Property.Position;\n  /**\n   * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.\n   *\n   * **Syntax**: `none | auto | [ <string> <string> ]+`\n   *\n   * **Initial value**: depends on user agent\n   *\n   */\n  quotes?: Property.Quotes;\n  /**\n   * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.\n   *\n   * **Syntax**: `none | both | horizontal | vertical | block | inline`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  resize?: Property.Resize;\n  /**\n   * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  right?: Property.Right;\n  /**\n   * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.\n   *\n   * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  rotate?: Property.Rotate;\n  /**\n   * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"row-gap\"?: Property.RowGap;\n  /**\n   * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.\n   *\n   * **Syntax**: `start | center | space-between | space-around`\n   *\n   * **Initial value**: `space-around`\n   *\n   */\n  \"ruby-align\"?: Property.RubyAlign;\n  /**\n   * **Syntax**: `separate | collapse | auto`\n   *\n   * **Initial value**: `separate`\n   */\n  \"ruby-merge\"?: Property.RubyMerge;\n  /**\n   * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).\n   *\n   * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`\n   *\n   * **Initial value**: `alternate`\n   *\n   */\n  \"ruby-position\"?: Property.RubyPosition;\n  /**\n   * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <number>{1,3}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  scale?: Property.Scale;\n  /**\n   * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.\n   *\n   * **Syntax**: `auto | smooth`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-behavior\"?: Property.ScrollBehavior;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin\"?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-block\"?: Property.ScrollMarginBlock;\n  /**\n   * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-block-end\"?: Property.ScrollMarginBlockEnd;\n  /**\n   * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-block-start\"?: Property.ScrollMarginBlockStart;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-bottom\"?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.\n   *\n   * **Syntax**: `<length>{1,2}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-inline\"?: Property.ScrollMarginInline;\n  /**\n   * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-inline-end\"?: Property.ScrollMarginInlineEnd;\n  /**\n   * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-inline-start\"?: Property.ScrollMarginInlineStart;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-left\"?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-right\"?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-margin-top\"?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,4}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding\"?: Property.ScrollPadding;\n  /**\n   * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-block\"?: Property.ScrollPaddingBlock;\n  /**\n   * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-block-end\"?: Property.ScrollPaddingBlockEnd;\n  /**\n   * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-block-start\"?: Property.ScrollPaddingBlockStart;\n  /**\n   * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-bottom\"?: Property.ScrollPaddingBottom;\n  /**\n   * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.\n   *\n   * **Syntax**: `[ auto | <length-percentage> ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-inline\"?: Property.ScrollPaddingInline;\n  /**\n   * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-inline-end\"?: Property.ScrollPaddingInlineEnd;\n  /**\n   * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-inline-start\"?: Property.ScrollPaddingInlineStart;\n  /**\n   * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-left\"?: Property.ScrollPaddingLeft;\n  /**\n   * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-right\"?: Property.ScrollPaddingRight;\n  /**\n   * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.\n   *\n   * **Syntax**: `auto | <length-percentage>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scroll-padding-top\"?: Property.ScrollPaddingTop;\n  /**\n   * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.\n   *\n   * **Syntax**: `[ none | start | end | center ]{1,2}`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"scroll-snap-align\"?: Property.ScrollSnapAlign;\n  /**\n   * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.\n   *\n   * **Syntax**: `<length>{1,4}`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin\"?: Property.ScrollMargin;\n  /**\n   * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-bottom\"?: Property.ScrollMarginBottom;\n  /**\n   * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-left\"?: Property.ScrollMarginLeft;\n  /**\n   * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-right\"?: Property.ScrollMarginRight;\n  /**\n   * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.\n   *\n   * **Syntax**: `<length>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"scroll-snap-margin-top\"?: Property.ScrollMarginTop;\n  /**\n   * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to \"pass over\" possible snap positions.\n   *\n   * **Syntax**: `normal | always`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"scroll-snap-stop\"?: Property.ScrollSnapStop;\n  /**\n   * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.\n   *\n   * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"scroll-snap-type\"?: Property.ScrollSnapType;\n  /**\n   * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.\n   *\n   * **Syntax**: `auto | dark | light | <color>{2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scrollbar-color\"?: Property.ScrollbarColor;\n  /**\n   * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.\n   *\n   * **Syntax**: `auto | [ stable | always ] && both? && force?`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scrollbar-gutter\"?: Property.ScrollbarGutter;\n  /**\n   * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.\n   *\n   * **Syntax**: `auto | thin | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"scrollbar-width\"?: Property.ScrollbarWidth;\n  /**\n   * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.\n   *\n   * **Syntax**: `<alpha-value>`\n   *\n   * **Initial value**: `0.0`\n   *\n   */\n  \"shape-image-threshold\"?: Property.ShapeImageThreshold;\n  /**\n   * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.\n   *\n   * **Syntax**: `<length-percentage>`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"shape-margin\"?: Property.ShapeMargin;\n  /**\n   * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.\n   *\n   * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"shape-outside\"?: Property.ShapeOutside;\n  /**\n   * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).\n   *\n   * **Syntax**: `<integer> | <length>`\n   *\n   * **Initial value**: `8`\n   *\n   */\n  \"tab-size\"?: Property.TabSize;\n  /**\n   * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.\n   *\n   * **Syntax**: `auto | fixed`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"table-layout\"?: Property.TableLayout;\n  /**\n   * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n   *\n   * **Syntax**: `start | end | left | right | center | justify | match-parent`\n   *\n   * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n   *\n   */\n  \"text-align\"?: Property.TextAlign;\n  /**\n   * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.\n   *\n   * **Syntax**: `auto | start | end | left | right | center | justify`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-align-last\"?: Property.TextAlignLast;\n  /**\n   * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.\n   *\n   * **Syntax**: `none | all | [ digits <integer>? ]`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-combine-upright\"?: Property.TextCombineUpright;\n  /**\n   * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"text-decoration-color\"?: Property.TextDecorationColor;\n  /**\n   * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.\n   *\n   * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-decoration-line\"?: Property.TextDecorationLine;\n  /**\n   * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.\n   *\n   * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`\n   *\n   * **Initial value**: `objects`\n   *\n   */\n  \"text-decoration-skip\"?: Property.TextDecorationSkip;\n  /**\n   * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.\n   *\n   * **Syntax**: `auto | all | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-decoration-skip-ink\"?: Property.TextDecorationSkipInk;\n  /**\n   * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.\n   *\n   * **Syntax**: `solid | double | dotted | dashed | wavy`\n   *\n   * **Initial value**: `solid`\n   *\n   */\n  \"text-decoration-style\"?: Property.TextDecorationStyle;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-decoration-thickness\"?: Property.TextDecorationThickness;\n  /**\n   * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.\n   *\n   * **Syntax**: `auto | from-font | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-decoration-width\"?: Property.TextDecorationThickness;\n  /**\n   * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `<color>`\n   *\n   * **Initial value**: `currentcolor`\n   *\n   */\n  \"text-emphasis-color\"?: Property.TextEmphasisColor;\n  /**\n   * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.\n   *\n   * **Syntax**: `[ over | under ] && [ right | left ]`\n   *\n   * **Initial value**: `over right`\n   *\n   */\n  \"text-emphasis-position\"?: Property.TextEmphasisPosition;\n  /**\n   * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.\n   *\n   * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-emphasis-style\"?: Property.TextEmphasisStyle;\n  /**\n   * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.\n   *\n   * **Syntax**: `<length-percentage> && hanging? && each-line?`\n   *\n   * **Initial value**: `0`\n   *\n   */\n  \"text-indent\"?: Property.TextIndent;\n  /**\n   * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.\n   *\n   * **Syntax**: `auto | inter-character | inter-word | none`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-justify\"?: Property.TextJustify;\n  /**\n   * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.\n   *\n   * **Syntax**: `mixed | upright | sideways`\n   *\n   * **Initial value**: `mixed`\n   *\n   */\n  \"text-orientation\"?: Property.TextOrientation;\n  /**\n   * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.\n   *\n   * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`\n   *\n   * **Initial value**: `clip`\n   *\n   */\n  \"text-overflow\"?: Property.TextOverflow;\n  /**\n   * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.\n   *\n   * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-rendering\"?: Property.TextRendering;\n  /**\n   * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.\n   *\n   * **Syntax**: `none | <shadow-t>#`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-shadow\"?: Property.TextShadow;\n  /**\n   * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.\n   *\n   * **Syntax**: `none | auto | <percentage>`\n   *\n   * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).\n   *\n   */\n  \"text-size-adjust\"?: Property.TextSizeAdjust;\n  /**\n   * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.\n   *\n   * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  \"text-transform\"?: Property.TextTransform;\n  /**\n   * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.\n   *\n   * **Syntax**: `auto | <length> | <percentage> `\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-underline-offset\"?: Property.TextUnderlineOffset;\n  /**\n   * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.\n   *\n   * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"text-underline-position\"?: Property.TextUnderlinePosition;\n  /**\n   * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.\n   *\n   * **Syntax**: `<length> | <percentage> | auto`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  top?: Property.Top;\n  /**\n   * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).\n   *\n   * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"touch-action\"?: Property.TouchAction;\n  /**\n   * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.\n   *\n   * **Syntax**: `none | <transform-list>`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  transform?: Property.Transform;\n  /**\n   * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.\n   *\n   * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`\n   *\n   * **Initial value**: `view-box`\n   *\n   */\n  \"transform-box\"?: Property.TransformBox;\n  /**\n   * The **`transform-origin`** CSS property sets the origin for an element's transformations.\n   *\n   * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`\n   *\n   * **Initial value**: `50% 50% 0`\n   *\n   */\n  \"transform-origin\"?: Property.TransformOrigin;\n  /**\n   * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.\n   *\n   * **Syntax**: `flat | preserve-3d`\n   *\n   * **Initial value**: `flat`\n   *\n   */\n  \"transform-style\"?: Property.TransformStyle;\n  /**\n   * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"transition-delay\"?: Property.TransitionDelay;\n  /**\n   * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.\n   *\n   * **Syntax**: `<time>#`\n   *\n   * **Initial value**: `0s`\n   *\n   */\n  \"transition-duration\"?: Property.TransitionDuration;\n  /**\n   * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.\n   *\n   * **Syntax**: `none | <single-transition-property>#`\n   *\n   * **Initial value**: all\n   *\n   */\n  \"transition-property\"?: Property.TransitionProperty;\n  /**\n   * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.\n   *\n   * **Syntax**: `<easing-function>#`\n   *\n   * **Initial value**: `ease`\n   *\n   */\n  \"transition-timing-function\"?: Property.TransitionTimingFunction;\n  /**\n   * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.\n   *\n   * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`\n   *\n   * **Initial value**: `none`\n   *\n   */\n  translate?: Property.Translate;\n  /**\n   * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.\n   *\n   * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"unicode-bidi\"?: Property.UnicodeBidi;\n  /**\n   * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.\n   *\n   * **Syntax**: `auto | text | none | contain | all`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"user-select\"?: Property.UserSelect;\n  /**\n   * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.\n   *\n   * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`\n   *\n   * **Initial value**: `baseline`\n   *\n   */\n  \"vertical-align\"?: Property.VerticalAlign;\n  /**\n   * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.\n   *\n   * **Syntax**: `visible | hidden | collapse`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  visibility?: Property.Visibility;\n  /**\n   * The **`white-space`** CSS property sets how white space inside an element is handled.\n   *\n   * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"white-space\"?: Property.WhiteSpace;\n  /**\n   * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.\n   *\n   * **Syntax**: `<integer>`\n   *\n   * **Initial value**: `2`\n   *\n   */\n  widows?: Property.Widows;\n  /**\n   * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.\n   *\n   * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  width?: Property.Width;\n  /**\n   * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.\n   *\n   * **Syntax**: `auto | <animateable-feature>#`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"will-change\"?: Property.WillChange;\n  /**\n   * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.\n   *\n   * **Syntax**: `normal | break-all | keep-all | break-word`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"word-break\"?: Property.WordBreak;\n  /**\n   * The **`word-spacing`** CSS property sets the length of space between words and between tags.\n   *\n   * **Syntax**: `normal | <length-percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  \"word-spacing\"?: Property.WordSpacing;\n  /**\n   * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.\n   *\n   * **Syntax**: `normal | break-word`\n   *\n   * **Initial value**: `normal`\n   */\n  \"word-wrap\"?: Property.WordWrap;\n  /**\n   * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).\n   *\n   * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`\n   *\n   * **Initial value**: `horizontal-tb`\n   *\n   */\n  \"writing-mode\"?: Property.WritingMode;\n  /**\n   * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.\n   *\n   * **Syntax**: `auto | <integer>`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"z-index\"?: Property.ZIndex;\n  /**\n   * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.\n   *\n   * **Syntax**: `normal | reset | <number> | <percentage>`\n   *\n   * **Initial value**: `normal`\n   *\n   */\n  zoom?: Property.Zoom;\n}\n\nexport interface StandardShorthandPropertiesHyphen {\n  /**\n   * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.\n   *\n   * **Syntax**: `initial | inherit | unset | revert`\n   *\n   * **Initial value**: There is no practical initial value for it.\n   *\n   */\n  all?: Property.All;\n  /**\n   * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.\n   *\n   * **Syntax**: `<single-animation>#`\n   *\n   */\n  animation?: Property.Animation;\n  /**\n   * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.\n   *\n   * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`\n   *\n   */\n  background?: Property.Background;\n  /**\n   * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.\n   *\n   * **Syntax**: `<bg-position>#`\n   *\n   * **Initial value**: `0% 0%`\n   *\n   */\n  \"background-position\"?: Property.BackgroundPosition;\n  /**\n   * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  border?: Property.Border;\n  /**\n   * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-block\"?: Property.BorderBlock;\n  /**\n   * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-block-end\"?: Property.BorderBlockEnd;\n  /**\n   * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-block-start\"?: Property.BorderBlockStart;\n  /**\n   * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-bottom\"?: Property.BorderBottom;\n  /**\n   * The **`border-color`** shorthand CSS property sets the color of an element's border.\n   *\n   * **Syntax**: `<color>{1,4}`\n   *\n   */\n  \"border-color\"?: Property.BorderColor;\n  /**\n   * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.\n   *\n   * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`\n   *\n   */\n  \"border-image\"?: Property.BorderImage;\n  /**\n   * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-inline\"?: Property.BorderInline;\n  /**\n   * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-inline-end\"?: Property.BorderInlineEnd;\n  /**\n   * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.\n   *\n   * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`\n   *\n   */\n  \"border-inline-start\"?: Property.BorderInlineStart;\n  /**\n   * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-left\"?: Property.BorderLeft;\n  /**\n   * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.\n   *\n   * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`\n   *\n   */\n  \"border-radius\"?: Property.BorderRadius;\n  /**\n   * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-right\"?: Property.BorderRight;\n  /**\n   * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n   *\n   * **Syntax**: `<line-style>{1,4}`\n   *\n   */\n  \"border-style\"?: Property.BorderStyle;\n  /**\n   * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.\n   *\n   * **Syntax**: `<line-width> || <line-style> || <color>`\n   *\n   */\n  \"border-top\"?: Property.BorderTop;\n  /**\n   * The **`border-width`** shorthand CSS property sets the width of an element's border.\n   *\n   * **Syntax**: `<line-width>{1,4}`\n   *\n   */\n  \"border-width\"?: Property.BorderWidth;\n  /**\n   * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.\n   *\n   * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`\n   *\n   */\n  \"column-rule\"?: Property.ColumnRule;\n  /**\n   * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.\n   *\n   * **Syntax**: `<'column-width'> || <'column-count'>`\n   *\n   */\n  columns?: Property.Columns;\n  /**\n   * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.\n   *\n   * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`\n   *\n   */\n  flex?: Property.Flex;\n  /**\n   * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.\n   *\n   * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`\n   *\n   */\n  \"flex-flow\"?: Property.FlexFlow;\n  /**\n   * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.\n   *\n   * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`\n   *\n   */\n  font?: Property.Font;\n  /**\n   * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.\n   *\n   * **Syntax**: `<'row-gap'> <'column-gap'>?`\n   *\n   */\n  gap?: Property.Gap;\n  /**\n   * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.\n   *\n   * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`\n   *\n   */\n  grid?: Property.Grid;\n  /**\n   * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`\n   *\n   */\n  \"grid-area\"?: Property.GridArea;\n  /**\n   * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  \"grid-column\"?: Property.GridColumn;\n  /**\n   * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.\n   *\n   * **Syntax**: `<grid-line> [ / <grid-line> ]?`\n   *\n   */\n  \"grid-row\"?: Property.GridRow;\n  /**\n   * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.\n   *\n   * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`\n   *\n   */\n  \"grid-template\"?: Property.GridTemplate;\n  /**\n   * **Syntax**: `none | <integer>`\n   *\n   * **Initial value**: `none`\n   */\n  \"line-clamp\"?: Property.LineClamp;\n  /**\n   * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.\n   *\n   * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`\n   *\n   */\n  \"list-style\"?: Property.ListStyle;\n  /**\n   * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.\n   *\n   * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`\n   *\n   */\n  margin?: Property.Margin;\n  /**\n   * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.\n   *\n   * **Syntax**: `<mask-layer>#`\n   *\n   */\n  mask?: Property.Mask;\n  /**\n   * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.\n   *\n   * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`\n   *\n   */\n  \"mask-border\"?: Property.MaskBorder;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  motion?: Property.Offset;\n  /**\n   * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.\n   *\n   * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`\n   *\n   */\n  offset?: Property.Offset;\n  /**\n   * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.\n   *\n   * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`\n   *\n   */\n  outline?: Property.Outline;\n  /**\n   * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n   *\n   * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`\n   *\n   * **Initial value**: `visible`\n   *\n   */\n  overflow?: Property.Overflow;\n  /**\n   * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.\n   *\n   * **Syntax**: `[ contain | none | auto ]{1,2}`\n   *\n   * **Initial value**: `auto`\n   *\n   */\n  \"overscroll-behavior\"?: Property.OverscrollBehavior;\n  /**\n   * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.\n   *\n   * **Syntax**: `[ <length> | <percentage> ]{1,4}`\n   *\n   */\n  padding?: Property.Padding;\n  /**\n   * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-items'> <'justify-items'>?`\n   *\n   */\n  \"place-items\"?: Property.PlaceItems;\n  /**\n   * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.\n   *\n   * **Syntax**: `<'align-self'> <'justify-self'>?`\n   *\n   */\n  \"place-self\"?: Property.PlaceSelf;\n  /**\n   * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n   *\n   * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`\n   *\n   */\n  \"text-decoration\"?: Property.TextDecoration;\n  /**\n   * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.\n   *\n   * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`\n   *\n   */\n  \"text-emphasis\"?: Property.TextEmphasis;\n  /**\n   * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.\n   *\n   * **Syntax**: `<single-transition>#`\n   *\n   */\n  transition?: Property.Transition;\n}\n\nexport interface StandardPropertiesHyphen\n  extends StandardLonghandPropertiesHyphen,\n    StandardShorthandPropertiesHyphen {}\n\n\nexport interface SvgPropertiesHyphen {\n  \"alignment-baseline\"?: Property.AlignmentBaseline;\n  \"baseline-shift\"?: Property.BaselineShift;\n  clip?: Property.Clip;\n  \"clip-path\"?: Property.ClipPath;\n  \"clip-rule\"?: Property.ClipRule;\n  color?: Property.Color;\n  \"color-interpolation\"?: Property.ColorInterpolation;\n  \"color-rendering\"?: Property.ColorRendering;\n  cursor?: Property.Cursor;\n  direction?: Property.Direction;\n  display?: Property.Display;\n  \"dominant-baseline\"?: Property.DominantBaseline;\n  fill?: Property.Fill;\n  \"fill-opacity\"?: Property.FillOpacity;\n  \"fill-rule\"?: Property.FillRule;\n  filter?: Property.Filter;\n  \"flood-color\"?: Property.FloodColor;\n  \"flood-opacity\"?: Property.FloodOpacity;\n  font?: Property.Font;\n  \"font-family\"?: Property.FontFamily;\n  \"font-size\"?: Property.FontSize;\n  \"font-size-adjust\"?: Property.FontSizeAdjust;\n  \"font-stretch\"?: Property.FontStretch;\n  \"font-style\"?: Property.FontStyle;\n  \"font-variant\"?: Property.FontVariant;\n  \"font-weight\"?: Property.FontWeight;\n  \"glyph-orientation-vertical\"?: Property.GlyphOrientationVertical;\n  \"image-rendering\"?: Property.ImageRendering;\n  \"letter-spacing\"?: Property.LetterSpacing;\n  \"lighting-color\"?: Property.LightingColor;\n  \"line-height\"?: Property.LineHeight;\n  marker?: Property.Marker;\n  \"marker-end\"?: Property.MarkerEnd;\n  \"marker-mid\"?: Property.MarkerMid;\n  \"marker-start\"?: Property.MarkerStart;\n  mask?: Property.Mask;\n  opacity?: Property.Opacity;\n  overflow?: Property.Overflow;\n  \"paint-order\"?: Property.PaintOrder;\n  \"pointer-events\"?: Property.PointerEvents;\n  \"shape-rendering\"?: Property.ShapeRendering;\n  \"stop-color\"?: Property.StopColor;\n  \"stop-opacity\"?: Property.StopOpacity;\n  stroke?: Property.Stroke;\n  \"stroke-dasharray\"?: Property.StrokeDasharray;\n  \"stroke-dashoffset\"?: Property.StrokeDashoffset;\n  \"stroke-linecap\"?: Property.StrokeLinecap;\n  \"stroke-linejoin\"?: Property.StrokeLinejoin;\n  \"stroke-miterlimit\"?: Property.StrokeMiterlimit;\n  \"stroke-opacity\"?: Property.StrokeOpacity;\n  \"stroke-width\"?: Property.StrokeWidth;\n  \"text-anchor\"?: Property.TextAnchor;\n  \"text-decoration\"?: Property.TextDecoration;\n  \"text-rendering\"?: Property.TextRendering;\n  \"unicode-bidi\"?: Property.UnicodeBidi;\n  \"vector-effect\"?: Property.VectorEffect;\n  visibility?: Property.Visibility;\n  \"white-space\"?: Property.WhiteSpace;\n  \"word-spacing\"?: Property.WordSpacing;\n  \"writing-mode\"?: Property.WritingMode;\n}\n\nexport interface PropertiesHyphen\n  extends StandardPropertiesHyphen,\n    SvgPropertiesHyphen {}\n\nexport type StandardLonghandPropertiesFallback = {\n  [P in keyof StandardLonghandProperties]: StandardLonghandProperties[P] | StandardLonghandProperties[P][];\n};\n\nexport type StandardShorthandPropertiesFallback = {\n  [P in keyof StandardShorthandProperties]: StandardShorthandProperties[P] | StandardShorthandProperties[P][];\n};\n\nexport interface StandardPropertiesFallback\n  extends StandardLonghandPropertiesFallback,\n    StandardShorthandPropertiesFallback {}\n\n\nexport type SvgPropertiesFallback = {\n  [P in keyof SvgProperties]: SvgProperties[P] | SvgProperties[P][];\n};\n\nexport interface PropertiesFallback\n  extends StandardPropertiesFallback,\n    SvgPropertiesFallback {}\n\nexport type StandardLonghandPropertiesHyphenFallback = {\n  [P in keyof StandardLonghandPropertiesHyphen]: StandardLonghandPropertiesHyphen[P] | StandardLonghandPropertiesHyphen[P][];\n};\n\nexport type StandardShorthandPropertiesHyphenFallback = {\n  [P in keyof StandardShorthandPropertiesHyphen]: StandardShorthandPropertiesHyphen[P] | StandardShorthandPropertiesHyphen[P][];\n};\n\nexport interface StandardPropertiesHyphenFallback\n  extends StandardLonghandPropertiesHyphenFallback,\n    StandardShorthandPropertiesHyphenFallback {}\n\n\nexport type SvgPropertiesHyphenFallback = {\n  [P in keyof SvgPropertiesHyphen]: SvgPropertiesHyphen[P] | SvgPropertiesHyphen[P][];\n};\n\nexport interface PropertiesHyphenFallback\n  extends StandardPropertiesHyphenFallback,\n    SvgPropertiesHyphenFallback {}\n\nexport type AtRules =\n  | \"@charset\"\n  | \"@counter-style\"\n  | \"@document\"\n  | \"@font-face\"\n  | \"@font-feature-values\"\n  | \"@import\"\n  | \"@keyframes\"\n  | \"@media\"\n  | \"@namespace\"\n  | \"@page\"\n  | \"@property\"\n  | \"@supports\"\n  | \"@viewport\";\n\nexport type AdvancedPseudos =\n  | \"&::cue(\"\n  | \"&::cue-region(\"\n  | \"&::part(\"\n  | \"&::slotted(\"\n  | \"&:dir(\"\n  | \"&:has(\"\n  | \"&:host(\"\n  | \"&:host-context(\"\n  | \"&:is(\"\n  | \"&:lang(\"\n  | \"&:not(\"\n  | \"&:nth-child(\"\n  | \"&:nth-last-child(\"\n  | \"&:nth-last-of-type(\"\n  | \"&:nth-of-type(\"\n  | \"&:where(\";\n\nexport type SimplePseudos =\n  | \"&::after\"\n  | \"&::backdrop\"\n  | \"&::before\"\n  | \"&::cue\"\n  | \"&::cue-region\"\n  | \"&::first-letter\"\n  | \"&::first-line\"\n  | \"&::grammar-error\"\n  | \"&::marker\"\n  | \"&::placeholder\"\n  | \"&::selection\"\n  | \"&::spelling-error\"\n  | \"&::target-text\"\n  | \"&:active\"\n  | \"&:after\"\n  | \"&:any-link\"\n  | \"&:before\"\n  | \"&:blank\"\n  | \"&:checked\"\n  | \"&:current\"\n  | \"&:default\"\n  | \"&:defined\"\n  | \"&:disabled\"\n  | \"&:empty\"\n  | \"&:enabled\"\n  | \"&:first\"\n  | \"&:first-child\"\n  | \"&:first-letter\"\n  | \"&:first-line\"\n  | \"&:first-of-type\"\n  | \"&:focus\"\n  | \"&:focus-visible\"\n  | \"&:focus-within\"\n  | \"&:fullscreen\"\n  | \"&:future\"\n  | \"&:hover\"\n  | \"&:in-range\"\n  | \"&:indeterminate\"\n  | \"&:invalid\"\n  | \"&:last-child\"\n  | \"&:last-of-type\"\n  | \"&:left\"\n  | \"&:link\"\n  | \"&:local-link\"\n  | \"&:nth-col\"\n  | \"&:nth-last-col\"\n  | \"&:only-child\"\n  | \"&:only-of-type\"\n  | \"&:optional\"\n  | \"&:out-of-range\"\n  | \"&:past\"\n  | \"&:paused\"\n  | \"&:picture-in-picture\"\n  | \"&:placeholder-shown\"\n  | \"&:read-only\"\n  | \"&:read-write\"\n  | \"&:required\"\n  | \"&:right\"\n  | \"&:root\"\n  | \"&:scope\"\n  | \"&:target\"\n  | \"&:target-within\"\n  | \"&:user-invalid\"\n  | \"&:user-valid\"\n  | \"&:valid\"\n  | \"&:visited\";\n\nexport type Pseudos = AdvancedPseudos | SimplePseudos;\n\nexport type HtmlAttributes =\n  | \"[abbr]\"\n  | \"[accept-charset]\"\n  | \"[accept]\"\n  | \"[accesskey]\"\n  | \"[action]\"\n  | \"[align]\"\n  | \"[alink]\"\n  | \"[allow]\"\n  | \"[allowfullscreen]\"\n  | \"[allowpaymentrequest]\"\n  | \"[alt]\"\n  | \"[archive]\"\n  | \"[async]\"\n  | \"[autobuffer]\"\n  | \"[autocapitalize]\"\n  | \"[autocomplete]\"\n  | \"[autofocus]\"\n  | \"[autoplay]\"\n  | \"[axis]\"\n  | \"[background]\"\n  | \"[behavior]\"\n  | \"[bgcolor]\"\n  | \"[border]\"\n  | \"[bottommargin]\"\n  | \"[buffered]\"\n  | \"[cellpadding]\"\n  | \"[cellspacing]\"\n  | \"[char]\"\n  | \"[charoff]\"\n  | \"[charset]\"\n  | \"[checked]\"\n  | \"[cite]\"\n  | \"[class]\"\n  | \"[classid]\"\n  | \"[clear]\"\n  | \"[code]\"\n  | \"[codebase]\"\n  | \"[codetype]\"\n  | \"[color]\"\n  | \"[cols]\"\n  | \"[colspan]\"\n  | \"[command]\"\n  | \"[compact]\"\n  | \"[content]\"\n  | \"[contenteditable]\"\n  | \"[contextmenu]\"\n  | \"[controls]\"\n  | \"[coords]\"\n  | \"[crossorigin]\"\n  | \"[data]\"\n  | \"[datafld]\"\n  | \"[datasrc]\"\n  | \"[datetime]\"\n  | \"[declare]\"\n  | \"[decoding]\"\n  | \"[default]\"\n  | \"[defer]\"\n  | \"[dir]\"\n  | \"[direction]\"\n  | \"[dirname]\"\n  | \"[disabled]\"\n  | \"[download]\"\n  | \"[draggable]\"\n  | \"[enctype]\"\n  | \"[enterkeyhint]\"\n  | \"[exportparts]\"\n  | \"[face]\"\n  | \"[for]\"\n  | \"[form]\"\n  | \"[formaction]\"\n  | \"[formenctype]\"\n  | \"[formmethod]\"\n  | \"[formnovalidate]\"\n  | \"[formtarget]\"\n  | \"[frame]\"\n  | \"[frameborder]\"\n  | \"[headers]\"\n  | \"[height]\"\n  | \"[hidden]\"\n  | \"[high]\"\n  | \"[href]\"\n  | \"[hreflang]\"\n  | \"[hspace]\"\n  | \"[http-equiv]\"\n  | \"[icon]\"\n  | \"[id]\"\n  | \"[imagesizes]\"\n  | \"[imagesrcset]\"\n  | \"[inputmode]\"\n  | \"[integrity]\"\n  | \"[intrinsicsize]\"\n  | \"[is]\"\n  | \"[ismap]\"\n  | \"[itemid]\"\n  | \"[itemprop]\"\n  | \"[itemref]\"\n  | \"[itemscope]\"\n  | \"[itemtype]\"\n  | \"[kind]\"\n  | \"[label]\"\n  | \"[lang]\"\n  | \"[language]\"\n  | \"[leftmargin]\"\n  | \"[link]\"\n  | \"[loading]\"\n  | \"[longdesc]\"\n  | \"[loop]\"\n  | \"[low]\"\n  | \"[manifest]\"\n  | \"[marginheight]\"\n  | \"[marginwidth]\"\n  | \"[max]\"\n  | \"[maxlength]\"\n  | \"[mayscript]\"\n  | \"[media]\"\n  | \"[method]\"\n  | \"[methods]\"\n  | \"[min]\"\n  | \"[minlength]\"\n  | \"[moz-opaque]\"\n  | \"[mozallowfullscreen]\"\n  | \"[mozcurrentsampleoffset]\"\n  | \"[msallowfullscreen]\"\n  | \"[multiple]\"\n  | \"[muted]\"\n  | \"[name]\"\n  | \"[nohref]\"\n  | \"[nomodule]\"\n  | \"[nonce]\"\n  | \"[noresize]\"\n  | \"[noshade]\"\n  | \"[novalidate]\"\n  | \"[nowrap]\"\n  | \"[object]\"\n  | \"[onafterprint]\"\n  | \"[onbeforeprint]\"\n  | \"[onbeforeunload]\"\n  | \"[onblur]\"\n  | \"[onerror]\"\n  | \"[onfocus]\"\n  | \"[onhashchange]\"\n  | \"[onlanguagechange]\"\n  | \"[onload]\"\n  | \"[onmessage]\"\n  | \"[onoffline]\"\n  | \"[ononline]\"\n  | \"[onpopstate]\"\n  | \"[onredo]\"\n  | \"[onresize]\"\n  | \"[onstorage]\"\n  | \"[onundo]\"\n  | \"[onunload]\"\n  | \"[open]\"\n  | \"[optimum]\"\n  | \"[part]\"\n  | \"[ping]\"\n  | \"[placeholder]\"\n  | \"[played]\"\n  | \"[poster]\"\n  | \"[prefetch]\"\n  | \"[preload]\"\n  | \"[profile]\"\n  | \"[prompt]\"\n  | \"[radiogroup]\"\n  | \"[readonly]\"\n  | \"[referrerPolicy]\"\n  | \"[referrerpolicy]\"\n  | \"[rel]\"\n  | \"[required]\"\n  | \"[rev]\"\n  | \"[reversed]\"\n  | \"[rightmargin]\"\n  | \"[rows]\"\n  | \"[rowspan]\"\n  | \"[rules]\"\n  | \"[sandbox-allow-downloads]\"\n  | \"[sandbox-allow-modals]\"\n  | \"[sandbox-allow-popups-to-escape-sandbox]\"\n  | \"[sandbox-allow-popups]\"\n  | \"[sandbox-allow-presentation]\"\n  | \"[sandbox-allow-same-origin]\"\n  | \"[sandbox-allow-storage-access-by-user-activation]\"\n  | \"[sandbox-allow-top-navigation-by-user-activation]\"\n  | \"[sandbox]\"\n  | \"[scope]\"\n  | \"[scoped]\"\n  | \"[scrollamount]\"\n  | \"[scrolldelay]\"\n  | \"[scrolling]\"\n  | \"[selected]\"\n  | \"[shape]\"\n  | \"[size]\"\n  | \"[sizes]\"\n  | \"[slot]\"\n  | \"[span]\"\n  | \"[spellcheck]\"\n  | \"[src]\"\n  | \"[srcdoc]\"\n  | \"[srclang]\"\n  | \"[srcset]\"\n  | \"[standby]\"\n  | \"[start]\"\n  | \"[style]\"\n  | \"[summary]\"\n  | \"[tabindex]\"\n  | \"[target]\"\n  | \"[text]\"\n  | \"[title]\"\n  | \"[topmargin]\"\n  | \"[translate]\"\n  | \"[truespeed]\"\n  | \"[type]\"\n  | \"[usemap]\"\n  | \"[valign]\"\n  | \"[value]\"\n  | \"[valuetype]\"\n  | \"[version]\"\n  | \"[vlink]\"\n  | \"[volume]\"\n  | \"[vspace]\"\n  | \"[webkitallowfullscreen]\"\n  | \"[width]\"\n  | \"[wrap]\"\n  | \"[xmlns]\";\n\nexport type SvgAttributes =\n  | \"[accent-height]\"\n  | \"[alignment-baseline]\"\n  | \"[allowReorder]\"\n  | \"[alphabetic]\"\n  | \"[animation]\"\n  | \"[arabic-form]\"\n  | \"[ascent]\"\n  | \"[attributeName]\"\n  | \"[attributeType]\"\n  | \"[azimuth]\"\n  | \"[baseFrequency]\"\n  | \"[baseProfile]\"\n  | \"[baseline-shift]\"\n  | \"[bbox]\"\n  | \"[bias]\"\n  | \"[by]\"\n  | \"[calcMode]\"\n  | \"[cap-height]\"\n  | \"[class]\"\n  | \"[clip-path]\"\n  | \"[clip-rule]\"\n  | \"[clipPathUnits]\"\n  | \"[clip]\"\n  | \"[color-interpolation-filters]\"\n  | \"[color-interpolation]\"\n  | \"[color-profile]\"\n  | \"[color-rendering]\"\n  | \"[color]\"\n  | \"[contentScriptType]\"\n  | \"[contentStyleType]\"\n  | \"[cursor]\"\n  | \"[cx]\"\n  | \"[cy]\"\n  | \"[d]\"\n  | \"[descent]\"\n  | \"[diffuseConstant]\"\n  | \"[direction]\"\n  | \"[display]\"\n  | \"[divisor]\"\n  | \"[document]\"\n  | \"[dominant-baseline]\"\n  | \"[download]\"\n  | \"[dur]\"\n  | \"[dx]\"\n  | \"[dy]\"\n  | \"[edgeMode]\"\n  | \"[elevation]\"\n  | \"[enable-background]\"\n  | \"[externalResourcesRequired]\"\n  | \"[fill-opacity]\"\n  | \"[fill-rule]\"\n  | \"[fill]\"\n  | \"[filterRes]\"\n  | \"[filterUnits]\"\n  | \"[filter]\"\n  | \"[flood-color]\"\n  | \"[flood-opacity]\"\n  | \"[font-family]\"\n  | \"[font-size-adjust]\"\n  | \"[font-size]\"\n  | \"[font-stretch]\"\n  | \"[font-style]\"\n  | \"[font-variant]\"\n  | \"[font-weight]\"\n  | \"[format]\"\n  | \"[fr]\"\n  | \"[from]\"\n  | \"[fx]\"\n  | \"[fy]\"\n  | \"[g1]\"\n  | \"[g2]\"\n  | \"[global]\"\n  | \"[glyph-name]\"\n  | \"[glyph-orientation-horizontal]\"\n  | \"[glyph-orientation-vertical]\"\n  | \"[glyphRef]\"\n  | \"[gradientTransform]\"\n  | \"[gradientUnits]\"\n  | \"[graphical]\"\n  | \"[hanging]\"\n  | \"[hatchContentUnits]\"\n  | \"[hatchUnits]\"\n  | \"[height]\"\n  | \"[horiz-adv-x]\"\n  | \"[horiz-origin-x]\"\n  | \"[horiz-origin-y]\"\n  | \"[href]\"\n  | \"[hreflang]\"\n  | \"[id]\"\n  | \"[ideographic]\"\n  | \"[image-rendering]\"\n  | \"[in2]\"\n  | \"[in]\"\n  | \"[k1]\"\n  | \"[k2]\"\n  | \"[k3]\"\n  | \"[k4]\"\n  | \"[k]\"\n  | \"[kernelMatrix]\"\n  | \"[kernelUnitLength]\"\n  | \"[kerning]\"\n  | \"[keyPoints]\"\n  | \"[lang]\"\n  | \"[lengthAdjust]\"\n  | \"[letter-spacing]\"\n  | \"[lighting-color]\"\n  | \"[limitingConeAngle]\"\n  | \"[local]\"\n  | \"[marker-end]\"\n  | \"[marker-mid]\"\n  | \"[marker-start]\"\n  | \"[markerHeight]\"\n  | \"[markerUnits]\"\n  | \"[markerWidth]\"\n  | \"[maskContentUnits]\"\n  | \"[maskUnits]\"\n  | \"[mask]\"\n  | \"[mathematical]\"\n  | \"[media]\"\n  | \"[mode]\"\n  | \"[name]\"\n  | \"[numOctaves]\"\n  | \"[offset]\"\n  | \"[opacity]\"\n  | \"[operator]\"\n  | \"[order]\"\n  | \"[orient]\"\n  | \"[orientation]\"\n  | \"[origin]\"\n  | \"[overflow]\"\n  | \"[overline-position]\"\n  | \"[overline-thickness]\"\n  | \"[paint-order]\"\n  | \"[panose-1]\"\n  | \"[path]\"\n  | \"[patternContentUnits]\"\n  | \"[patternTransform]\"\n  | \"[patternUnits]\"\n  | \"[ping]\"\n  | \"[pitch]\"\n  | \"[pointer-events]\"\n  | \"[pointsAtX]\"\n  | \"[pointsAtY]\"\n  | \"[pointsAtZ]\"\n  | \"[points]\"\n  | \"[preserveAlpha]\"\n  | \"[preserveAspectRatio]\"\n  | \"[primitiveUnits]\"\n  | \"[r]\"\n  | \"[radius]\"\n  | \"[refX]\"\n  | \"[refY]\"\n  | \"[referrerPolicy]\"\n  | \"[rel]\"\n  | \"[rendering-intent]\"\n  | \"[repeatCount]\"\n  | \"[requiredExtensions]\"\n  | \"[requiredFeatures]\"\n  | \"[rotate]\"\n  | \"[rx]\"\n  | \"[ry]\"\n  | \"[scale]\"\n  | \"[seed]\"\n  | \"[shape-rendering]\"\n  | \"[side]\"\n  | \"[slope]\"\n  | \"[solid-color]\"\n  | \"[solid-opacity]\"\n  | \"[spacing]\"\n  | \"[specularConstant]\"\n  | \"[specularExponent]\"\n  | \"[spreadMethod]\"\n  | \"[startOffset]\"\n  | \"[stdDeviation]\"\n  | \"[stemh]\"\n  | \"[stemv]\"\n  | \"[stitchTiles]\"\n  | \"[stop-color]\"\n  | \"[stop-opacity]\"\n  | \"[strikethrough-position]\"\n  | \"[strikethrough-thickness]\"\n  | \"[string]\"\n  | \"[stroke-dasharray]\"\n  | \"[stroke-dashoffset]\"\n  | \"[stroke-linecap]\"\n  | \"[stroke-linejoin]\"\n  | \"[stroke-miterlimit]\"\n  | \"[stroke-opacity]\"\n  | \"[stroke-width]\"\n  | \"[stroke]\"\n  | \"[style]\"\n  | \"[surfaceScale]\"\n  | \"[systemLanguage]\"\n  | \"[tabindex]\"\n  | \"[targetX]\"\n  | \"[targetY]\"\n  | \"[target]\"\n  | \"[text-anchor]\"\n  | \"[text-decoration]\"\n  | \"[text-overflow]\"\n  | \"[text-rendering]\"\n  | \"[textLength]\"\n  | \"[title]\"\n  | \"[to]\"\n  | \"[transform-origin]\"\n  | \"[transform]\"\n  | \"[type]\"\n  | \"[u1]\"\n  | \"[u2]\"\n  | \"[underline-position]\"\n  | \"[underline-thickness]\"\n  | \"[unicode-bidi]\"\n  | \"[unicode-range]\"\n  | \"[unicode]\"\n  | \"[units-per-em]\"\n  | \"[v-alphabetic]\"\n  | \"[v-hanging]\"\n  | \"[v-ideographic]\"\n  | \"[v-mathematical]\"\n  | \"[values]\"\n  | \"[vector-effect]\"\n  | \"[version]\"\n  | \"[vert-adv-y]\"\n  | \"[vert-origin-x]\"\n  | \"[vert-origin-y]\"\n  | \"[viewBox]\"\n  | \"[viewTarget]\"\n  | \"[visibility]\"\n  | \"[white-space]\"\n  | \"[width]\"\n  | \"[widths]\"\n  | \"[word-spacing]\"\n  | \"[writing-mode]\"\n  | \"[x-height]\"\n  | \"[x1]\"\n  | \"[x2]\"\n  | \"[xChannelSelector]\"\n  | \"[x]\"\n  | \"[y1]\"\n  | \"[y2]\"\n  | \"[yChannelSelector]\"\n  | \"[y]\"\n  | \"[z]\"\n  | \"[zoomAndPan]\";\n\nexport type Globals = \"inherit\" | \"initial\" | \"revert\" | \"unset\";\n\nexport type OnlyObject = Record<never,never>\n\nexport type OnlyNumber = number & OnlyObject\n\nexport type OnlyString = string & OnlyObject\n\nexport type OnlyStringNumeric = (number | string) & OnlyObject\n\nexport namespace Property {\n  export type AlignContent = DataType.ContentDistribution | DataType.ContentPosition | \"baseline\" | \"normal\" | OnlyString;\n\n  export type AlignItems = DataType.SelfPosition | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type AlignSelf = DataType.SelfPosition | \"auto\" | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type AlignTracks = DataType.ContentDistribution | DataType.ContentPosition | \"baseline\" | \"normal\" | OnlyString;\n\n  export type All = never;\n\n  export type Animation = DataType.SingleAnimation | OnlyString;\n\n  export type AnimationDelay = never  | OnlyString;\n\n  export type AnimationDirection = DataType.SingleAnimationDirection | OnlyString;\n\n  export type AnimationDuration = never  | OnlyString;\n\n  export type AnimationFillMode = DataType.SingleAnimationFillMode | OnlyString;\n\n  export type AnimationIterationCount = \"infinite\" | OnlyStringNumeric;\n\n  export type AnimationName = \"none\" | OnlyString;\n\n  export type AnimationPlayState = \"paused\" | \"running\" | OnlyString;\n\n  export type AnimationTimingFunction = DataType.EasingFunction | OnlyString;\n\n  export type Appearance = DataType.CompatAuto | \"auto\" | \"menulist-button\" | \"none\" | \"textfield\";\n\n  export type AspectRatio = \"auto\" | OnlyString;\n\n  export type Azimuth =\n    | \"behind\"\n    | \"center\"\n    | \"center-left\"\n    | \"center-right\"\n    | \"far-left\"\n    | \"far-right\"\n    | \"left\"\n    | \"left-side\"\n    | \"leftwards\"\n    | \"right\"\n    | \"right-side\"\n    | \"rightwards\"\n    | OnlyString;\n\n  export type BackdropFilter = \"none\" | OnlyString;\n\n  export type BackfaceVisibility = \"hidden\" | \"visible\";\n\n  export type Background = DataType.FinalBgLayer | OnlyString;\n\n  export type BackgroundAttachment = DataType.Attachment | OnlyString;\n\n  export type BackgroundBlendMode = DataType.BlendMode | OnlyString;\n\n  export type BackgroundClip = DataType.Box | OnlyString;\n\n  export type BackgroundColor = DataType.Color;\n\n  export type BackgroundImage = \"none\" | OnlyString;\n\n  export type BackgroundOrigin = DataType.Box | OnlyString;\n\n  export type BackgroundPosition = DataType.BgPosition | OnlyString;\n\n  export type BackgroundPositionX = \"center\" | \"left\" | \"right\" | \"x-end\" | \"x-start\" | OnlyStringNumeric;\n\n  export type BackgroundPositionY = \"bottom\" | \"center\" | \"top\" | \"y-end\" | \"y-start\" | OnlyStringNumeric;\n\n  export type BackgroundRepeat = DataType.RepeatStyle | OnlyString;\n\n  export type BackgroundSize = DataType.BgSize | OnlyString;\n\n  export type BlockOverflow = \"clip\" | \"ellipsis\" | OnlyString;\n\n  export type BlockSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type Border = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlock = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlockColor = DataType.Color | OnlyString;\n\n  export type BorderBlockEnd = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlockEndColor = DataType.Color;\n\n  export type BorderBlockEndStyle = DataType.LineStyle;\n\n  export type BorderBlockEndWidth = DataType.LineWidth;\n\n  export type BorderBlockStart = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBlockStartColor = DataType.Color;\n\n  export type BorderBlockStartStyle = DataType.LineStyle;\n\n  export type BorderBlockStartWidth = DataType.LineWidth;\n\n  export type BorderBlockStyle = DataType.LineStyle;\n\n  export type BorderBlockWidth = DataType.LineWidth;\n\n  export type BorderBottom = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderBottomColor = DataType.Color;\n\n  export type BorderBottomLeftRadius = OnlyStringNumeric;\n\n  export type BorderBottomRightRadius = OnlyStringNumeric;\n\n  export type BorderBottomStyle = DataType.LineStyle;\n\n  export type BorderBottomWidth = DataType.LineWidth;\n\n  export type BorderCollapse = \"collapse\" | \"separate\";\n\n  export type BorderColor = DataType.Color | OnlyString;\n\n  export type BorderEndEndRadius = OnlyStringNumeric;\n\n  export type BorderEndStartRadius = OnlyStringNumeric;\n\n  export type BorderImage = \"none\" | \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyStringNumeric;\n\n  export type BorderImageOutset = OnlyStringNumeric;\n\n  export type BorderImageRepeat = \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyString;\n\n  export type BorderImageSlice = OnlyStringNumeric;\n\n  export type BorderImageSource = \"none\" | OnlyString;\n\n  export type BorderImageWidth = \"auto\" | OnlyStringNumeric;\n\n  export type BorderInline = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderInlineColor = DataType.Color | OnlyString;\n\n  export type BorderInlineEnd = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderInlineEndColor = DataType.Color;\n\n  export type BorderInlineEndStyle = DataType.LineStyle;\n\n  export type BorderInlineEndWidth = DataType.LineWidth;\n\n  export type BorderInlineStart = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderInlineStartColor = DataType.Color;\n\n  export type BorderInlineStartStyle = DataType.LineStyle;\n\n  export type BorderInlineStartWidth = DataType.LineWidth;\n\n  export type BorderInlineStyle = DataType.LineStyle;\n\n  export type BorderInlineWidth = DataType.LineWidth;\n\n  export type BorderLeft = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderLeftColor = DataType.Color;\n\n  export type BorderLeftStyle = DataType.LineStyle;\n\n  export type BorderLeftWidth = DataType.LineWidth;\n\n  export type BorderRadius = OnlyStringNumeric;\n\n  export type BorderRight = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderRightColor = DataType.Color;\n\n  export type BorderRightStyle = DataType.LineStyle;\n\n  export type BorderRightWidth = DataType.LineWidth;\n\n  export type BorderSpacing = OnlyStringNumeric;\n\n  export type BorderStartEndRadius = OnlyStringNumeric;\n\n  export type BorderStartStartRadius = OnlyStringNumeric;\n\n  export type BorderStyle = DataType.LineStyle | OnlyString;\n\n  export type BorderTop = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type BorderTopColor = DataType.Color;\n\n  export type BorderTopLeftRadius = OnlyStringNumeric;\n\n  export type BorderTopRightRadius = OnlyStringNumeric;\n\n  export type BorderTopStyle = DataType.LineStyle;\n\n  export type BorderTopWidth = DataType.LineWidth;\n\n  export type BorderWidth = DataType.LineWidth | OnlyString;\n\n  export type Bottom = \"auto\" | OnlyStringNumeric;\n\n  export type BoxAlign = \"baseline\" | \"center\" | \"end\" | \"start\" | \"stretch\";\n\n  export type BoxDecorationBreak = \"clone\" | \"slice\";\n\n  export type BoxDirection = \"inherit\" | \"normal\" | \"reverse\";\n\n  export type BoxFlex = OnlyNumber;\n\n  export type BoxFlexGroup = OnlyNumber;\n\n  export type BoxLines = \"multiple\" | \"single\";\n\n  export type BoxOrdinalGroup = OnlyNumber;\n\n  export type BoxOrient = \"block-axis\" | \"horizontal\" | \"inherit\" | \"inline-axis\" | \"vertical\";\n\n  export type BoxPack = \"center\" | \"end\" | \"justify\" | \"start\";\n\n  export type BoxShadow = \"none\" | OnlyString;\n\n  export type BoxSizing = \"border-box\" | \"content-box\";\n\n  export type BreakAfter =\n    | \"all\"\n    | \"always\"\n    | \"auto\"\n    | \"avoid\"\n    | \"avoid-column\"\n    | \"avoid-page\"\n    | \"avoid-region\"\n    | \"column\"\n    | \"left\"\n    | \"page\"\n    | \"recto\"\n    | \"region\"\n    | \"right\"\n    | \"verso\";\n\n  export type BreakBefore =\n    | \"all\"\n    | \"always\"\n    | \"auto\"\n    | \"avoid\"\n    | \"avoid-column\"\n    | \"avoid-page\"\n    | \"avoid-region\"\n    | \"column\"\n    | \"left\"\n    | \"page\"\n    | \"recto\"\n    | \"region\"\n    | \"right\"\n    | \"verso\";\n\n  export type BreakInside = \"auto\" | \"avoid\" | \"avoid-column\" | \"avoid-page\" | \"avoid-region\";\n\n  export type CaptionSide = \"block-end\" | \"block-start\" | \"bottom\" | \"inline-end\" | \"inline-start\" | \"top\";\n\n  export type CaretColor = DataType.Color | \"auto\";\n\n  export type Clear = \"both\" | \"inline-end\" | \"inline-start\" | \"left\" | \"none\" | \"right\";\n\n  export type Clip = \"auto\" | OnlyString;\n\n  export type ClipPath = DataType.GeometryBox | \"none\" | OnlyString;\n\n  export type Color = DataType.Color;\n\n  export type ColorAdjust = \"economy\" | \"exact\";\n\n  export type ColorScheme = \"dark\" | \"light\" | \"light dark\" | \"normal\" | OnlyString;\n\n  export type ColumnCount = \"auto\" | OnlyNumber;\n\n  export type ColumnFill = \"auto\" | \"balance\";\n\n  export type ColumnGap = \"normal\" | OnlyStringNumeric;\n\n  export type ColumnRule = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type ColumnRuleColor = DataType.Color;\n\n  export type ColumnRuleStyle = DataType.LineStyle | OnlyString;\n\n  export type ColumnRuleWidth = DataType.LineWidth | OnlyString;\n\n  export type ColumnSpan = \"all\" | \"none\";\n\n  export type ColumnWidth = number | \"auto\";\n\n  export type Columns = \"auto\" | OnlyStringNumeric;\n\n  export type Contain = \"content\" | \"layout\" | \"none\" | \"paint\" | \"size\" | \"strict\" | \"style\" | OnlyString;\n\n  export type Content = DataType.ContentList | \"none\" | \"normal\" | OnlyString;\n\n  export type ContentVisibility = \"auto\" | \"hidden\" | \"visible\";\n\n  export type CounterIncrement = \"none\" | OnlyString;\n\n  export type CounterReset = \"none\" | OnlyString;\n\n  export type CounterSet = \"none\" | OnlyString;\n\n  export type Cursor =\n    | \"alias\"\n    | \"all-scroll\"\n    | \"auto\"\n    | \"cell\"\n    | \"col-resize\"\n    | \"context-menu\"\n    | \"copy\"\n    | \"crosshair\"\n    | \"default\"\n    | \"e-resize\"\n    | \"ew-resize\"\n    | \"grab\"\n    | \"grabbing\"\n    | \"help\"\n    | \"move\"\n    | \"n-resize\"\n    | \"ne-resize\"\n    | \"nesw-resize\"\n    | \"no-drop\"\n    | \"none\"\n    | \"not-allowed\"\n    | \"ns-resize\"\n    | \"nw-resize\"\n    | \"nwse-resize\"\n    | \"pointer\"\n    | \"progress\"\n    | \"row-resize\"\n    | \"s-resize\"\n    | \"se-resize\"\n    | \"sw-resize\"\n    | \"text\"\n    | \"vertical-text\"\n    | \"w-resize\"\n    | \"wait\"\n    | \"zoom-in\"\n    | \"zoom-out\"\n    | OnlyString;\n\n  export type Direction = \"ltr\" | \"rtl\";\n\n  export type Display =\n    | DataType.DisplayOutside\n    | DataType.DisplayInside\n    | DataType.DisplayInternal\n    | DataType.DisplayLegacy\n    | \"contents\"\n    | \"list-item\"\n    | \"none\"\n    | OnlyString;\n\n  export type EmptyCells = \"hide\" | \"show\";\n\n  export type Filter = \"none\" | OnlyString;\n\n  export type Flex = \"auto\" | \"content\" | \"stretch\" | \"fit-content\" | \"max-content\" | \"min-content\" | \"none\" | OnlyStringNumeric;\n\n  export type FlexBasis =\n    | number\n    | \"auto\"\n    | \"content\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type FlexDirection = \"column\" | \"column-reverse\" | \"row\" | \"row-reverse\";\n\n  export type FlexFlow = \"column\" | \"column-reverse\" | \"nowrap\" | \"row\" | \"row-reverse\" | \"wrap\" | \"wrap-reverse\" | OnlyString;\n\n  export type FlexGrow = OnlyStringNumeric;\n\n  export type FlexShrink = OnlyNumber;\n\n  export type FlexWrap = \"nowrap\" | \"wrap\" | \"wrap-reverse\";\n\n  export type Float = \"inline-end\" | \"inline-start\" | \"left\" | \"none\" | \"right\";\n\n  export type Font = \"caption\" | \"icon\" | \"menu\" | \"message-box\" | \"small-caption\" | \"status-bar\" | OnlyString;\n\n  export type FontFamily = DataType.GenericFamily | OnlyString;\n\n  export type FontFeatureSettings = \"normal\" | OnlyString;\n\n  export type FontKerning = \"auto\" | \"none\" | \"normal\";\n\n  export type FontLanguageOverride = \"normal\" | OnlyString;\n\n  export type FontOpticalSizing = \"auto\" | \"none\";\n\n  export type FontSize = DataType.AbsoluteSize | \"larger\" | \"smaller\" | OnlyStringNumeric;\n\n  export type FontSizeAdjust = \"none\" | OnlyNumber;\n\n  export type FontSmooth = DataType.AbsoluteSize | number | \"always\" | \"auto\" | \"never\";\n\n  export type FontStretch = DataType.FontStretchAbsolute;\n\n  export type FontStyle = \"italic\" | \"normal\" | \"oblique\" | OnlyString;\n\n  export type FontSynthesis = \"none\" | \"style\" | \"weight\" | OnlyString;\n\n  export type FontVariant =\n    | DataType.EastAsianVariantValues\n    | \"all-petite-caps\"\n    | \"all-small-caps\"\n    | \"common-ligatures\"\n    | \"contextual\"\n    | \"diagonal-fractions\"\n    | \"discretionary-ligatures\"\n    | \"full-width\"\n    | \"historical-forms\"\n    | \"historical-ligatures\"\n    | \"lining-nums\"\n    | \"no-common-ligatures\"\n    | \"no-contextual\"\n    | \"no-discretionary-ligatures\"\n    | \"no-historical-ligatures\"\n    | \"none\"\n    | \"normal\"\n    | \"oldstyle-nums\"\n    | \"ordinal\"\n    | \"petite-caps\"\n    | \"proportional-nums\"\n    | \"proportional-width\"\n    | \"ruby\"\n    | \"slashed-zero\"\n    | \"small-caps\"\n    | \"stacked-fractions\"\n    | \"tabular-nums\"\n    | \"titling-caps\"\n    | \"unicase\"\n    | OnlyString;\n\n  export type FontVariantAlternates = \"historical-forms\" | \"normal\" | OnlyString;\n\n  export type FontVariantCaps = \"all-petite-caps\" | \"all-small-caps\" | \"normal\" | \"petite-caps\" | \"small-caps\" | \"titling-caps\" | \"unicase\";\n\n  export type FontVariantEastAsian = DataType.EastAsianVariantValues | \"full-width\" | \"normal\" | \"proportional-width\" | \"ruby\" | OnlyString;\n\n  export type FontVariantLigatures =\n    | \"common-ligatures\"\n    | \"contextual\"\n    | \"discretionary-ligatures\"\n    | \"historical-ligatures\"\n    | \"no-common-ligatures\"\n    | \"no-contextual\"\n    | \"no-discretionary-ligatures\"\n    | \"no-historical-ligatures\"\n    | \"none\"\n    | \"normal\"\n    | OnlyString;\n\n  export type FontVariantNumeric =\n    | \"diagonal-fractions\"\n    | \"lining-nums\"\n    | \"normal\"\n    | \"oldstyle-nums\"\n    | \"ordinal\"\n    | \"proportional-nums\"\n    | \"slashed-zero\"\n    | \"stacked-fractions\"\n    | \"tabular-nums\"\n    | OnlyString;\n\n  export type FontVariantPosition = \"normal\" | \"sub\" | \"super\";\n\n  export type FontVariationSettings = \"normal\" | OnlyString;\n\n  export type FontWeight = DataType.FontWeightAbsolute | \"bolder\" | \"lighter\";\n\n  export type ForcedColorAdjust = \"auto\" | \"none\";\n\n  export type Gap = \"normal\" | OnlyStringNumeric;\n\n  export type Grid = \"none\" | OnlyString;\n\n  export type GridArea = DataType.GridLine | OnlyString;\n\n  export type GridAutoColumns = DataType.TrackBreadth | OnlyString;\n\n  export type GridAutoFlow = \"column\" | \"dense\" | \"row\" | OnlyString;\n\n  export type GridAutoRows = DataType.TrackBreadth | OnlyString;\n\n  export type GridColumn = DataType.GridLine | OnlyString;\n\n  export type GridColumnEnd = DataType.GridLine;\n\n  export type GridColumnGap = OnlyStringNumeric;\n\n  export type GridColumnStart = DataType.GridLine;\n\n  export type GridGap = OnlyStringNumeric;\n\n  export type GridRow = DataType.GridLine | OnlyString;\n\n  export type GridRowEnd = DataType.GridLine;\n\n  export type GridRowGap = OnlyStringNumeric;\n\n  export type GridRowStart = DataType.GridLine;\n\n  export type GridTemplate = \"none\" | OnlyString;\n\n  export type GridTemplateAreas = \"none\" | OnlyString;\n\n  export type GridTemplateColumns = DataType.TrackBreadth | \"none\" | \"subgrid\" | OnlyString;\n\n  export type GridTemplateRows = DataType.TrackBreadth | \"none\" | \"subgrid\" | OnlyString;\n\n  export type HangingPunctuation = \"allow-end\" | \"first\" | \"force-end\" | \"last\" | \"none\" | OnlyString;\n\n  export type Height =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type Hyphens = \"auto\" | \"manual\" | \"none\";\n\n  export type ImageOrientation = \"flip\" | \"from-image\" | OnlyString;\n\n  export type ImageRendering = \"auto\" | \"crisp-edges\" | \"pixelated\";\n\n  export type ImageResolution = \"from-image\" | OnlyString;\n\n  export type ImeMode = \"active\" | \"auto\" | \"disabled\" | \"inactive\" | \"normal\";\n\n  export type InitialLetter = \"normal\" | OnlyStringNumeric;\n\n  export type InlineSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type Inset = \"auto\" | OnlyStringNumeric;\n\n  export type InsetBlock = \"auto\" | OnlyStringNumeric;\n\n  export type InsetBlockEnd = \"auto\" | OnlyStringNumeric;\n\n  export type InsetBlockStart = \"auto\" | OnlyStringNumeric;\n\n  export type InsetInline = \"auto\" | OnlyStringNumeric;\n\n  export type InsetInlineEnd = \"auto\" | OnlyStringNumeric;\n\n  export type InsetInlineStart = \"auto\" | OnlyStringNumeric;\n\n  export type Isolation = \"auto\" | \"isolate\";\n\n  export type JustifyContent = DataType.ContentDistribution | DataType.ContentPosition | \"left\" | \"normal\" | \"right\" | OnlyString;\n\n  export type JustifyItems = DataType.SelfPosition | \"baseline\" | \"left\" | \"legacy\" | \"normal\" | \"right\" | \"stretch\" | OnlyString;\n\n  export type JustifySelf = DataType.SelfPosition | \"auto\" | \"baseline\" | \"left\" | \"normal\" | \"right\" | \"stretch\" | OnlyString;\n\n  export type JustifyTracks = DataType.ContentDistribution | DataType.ContentPosition | \"left\" | \"normal\" | \"right\" | OnlyString;\n\n  export type Left = \"auto\" | OnlyStringNumeric;\n\n  export type LetterSpacing = \"normal\" | OnlyStringNumeric;\n\n  export type LineBreak = \"anywhere\" | \"auto\" | \"loose\" | \"normal\" | \"strict\";\n\n  export type LineClamp = \"none\" | OnlyNumber;\n\n  export type LineHeight = \"normal\" | OnlyStringNumeric;\n\n  export type LineHeightStep = number;\n\n  export type ListStyle = \"inside\" | \"none\" | \"outside\" | OnlyString;\n\n  export type ListStyleImage = \"none\" | OnlyString;\n\n  export type ListStylePosition = \"inside\" | \"outside\";\n\n  export type ListStyleType = \"none\" | OnlyString;\n\n  export type Margin = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBlock = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBlockEnd = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBlockStart = \"auto\" | OnlyStringNumeric;\n\n  export type MarginBottom = \"auto\" | OnlyStringNumeric;\n\n  export type MarginInline = \"auto\" | OnlyStringNumeric;\n\n  export type MarginInlineEnd = \"auto\" | OnlyStringNumeric;\n\n  export type MarginInlineStart = \"auto\" | OnlyStringNumeric;\n\n  export type MarginLeft = \"auto\" | OnlyStringNumeric;\n\n  export type MarginRight = \"auto\" | OnlyStringNumeric;\n\n  export type MarginTop = \"auto\" | OnlyStringNumeric;\n\n  export type Mask = DataType.MaskLayer | OnlyString;\n\n  export type MaskBorder = \"alpha\" | \"luminance\" | \"none\" | \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyStringNumeric;\n\n  export type MaskBorderMode = \"alpha\" | \"luminance\";\n\n  export type MaskBorderOutset = OnlyStringNumeric;\n\n  export type MaskBorderRepeat = \"repeat\" | \"round\" | \"space\" | \"stretch\" | OnlyString;\n\n  export type MaskBorderSlice = OnlyStringNumeric;\n\n  export type MaskBorderSource = \"none\" | OnlyString;\n\n  export type MaskBorderWidth = \"auto\" | OnlyStringNumeric;\n\n  export type MaskClip = DataType.GeometryBox | \"no-clip\" | OnlyString;\n\n  export type MaskComposite = DataType.CompositingOperator | OnlyString;\n\n  export type MaskImage = \"none\" | OnlyString;\n\n  export type MaskMode = DataType.MaskingMode | OnlyString;\n\n  export type MaskOrigin = DataType.Box | \"margin-box\" | OnlyString;\n\n  export type MaskPosition = DataType.Position | OnlyString;\n\n  export type MaskRepeat = DataType.RepeatStyle | OnlyString;\n\n  export type MaskSize = DataType.BgSize | OnlyString;\n\n  export type MaskType = \"alpha\" | \"luminance\";\n\n  export type MathStyle = \"compact\" | \"normal\";\n\n  export type MaxBlockSize =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MaxHeight =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MaxInlineSize =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MaxLines = \"none\" | OnlyNumber;\n\n  export type MaxWidth =\n    | number\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"none\"\n    | OnlyString;\n\n  export type MinBlockSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type MinHeight =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type MinInlineSize =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"max-content\"\n    | \"min-content\"\n    | OnlyString;\n\n  export type MinWidth =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"min-intrinsic\"\n    | OnlyString;\n\n  export type MixBlendMode = DataType.BlendMode;\n\n  export type Offset = DataType.Position | DataType.GeometryBox | \"auto\" | \"none\" | OnlyString;\n\n  export type OffsetDistance = OnlyStringNumeric;\n\n  export type OffsetPath = DataType.GeometryBox | \"none\" | OnlyString;\n\n  export type OffsetRotate = \"auto\" | \"reverse\" | OnlyString;\n\n  export type ObjectFit = \"contain\" | \"cover\" | \"fill\" | \"none\" | \"scale-down\";\n\n  export type ObjectPosition = DataType.Position;\n\n  export type OffsetAnchor = DataType.Position | \"auto\";\n\n  export type Opacity = OnlyStringNumeric;\n\n  export type Order = OnlyNumber;\n\n  export type Orphans = OnlyNumber;\n\n  export type Outline = DataType.Color | DataType.LineStyle | DataType.LineWidth | \"auto\" | \"invert\" | OnlyString;\n\n  export type OutlineColor = DataType.Color | \"invert\";\n\n  export type OutlineOffset = number;\n\n  export type OutlineStyle = DataType.LineStyle | \"auto\" | OnlyString;\n\n  export type OutlineWidth = DataType.LineWidth;\n\n  export type Overflow = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\" | OnlyString;\n\n  export type OverflowAnchor = \"auto\" | \"none\";\n\n  export type OverflowBlock = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverflowClipBox = \"content-box\" | \"padding-box\";\n\n  export type OverflowClipMargin = DataType.VisualBox | OnlyStringNumeric;\n\n  export type OverflowInline = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverflowWrap = \"anywhere\" | \"break-word\" | \"normal\";\n\n  export type OverflowX = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverflowY = \"auto\" | \"clip\" | \"hidden\" | \"scroll\" | \"visible\";\n\n  export type OverscrollBehavior = \"auto\" | \"contain\" | \"none\" | OnlyString;\n\n  export type OverscrollBehaviorBlock = \"auto\" | \"contain\" | \"none\";\n\n  export type OverscrollBehaviorInline = \"auto\" | \"contain\" | \"none\";\n\n  export type OverscrollBehaviorX = \"auto\" | \"contain\" | \"none\";\n\n  export type OverscrollBehaviorY = \"auto\" | \"contain\" | \"none\";\n\n  export type Padding = OnlyStringNumeric;\n\n  export type PaddingBlock = OnlyStringNumeric;\n\n  export type PaddingBlockEnd = OnlyStringNumeric;\n\n  export type PaddingBlockStart = OnlyStringNumeric;\n\n  export type PaddingBottom = OnlyStringNumeric;\n\n  export type PaddingInline = OnlyStringNumeric;\n\n  export type PaddingInlineEnd = OnlyStringNumeric;\n\n  export type PaddingInlineStart = OnlyStringNumeric;\n\n  export type PaddingLeft = OnlyStringNumeric;\n\n  export type PaddingRight = OnlyStringNumeric;\n\n  export type PaddingTop = OnlyStringNumeric;\n\n  export type PageBreakAfter = \"always\" | \"auto\" | \"avoid\" | \"left\" | \"recto\" | \"right\" | \"verso\";\n\n  export type PageBreakBefore = \"always\" | \"auto\" | \"avoid\" | \"left\" | \"recto\" | \"right\" | \"verso\";\n\n  export type PageBreakInside = \"auto\" | \"avoid\";\n\n  export type PaintOrder = \"fill\" | \"markers\" | \"normal\" | \"stroke\" | OnlyString;\n\n  export type Perspective = number | \"none\";\n\n  export type PerspectiveOrigin = DataType.Position;\n\n  export type PlaceContent = DataType.ContentDistribution | DataType.ContentPosition | \"baseline\" | \"normal\" | OnlyString;\n\n  export type PlaceItems = DataType.SelfPosition | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type PlaceSelf = DataType.SelfPosition | \"auto\" | \"baseline\" | \"normal\" | \"stretch\" | OnlyString;\n\n  export type PointerEvents = \"all\" | \"auto\" | \"fill\" | \"inherit\" | \"none\" | \"painted\" | \"stroke\" | \"visible\" | \"visibleFill\" | \"visiblePainted\" | \"visibleStroke\";\n\n  export type Position = \"absolute\" | \"fixed\" | \"relative\" | \"static\" | \"sticky\";\n\n  export type Quotes = \"auto\" | \"none\" | OnlyString;\n\n  export type Resize = \"block\" | \"both\" | \"horizontal\" | \"inline\" | \"none\" | \"vertical\";\n\n  export type Right = \"auto\" | OnlyStringNumeric;\n\n  export type Rotate = \"none\" | OnlyString;\n\n  export type RowGap = \"normal\" | OnlyStringNumeric;\n\n  export type RubyAlign = \"center\" | \"space-around\" | \"space-between\" | \"start\";\n\n  export type RubyMerge = \"auto\" | \"collapse\" | \"separate\";\n\n  export type RubyPosition = \"alternate\" | \"over\" | \"under\" | OnlyString;\n\n  export type Scale = \"none\" | OnlyStringNumeric;\n\n  export type ScrollBehavior = \"auto\" | \"smooth\";\n\n  export type ScrollMargin = OnlyStringNumeric;\n\n  export type ScrollMarginBlock = OnlyStringNumeric;\n\n  export type ScrollMarginBlockEnd = number;\n\n  export type ScrollMarginBlockStart = number;\n\n  export type ScrollMarginBottom = number;\n\n  export type ScrollMarginInline = OnlyStringNumeric;\n\n  export type ScrollMarginInlineEnd = number;\n\n  export type ScrollMarginInlineStart = number;\n\n  export type ScrollMarginLeft = number;\n\n  export type ScrollMarginRight = number;\n\n  export type ScrollMarginTop = number;\n\n  export type ScrollPadding = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBlock = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBlockEnd = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBlockStart = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingBottom = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingInline = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingInlineEnd = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingInlineStart = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingLeft = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingRight = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollPaddingTop = \"auto\" | OnlyStringNumeric;\n\n  export type ScrollSnapAlign = \"center\" | \"end\" | \"none\" | \"start\" | OnlyString;\n\n  export type ScrollSnapCoordinate = DataType.Position | \"none\" | OnlyString;\n\n  export type ScrollSnapDestination = DataType.Position;\n\n  export type ScrollSnapPointsX = \"none\" | OnlyString;\n\n  export type ScrollSnapPointsY = \"none\" | OnlyString;\n\n  export type ScrollSnapStop = \"always\" | \"normal\";\n\n  export type ScrollSnapType = \"block\" | \"both\" | \"inline\" | \"none\" | \"x\" | \"y\" | OnlyString;\n\n  export type ScrollSnapTypeX = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type ScrollSnapTypeY = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type ScrollbarColor = DataType.Color | \"auto\" | \"dark\" | \"light\";\n\n  export type ScrollbarGutter = \"always\" | \"auto\" | \"stable\" | OnlyString;\n\n  export type MsScrollbarTrackColor = DataType.Color;\n\n  export type ScrollbarWidth = \"auto\" | \"none\" | \"thin\";\n\n  export type ShapeImageThreshold = OnlyStringNumeric;\n\n  export type ShapeMargin = OnlyStringNumeric;\n\n  export type ShapeOutside = DataType.Box | \"margin-box\" | \"none\" | OnlyString;\n\n  export type TabSize = number | OnlyNumber;\n\n  export type TableLayout = \"auto\" | \"fixed\";\n\n  export type TextAlign = \"center\" | \"end\" | \"justify\" | \"left\" | \"match-parent\" | \"right\" | \"start\";\n\n  export type TextAlignLast = \"auto\" | \"center\" | \"end\" | \"justify\" | \"left\" | \"right\" | \"start\";\n\n  export type TextCombineUpright = \"all\" | \"digits\" | \"none\" | OnlyString;\n\n  export type TextDecoration =\n    | DataType.Color\n    | number\n    | \"auto\"\n    | \"blink\"\n    | \"dashed\"\n    | \"dotted\"\n    | \"double\"\n    | \"from-font\"\n    | \"grammar-error\"\n    | \"line-through\"\n    | \"none\"\n    | \"overline\"\n    | \"solid\"\n    | \"spelling-error\"\n    | \"underline\"\n    | \"wavy\"\n    | OnlyString;\n\n  export type TextDecorationColor = DataType.Color;\n\n  export type TextDecorationLine = \"blink\" | \"grammar-error\" | \"line-through\" | \"none\" | \"overline\" | \"spelling-error\" | \"underline\" | OnlyString;\n\n  export type TextDecorationSkip = \"box-decoration\" | \"edges\" | \"leading-spaces\" | \"none\" | \"objects\" | \"spaces\" | \"trailing-spaces\" | OnlyString;\n\n  export type TextDecorationSkipInk = \"all\" | \"auto\" | \"none\";\n\n  export type TextDecorationStyle = \"dashed\" | \"dotted\" | \"double\" | \"solid\" | \"wavy\";\n\n  export type TextDecorationThickness = \"auto\" | \"from-font\" | OnlyStringNumeric;\n\n  export type TextEmphasis = DataType.Color | \"circle\" | \"dot\" | \"double-circle\" | \"filled\" | \"none\" | \"open\" | \"sesame\" | \"triangle\" | OnlyString;\n\n  export type TextEmphasisColor = DataType.Color;\n\n  export type TextEmphasisPosition = OnlyString;\n\n  export type TextEmphasisStyle = \"circle\" | \"dot\" | \"double-circle\" | \"filled\" | \"none\" | \"open\" | \"sesame\" | \"triangle\" | OnlyString;\n\n  export type TextIndent = OnlyStringNumeric;\n\n  export type TextJustify = \"auto\" | \"inter-character\" | \"inter-word\" | \"none\";\n\n  export type TextOrientation = \"mixed\" | \"sideways\" | \"upright\";\n\n  export type TextOverflow = \"clip\" | \"ellipsis\" | OnlyString;\n\n  export type TextRendering = \"auto\" | \"geometricPrecision\" | \"optimizeLegibility\" | \"optimizeSpeed\";\n\n  export type TextShadow = \"none\" | OnlyString;\n\n  export type TextSizeAdjust = \"auto\" | \"none\" | OnlyString;\n\n  export type TextTransform = \"capitalize\" | \"full-size-kana\" | \"full-width\" | \"lowercase\" | \"none\" | \"uppercase\";\n\n  export type TextUnderlineOffset = \"auto\" | OnlyStringNumeric;\n\n  export type TextUnderlinePosition = \"auto\" | \"from-font\" | \"left\" | \"right\" | \"under\" | OnlyString;\n\n  export type Top = \"auto\" | OnlyStringNumeric;\n\n  export type TouchAction =\n    | \"auto\"\n    | \"manipulation\"\n    | \"none\"\n    | \"pan-down\"\n    | \"pan-left\"\n    | \"pan-right\"\n    | \"pan-up\"\n    | \"pan-x\"\n    | \"pan-y\"\n    | \"pinch-zoom\"\n    | OnlyString;\n\n  export type Transform = \"none\" | OnlyString;\n\n  export type TransformBox = \"border-box\" | \"content-box\" | \"fill-box\" | \"stroke-box\" | \"view-box\";\n\n  export type TransformOrigin = \"bottom\" | \"center\" | \"left\" | \"right\" | \"top\" | OnlyStringNumeric;\n\n  export type TransformStyle = \"flat\" | \"preserve-3d\";\n\n  export type Transition = DataType.SingleTransition | OnlyString;\n\n  export type TransitionDelay = never  | OnlyString;\n\n  export type TransitionDuration = never  | OnlyString;\n\n  export type TransitionProperty = \"all\" | \"none\" | OnlyString;\n\n  export type TransitionTimingFunction = DataType.EasingFunction | OnlyString;\n\n  export type Translate = \"none\" | OnlyStringNumeric;\n\n  export type UnicodeBidi =\n    | \"bidi-override\"\n    | \"embed\"\n    | \"isolate\"\n    | \"isolate-override\"\n    | \"normal\"\n    | \"plaintext\";\n\n  export type UserSelect = \"all\" | \"auto\" | \"contain\" | \"element\" | \"none\" | \"text\";\n\n  export type VerticalAlign =\n    | number\n    | \"baseline\"\n    | \"bottom\"\n    | \"middle\"\n    | \"sub\"\n    | \"super\"\n    | \"text-bottom\"\n    | \"text-top\"\n    | \"top\"\n    | OnlyString;\n\n  export type Visibility = \"collapse\" | \"hidden\" | \"visible\";\n\n  export type WhiteSpace = \"break-spaces\" | \"normal\" | \"nowrap\" | \"pre\" | \"pre-line\" | \"pre-wrap\";\n\n  export type Widows = OnlyNumber;\n\n  export type Width =\n    | number\n    | \"auto\"\n    | \"stretch\"\n    | \"fit-content\"\n    | \"intrinsic\"\n    | \"max-content\"\n    | \"min-content\"\n    | \"min-intrinsic\"\n    | OnlyString;\n\n  export type WillChange = DataType.AnimateableFeature | \"auto\" | OnlyString;\n\n  export type WordBreak = \"break-all\" | \"break-word\" | \"keep-all\" | \"normal\";\n\n  export type WordSpacing = \"normal\" | OnlyStringNumeric;\n\n  export type WordWrap = \"break-word\" | \"normal\";\n\n  export type WritingMode = \"horizontal-tb\" | \"sideways-lr\" | \"sideways-rl\" | \"vertical-lr\" | \"vertical-rl\";\n\n  export type ZIndex = \"auto\" | OnlyStringNumeric;\n\n  export type Zoom = \"normal\" | \"reset\" | OnlyStringNumeric;\n\n  export type MozAppearance =\n    | \"button\"\n    | \"button-arrow-down\"\n    | \"button-arrow-next\"\n    | \"button-arrow-previous\"\n    | \"button-arrow-up\"\n    | \"button-bevel\"\n    | \"button-focus\"\n    | \"caret\"\n    | \"checkbox\"\n    | \"checkbox-container\"\n    | \"checkbox-label\"\n    | \"checkmenuitem\"\n    | \"dualbutton\"\n    | \"groupbox\"\n    | \"listbox\"\n    | \"listitem\"\n    | \"menuarrow\"\n    | \"menubar\"\n    | \"menucheckbox\"\n    | \"menuimage\"\n    | \"menuitem\"\n    | \"menuitemtext\"\n    | \"menulist\"\n    | \"menulist-button\"\n    | \"menulist-text\"\n    | \"menulist-textfield\"\n    | \"menupopup\"\n    | \"menuradio\"\n    | \"menuseparator\"\n    | \"meterbar\"\n    | \"meterchunk\"\n    | \"none\"\n    | \"progressbar\"\n    | \"progressbar-vertical\"\n    | \"progresschunk\"\n    | \"progresschunk-vertical\"\n    | \"radio\"\n    | \"radio-container\"\n    | \"radio-label\"\n    | \"radiomenuitem\"\n    | \"range\"\n    | \"range-thumb\"\n    | \"resizer\"\n    | \"resizerpanel\"\n    | \"scale-horizontal\"\n    | \"scale-vertical\"\n    | \"scalethumb-horizontal\"\n    | \"scalethumb-vertical\"\n    | \"scalethumbend\"\n    | \"scalethumbstart\"\n    | \"scalethumbtick\"\n    | \"scrollbarbutton-down\"\n    | \"scrollbarbutton-left\"\n    | \"scrollbarbutton-right\"\n    | \"scrollbarbutton-up\"\n    | \"scrollbarthumb-horizontal\"\n    | \"scrollbarthumb-vertical\"\n    | \"scrollbartrack-horizontal\"\n    | \"scrollbartrack-vertical\"\n    | \"searchfield\"\n    | \"separator\"\n    | \"sheet\"\n    | \"spinner\"\n    | \"spinner-downbutton\"\n    | \"spinner-textfield\"\n    | \"spinner-upbutton\"\n    | \"splitter\"\n    | \"statusbar\"\n    | \"statusbarpanel\"\n    | \"tab\"\n    | \"tab-scroll-arrow-back\"\n    | \"tab-scroll-arrow-forward\"\n    | \"tabpanel\"\n    | \"tabpanels\"\n    | \"textfield\"\n    | \"textfield-multiline\"\n    | \"toolbar\"\n    | \"toolbarbutton\"\n    | \"toolbarbutton-dropdown\"\n    | \"toolbargripper\"\n    | \"toolbox\"\n    | \"tooltip\"\n    | \"treeheader\"\n    | \"treeheadercell\"\n    | \"treeheadersortarrow\"\n    | \"treeitem\"\n    | \"treeline\"\n    | \"treetwisty\"\n    | \"treetwistyopen\"\n    | \"treeview\";\n\n  export type MozBinding = \"none\" | OnlyString;\n\n  export type MozBorderBottomColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozBorderLeftColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozBorderRightColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozBorderTopColors = DataType.Color | \"none\" | OnlyString;\n\n  export type MozContextProperties = \"fill\" | \"fill-opacity\" | \"none\" | \"stroke\" | \"stroke-opacity\" | OnlyString;\n\n  export type MozFloatEdge = \"border-box\" | \"content-box\" | \"margin-box\" | \"padding-box\";\n\n  export type MozForceBrokenImageIcon = OnlyNumber;\n\n  export type MozImageRegion = \"auto\" | OnlyString;\n\n  export type MozOrient = \"block\" | \"horizontal\" | \"inline\" | \"vertical\";\n\n  export type MozOutlineRadius = OnlyStringNumeric;\n\n  export type MozOutlineRadiusBottomleft = OnlyStringNumeric;\n\n  export type MozOutlineRadiusBottomright = OnlyStringNumeric;\n\n  export type MozOutlineRadiusTopleft = OnlyStringNumeric;\n\n  export type MozOutlineRadiusTopright = OnlyStringNumeric;\n\n  export type MozStackSizing = \"ignore\" | \"stretch-to-fit\";\n\n  export type MozTextBlink = \"blink\" | \"none\";\n\n  export type MozUserFocus = \"ignore\" | \"none\" | \"normal\" | \"select-after\" | \"select-all\" | \"select-before\" | \"select-menu\" | \"select-same\";\n\n  export type MozUserInput = \"auto\" | \"disabled\" | \"enabled\" | \"none\";\n\n  export type MozUserModify = \"read-only\" | \"read-write\" | \"write-only\";\n\n  export type MozWindowDragging = \"drag\" | \"no-drag\";\n\n  export type MozWindowShadow = \"default\" | \"menu\" | \"none\" | \"sheet\" | \"tooltip\";\n\n  export type MsAccelerator = \"false\" | \"true\";\n\n  export type MsBlockProgression = \"bt\" | \"lr\" | \"rl\" | \"tb\";\n\n  export type MsContentZoomChaining = \"chained\" | \"none\";\n\n  export type MsContentZoomLimit = OnlyString;\n\n  export type MsContentZoomLimitMax = OnlyString;\n\n  export type MsContentZoomLimitMin = OnlyString;\n\n  export type MsContentZoomSnap = \"mandatory\" | \"none\" | \"proximity\" | OnlyString;\n\n  export type MsContentZoomSnapPoints = OnlyString;\n\n  export type MsContentZoomSnapType = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type MsContentZooming = \"none\" | \"zoom\";\n\n  export type MsFilter = OnlyString;\n\n  export type MsFlowFrom = \"none\" | OnlyString;\n\n  export type MsFlowInto = \"none\" | OnlyString;\n\n  export type MsGridColumns = DataType.TrackBreadth | \"none\" | OnlyString;\n\n  export type MsGridRows = DataType.TrackBreadth | \"none\" | OnlyString;\n\n  export type MsHighContrastAdjust = \"auto\" | \"none\";\n\n  export type MsHyphenateLimitChars = \"auto\" | OnlyStringNumeric;\n\n  export type MsHyphenateLimitLines = \"no-limit\" | OnlyNumber;\n\n  export type MsHyphenateLimitZone = OnlyStringNumeric;\n\n  export type MsImeAlign = \"after\" | \"auto\";\n\n  export type MsOverflowStyle = \"auto\" | \"none\" | \"scrollbar\";\n\n  export type MsScrollChaining = \"chained\" | \"none\";\n\n  export type MsScrollLimit = OnlyString;\n\n  export type MsScrollLimitXMax = number | \"auto\";\n\n  export type MsScrollLimitXMin = number;\n\n  export type MsScrollLimitYMax = number | \"auto\";\n\n  export type MsScrollLimitYMin = number;\n\n  export type MsScrollRails = \"none\" | \"railed\";\n\n  export type MsScrollSnapPointsX = OnlyString;\n\n  export type MsScrollSnapPointsY = OnlyString;\n\n  export type MsScrollSnapType = \"mandatory\" | \"none\" | \"proximity\";\n\n  export type MsScrollSnapX = OnlyString;\n\n  export type MsScrollSnapY = OnlyString;\n\n  export type MsScrollTranslation = \"none\" | \"vertical-to-horizontal\";\n\n  export type MsScrollbar3dlightColor = DataType.Color;\n\n  export type MsScrollbarArrowColor = DataType.Color;\n\n  export type MsScrollbarBaseColor = DataType.Color;\n\n  export type MsScrollbarDarkshadowColor = DataType.Color;\n\n  export type MsScrollbarFaceColor = DataType.Color;\n\n  export type MsScrollbarHighlightColor = DataType.Color;\n\n  export type MsScrollbarShadowColor = DataType.Color;\n\n  export type MsTextAutospace = \"ideograph-alpha\" | \"ideograph-numeric\" | \"ideograph-parenthesis\" | \"ideograph-space\" | \"none\";\n\n  export type MsTouchSelect = \"grippers\" | \"none\";\n\n  export type MsUserSelect = \"element\" | \"none\" | \"text\";\n\n  export type MsWrapFlow = \"auto\" | \"both\" | \"clear\" | \"end\" | \"maximum\" | \"start\";\n\n  export type MsWrapMargin = number;\n\n  export type MsWrapThrough = \"none\" | \"wrap\";\n\n  export type WebkitAppearance =\n    | \"button\"\n    | \"button-bevel\"\n    | \"caret\"\n    | \"checkbox\"\n    | \"default-button\"\n    | \"inner-spin-button\"\n    | \"listbox\"\n    | \"listitem\"\n    | \"media-controls-background\"\n    | \"media-controls-fullscreen-background\"\n    | \"media-current-time-display\"\n    | \"media-enter-fullscreen-button\"\n    | \"media-exit-fullscreen-button\"\n    | \"media-fullscreen-button\"\n    | \"media-mute-button\"\n    | \"media-overlay-play-button\"\n    | \"media-play-button\"\n    | \"media-seek-back-button\"\n    | \"media-seek-forward-button\"\n    | \"media-slider\"\n    | \"media-sliderthumb\"\n    | \"media-time-remaining-display\"\n    | \"media-toggle-closed-captions-button\"\n    | \"media-volume-slider\"\n    | \"media-volume-slider-container\"\n    | \"media-volume-sliderthumb\"\n    | \"menulist\"\n    | \"menulist-button\"\n    | \"menulist-text\"\n    | \"menulist-textfield\"\n    | \"meter\"\n    | \"none\"\n    | \"progress-bar\"\n    | \"progress-bar-value\"\n    | \"push-button\"\n    | \"radio\"\n    | \"searchfield\"\n    | \"searchfield-cancel-button\"\n    | \"searchfield-decoration\"\n    | \"searchfield-results-button\"\n    | \"searchfield-results-decoration\"\n    | \"slider-horizontal\"\n    | \"slider-vertical\"\n    | \"sliderthumb-horizontal\"\n    | \"sliderthumb-vertical\"\n    | \"square-button\"\n    | \"textarea\"\n    | \"textfield\";\n\n  export type WebkitBorderBefore = DataType.LineWidth | DataType.LineStyle | DataType.Color | OnlyString;\n\n  export type WebkitBorderBeforeColor = DataType.Color;\n\n  export type WebkitBorderBeforeStyle = DataType.LineStyle | OnlyString;\n\n  export type WebkitBorderBeforeWidth = DataType.LineWidth | OnlyString;\n\n  export type WebkitBoxReflect = \"above\" | \"below\" | \"left\" | \"right\" | OnlyStringNumeric;\n\n  export type WebkitLineClamp = \"none\" | OnlyNumber;\n\n  export type WebkitMask =\n    | DataType.Position\n    | DataType.RepeatStyle\n    | DataType.Box\n    | \"border\"\n    | \"content\"\n    | \"none\"\n    | \"padding\"\n    | \"text\"\n    | OnlyString;\n\n  export type WebkitMaskAttachment = DataType.Attachment | OnlyString;\n\n  export type WebkitMaskClip = DataType.Box | \"border\" | \"content\" | \"padding\" | \"text\" | OnlyString;\n\n  export type WebkitMaskComposite = DataType.CompositeStyle | OnlyString;\n\n  export type WebkitMaskImage = \"none\" | OnlyString;\n\n  export type WebkitMaskOrigin = DataType.Box | \"border\" | \"content\" | \"padding\" | OnlyString;\n\n  export type WebkitMaskPosition = DataType.Position | OnlyString;\n\n  export type WebkitMaskPositionX = \"center\" | \"left\" | \"right\" | OnlyStringNumeric;\n\n  export type WebkitMaskPositionY = \"bottom\" | \"center\" | \"top\" | OnlyStringNumeric;\n\n  export type WebkitMaskRepeat = DataType.RepeatStyle | OnlyString;\n\n  export type WebkitMaskRepeatX = \"no-repeat\" | \"repeat\" | \"round\" | \"space\";\n\n  export type WebkitMaskRepeatY = \"no-repeat\" | \"repeat\" | \"round\" | \"space\";\n\n  export type WebkitMaskSize = DataType.BgSize | OnlyString;\n\n  export type WebkitOverflowScrolling = \"auto\" | \"touch\";\n\n  export type WebkitTapHighlightColor = DataType.Color;\n\n  export type WebkitTextFillColor = DataType.Color;\n\n  export type WebkitTextStroke = DataType.Color | OnlyStringNumeric;\n\n  export type WebkitTextStrokeColor = DataType.Color;\n\n  export type WebkitTextStrokeWidth = number;\n\n  export type WebkitTouchCallout = \"default\" | \"none\";\n\n  export type WebkitUserModify = \"read-only\" | \"read-write\" | \"read-write-plaintext-only\";\n\n  export type AlignmentBaseline =\n    | \"after-edge\"\n    | \"alphabetic\"\n    | \"auto\"\n    | \"baseline\"\n    | \"before-edge\"\n    | \"central\"\n    | \"hanging\"\n    | \"ideographic\"\n    | \"mathematical\"\n    | \"middle\"\n    | \"text-after-edge\"\n    | \"text-before-edge\";\n\n  export type BaselineShift = \"baseline\" | \"sub\" | \"super\" | OnlyStringNumeric;\n\n  export type ClipRule = \"evenodd\" | \"nonzero\";\n\n  export type ColorInterpolation = \"auto\" | \"linearRGB\" | \"sRGB\";\n\n  export type ColorRendering = \"auto\" | \"optimizeQuality\" | \"optimizeSpeed\";\n\n  export type DominantBaseline =\n    | \"alphabetic\"\n    | \"auto\"\n    | \"central\"\n    | \"hanging\"\n    | \"ideographic\"\n    | \"mathematical\"\n    | \"middle\"\n    | \"no-change\"\n    | \"reset-size\"\n    | \"text-after-edge\"\n    | \"text-before-edge\"\n    | \"use-script\";\n\n  export type Fill = DataType.Paint;\n\n  export type FillOpacity = OnlyNumber;\n\n  export type FillRule = \"evenodd\" | \"nonzero\";\n\n  export type FloodColor = DataType.Color | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\";\n\n  export type FloodOpacity = OnlyNumber;\n\n  export type GlyphOrientationVertical = \"auto\" | OnlyStringNumeric;\n\n  export type LightingColor = DataType.Color | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\";\n\n  export type Marker = \"none\" | OnlyString;\n\n  export type MarkerEnd = \"none\" | OnlyString;\n\n  export type MarkerMid = \"none\" | OnlyString;\n\n  export type MarkerStart = \"none\" | OnlyString;\n\n  export type ShapeRendering = \"auto\" | \"crispEdges\" | \"geometricPrecision\" | \"optimizeSpeed\";\n\n  export type StopColor = DataType.Color | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\";\n\n  export type StopOpacity = OnlyNumber;\n\n  export type Stroke = DataType.Paint;\n\n  export type StrokeDasharray = DataType.Dasharray | \"none\";\n\n  export type StrokeDashoffset = OnlyStringNumeric;\n\n  export type StrokeLinecap = \"butt\" | \"round\" | \"square\";\n\n  export type StrokeLinejoin = \"bevel\" | \"miter\" | \"round\";\n\n  export type StrokeMiterlimit = OnlyNumber;\n\n  export type StrokeOpacity = OnlyNumber;\n\n  export type StrokeWidth = OnlyStringNumeric;\n\n  export type TextAnchor = \"end\" | \"middle\" | \"start\";\n\n  export type VectorEffect = \"non-scaling-stroke\" | \"none\";\n}\n\nexport namespace AtRule {\n  export interface CounterStyle {\n    additiveSymbols?: string;\n    fallback?: string;\n    negative?: string;\n    pad?: string;\n    prefix?: string;\n    range?: Range;\n    speakAs?: SpeakAs;\n    suffix?: string;\n    symbols?: string;\n    system?: System;\n  }\n\n  export interface CounterStyleHyphen {\n    \"additive-symbols\"?: string;\n    fallback?: string;\n    negative?: string;\n    pad?: string;\n    prefix?: string;\n    range?: Range;\n    \"speak-as\"?: SpeakAs;\n    suffix?: string;\n    symbols?: string;\n    system?: System;\n  }\n\n  export type CounterStyleFallback = {\n    [P in keyof CounterStyle]: CounterStyle[P] | CounterStyle[P][];\n  };\n\n  export type CounterStyleHyphenFallback = {\n    [P in keyof CounterStyleHyphen]: CounterStyleHyphen[P] | CounterStyleHyphen[P][];\n  };\n\n  export interface FontFace {\n    MozFontFeatureSettings?: FontFeatureSettings;\n    fontDisplay?: FontDisplay;\n    fontFamily?: string;\n    fontFeatureSettings?: FontFeatureSettings;\n    fontStretch?: FontStretch;\n    fontStyle?: FontStyle;\n    fontVariant?: FontVariant;\n    fontVariationSettings?: FontVariationSettings;\n    fontWeight?: FontWeight;\n    src?: string;\n    unicodeRange?: string;\n    sizeAdjust?: string;\n    ascentOverride?: string;\n    descentOverride?: string;\n    lineGapOverride?: string;\n    advanceOverride?: string;\n  }\n\n  export interface FontFaceHyphen {\n    \"font-display\"?: FontDisplay;\n    \"font-family\"?: string;\n    \"font-feature-settings\"?: FontFeatureSettings;\n    \"font-stretch\"?: FontStretch;\n    \"font-style\"?: FontStyle;\n    \"font-variant\"?: FontVariant;\n    \"font-variation-settings\"?: FontVariationSettings;\n    \"font-weight\"?: FontWeight;\n    src?: string;\n    \"unicode-range\"?: string;\n    \"size-adjust\"?: string;\n    \"ascent-override\"?: string;\n    \"descent-override\"?: string;\n    \"line-gap-override\"?: string;\n    \"advance-override\"?: string;\n  }\n\n  export type FontFaceFallback = {\n    [P in keyof FontFace]: FontFace[P] | FontFace[P][];\n  };\n\n  export type FontFaceHyphenFallback = {\n    [P in keyof FontFaceHyphen]: FontFaceHyphen[P] | FontFaceHyphen[P][];\n  };\n\n  export interface Page {\n    size?: Size;\n  }\n\n  export interface PageHyphen {\n    size?: Size;\n  }\n\n  export type PageFallback = {\n    [P in keyof Page]: Page[P] | Page[P][];\n  };\n\n  export type PageHyphenFallback = {\n    [P in keyof PageHyphen]: PageHyphen[P] | PageHyphen[P][];\n  };\n\n  export interface Property {\n    inherits?: Inherits;\n    initialValue?: boolean | OnlyStringNumeric\n    syntax?: string;\n  }\n\n  export interface PropertyHyphen {\n    inherits?: Inherits;\n    \"initial-value\"?: string;\n    syntax?: string;\n  }\n\n  export type PropertyFallback = {\n    [P in keyof Property]: Property[P] | Property[P][];\n  };\n\n  export type PropertyHyphenFallback = {\n    [P in keyof PropertyHyphen]: PropertyHyphen[P] | PropertyHyphen[P][];\n  };\n\n  export interface Viewport {\n    height?: Height;\n    maxHeight?: MaxHeight;\n    maxWidth?: MaxWidth;\n    maxZoom?: MaxZoom;\n    minHeight?: MinHeight;\n    minWidth?: MinWidth;\n    minZoom?: MinZoom;\n    orientation?: Orientation;\n    userZoom?: UserZoom;\n    viewportFit?: ViewportFit;\n    width?: Width;\n    zoom?: Zoom;\n  }\n\n  export interface ViewportHyphen {\n    height?: Height;\n    \"max-height\"?: MaxHeight;\n    \"max-width\"?: MaxWidth;\n    \"max-zoom\"?: MaxZoom;\n    \"min-height\"?: MinHeight;\n    \"min-width\"?: MinWidth;\n    \"min-zoom\"?: MinZoom;\n    orientation?: Orientation;\n    \"user-zoom\"?: UserZoom;\n    \"viewport-fit\"?: ViewportFit;\n    width?: Width;\n    zoom?: Zoom;\n  }\n\n  export type ViewportFallback = {\n    [P in keyof Viewport]: Viewport[P] | Viewport[P][];\n  };\n\n  export type ViewportHyphenFallback = {\n    [P in keyof ViewportHyphen]: ViewportHyphen[P] | ViewportHyphen[P][];\n  };\n\n  type Range = \"auto\" | \"infinite\" | OnlyStringNumeric;\n\n  type SpeakAs = \"auto\" | \"bullets\" | \"numbers\" | \"spell-out\" | \"words\" | OnlyString;\n\n  type System = \"additive\" | \"alphabetic\" | \"cyclic\" | \"fixed\" | \"numeric\" | \"symbolic\" | OnlyString;\n\n  type FontFeatureSettings = \"normal\" | OnlyString;\n\n  type FontDisplay = \"auto\" | \"block\" | \"fallback\" | \"optional\" | \"swap\";\n\n  type FontStretch = DataType.FontStretchAbsolute | OnlyString;\n\n  type FontStyle = \"italic\" | \"normal\" | \"oblique\" | OnlyString;\n\n  type FontVariant =\n    | DataType.EastAsianVariantValues\n    | \"all-petite-caps\"\n    | \"all-small-caps\"\n    | \"common-ligatures\"\n    | \"contextual\"\n    | \"diagonal-fractions\"\n    | \"discretionary-ligatures\"\n    | \"full-width\"\n    | \"historical-forms\"\n    | \"historical-ligatures\"\n    | \"lining-nums\"\n    | \"no-common-ligatures\"\n    | \"no-contextual\"\n    | \"no-discretionary-ligatures\"\n    | \"no-historical-ligatures\"\n    | \"none\"\n    | \"normal\"\n    | \"oldstyle-nums\"\n    | \"ordinal\"\n    | \"petite-caps\"\n    | \"proportional-nums\"\n    | \"proportional-width\"\n    | \"ruby\"\n    | \"slashed-zero\"\n    | \"small-caps\"\n    | \"stacked-fractions\"\n    | \"tabular-nums\"\n    | \"titling-caps\"\n    | \"unicase\"\n    | OnlyString;\n\n  type FontVariationSettings = \"normal\" | OnlyString;\n\n  type FontWeight = DataType.FontWeightAbsolute;\n\n  type Size = DataType.PageSize | \"auto\" | \"landscape\" | \"portrait\" | OnlyStringNumeric;\n\n  type Inherits = \"false\" | \"true\" | boolean;\n\n  type Height = DataType.ViewportLength | OnlyString;\n\n  type MaxHeight = DataType.ViewportLength;\n\n  type MaxWidth = DataType.ViewportLength;\n\n  type MaxZoom = \"auto\" | OnlyStringNumeric;\n\n  type MinHeight = DataType.ViewportLength;\n\n  type MinWidth = DataType.ViewportLength;\n\n  type MinZoom = \"auto\" | OnlyStringNumeric;\n\n  type Orientation = \"auto\" | \"landscape\" | \"portrait\";\n\n  type UserZoom = \"fixed\" | \"zoom\";\n\n  type ViewportFit = \"auto\" | \"contain\" | \"cover\";\n\n  type Width = DataType.ViewportLength | OnlyString;\n\n  type Zoom = \"auto\" | OnlyStringNumeric;\n}\n\ndeclare namespace DataType {\n  type AbsoluteSize = \"large\" | \"medium\" | \"small\" | \"x-large\" | \"x-small\" | \"xx-large\" | \"xx-small\" | \"xxx-large\";\n\n  type AnimateableFeature = \"contents\" | \"scroll-position\" | OnlyString;\n\n  type Attachment = \"fixed\" | \"local\" | \"scroll\";\n\n  type BgPosition = \"bottom\" | \"center\" | \"left\" | \"right\" | \"top\" | OnlyStringNumeric;\n\n  type BgSize = \"auto\" | \"contain\" | \"cover\" | OnlyStringNumeric;\n\n  type BlendMode =\n    | \"color\"\n    | \"color-burn\"\n    | \"color-dodge\"\n    | \"darken\"\n    | \"difference\"\n    | \"exclusion\"\n    | \"hard-light\"\n    | \"hue\"\n    | \"lighten\"\n    | \"luminosity\"\n    | \"multiply\"\n    | \"normal\"\n    | \"overlay\"\n    | \"saturation\"\n    | \"screen\"\n    | \"soft-light\";\n\n  type Box = \"border-box\" | \"content-box\" | \"padding-box\";\n\n  type Color = NamedColor | SystemColor | \"CurrentColor\" | \"hsl(\" | \"lab(\" | \"rgb(\" | OnlyString;\n\n  type CompatAuto =\n    | \"button\"\n    | \"checkbox\"\n    | \"listbox\"\n    | \"menulist\"\n    | \"meter\"\n    | \"progress-bar\"\n    | \"push-button\"\n    | \"radio\"\n    | \"searchfield\"\n    | \"slider-horizontal\"\n    | \"square-button\"\n    | \"textarea\";\n\n  type CompositeStyle =\n    | \"clear\"\n    | \"copy\"\n    | \"destination-atop\"\n    | \"destination-in\"\n    | \"destination-out\"\n    | \"destination-over\"\n    | \"source-atop\"\n    | \"source-in\"\n    | \"source-out\"\n    | \"source-over\"\n    | \"xor\";\n\n  type CompositingOperator = \"add\" | \"exclude\" | \"intersect\" | \"subtract\";\n\n  type ContentDistribution = \"space-around\" | \"space-between\" | \"space-evenly\" | \"stretch\";\n\n  type ContentList = Quote | \"contents\" | OnlyString;\n\n  type ContentPosition = \"center\" | \"end\" | \"flex-end\" | \"flex-start\" | \"start\";\n\n  type CubicBezierTimingFunction = \"ease\" | \"ease-in\" | \"ease-in-out\" | \"ease-out\" | OnlyString;\n\n  type Dasharray = OnlyStringNumeric;\n\n  type SystemColor = \"ActiveText\" | \"ButtonFace\" | \"ButtonText\" | \"ButtonBorder\" | \"Canvas\" | \"CanvasText\" | \"Field\" | \"FieldText\" | \"GrayText\" | \"Highlight\" | \"HighlightText\" | \"LinkText\" | \"Mark\" | \"MarkText\" | \"VisitedText\"\n\n  type DisplayInside = \"flex\" | \"flow\" | \"flow-root\" | \"grid\" | \"ruby\" | \"table\";\n\n  type DisplayInternal =\n    | \"ruby-base\"\n    | \"ruby-base-container\"\n    | \"ruby-text\"\n    | \"ruby-text-container\"\n    | \"table-caption\"\n    | \"table-cell\"\n    | \"table-column\"\n    | \"table-column-group\"\n    | \"table-footer-group\"\n    | \"table-header-group\"\n    | \"table-row\"\n    | \"table-row-group\";\n\n  type DisplayLegacy = \"inline-block\" | \"inline-flex\" | \"inline-grid\" | \"inline-list-item\" | \"inline-table\";\n\n  type DisplayOutside = \"block\" | \"inline\" | \"run-in\";\n\n  type EasingFunction = CubicBezierTimingFunction | StepTimingFunction | \"linear\";\n\n  type EastAsianVariantValues = \"jis04\" | \"jis78\" | \"jis83\" | \"jis90\" | \"simplified\" | \"traditional\";\n\n  type FinalBgLayer = Color | BgPosition | RepeatStyle | Attachment | Box | \"none\" | OnlyString;\n\n  type FontStretchAbsolute =\n    | \"condensed\"\n    | \"expanded\"\n    | \"extra-condensed\"\n    | \"extra-expanded\"\n    | \"normal\"\n    | \"semi-condensed\"\n    | \"semi-expanded\"\n    | \"ultra-condensed\"\n    | \"ultra-expanded\"\n    | OnlyString;\n\n  type FontWeightAbsolute = \"bold\" | \"normal\" | OnlyStringNumeric;\n\n  type GenericFamily = \"cursive\" | \"emoji\" | \"fangsong\" | \"fantasy\" | \"math\" | \"monospace\" | \"sans-serif\" | \"serif\" | \"system-ui\" | \"ui-monospace\" | \"ui-rounded\" | \"ui-sans-serif\" | \"ui-serif\";\n\n  type GeometryBox = Box | \"fill-box\" | \"margin-box\" | \"stroke-box\" | \"view-box\";\n\n  type GridLine = \"auto\" | OnlyStringNumeric;\n\n  type LineStyle = \"dashed\" | \"dotted\" | \"double\" | \"groove\" | \"hidden\" | \"inset\" | \"none\" | \"outset\" | \"ridge\" | \"solid\";\n\n  type LineWidth = number | \"medium\" | \"thick\" | \"thin\";\n\n  type MaskLayer = Position | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | \"no-clip\" | \"none\" | OnlyString;\n\n  type MaskingMode = \"alpha\" | \"luminance\" | \"match-source\";\n\n  type NamedColor =\n    | \"AliceBlue\"\n    | \"AntiqueWhite\"\n    | \"Aqua\"\n    | \"Aquamarine\"\n    | \"Azure\"\n    | \"Beige\"\n    | \"Bisque\"\n    | \"Black\"\n    | \"BlanchedAlmond\"\n    | \"Blue\"\n    | \"BlueViolet\"\n    | \"Brown\"\n    | \"BurlyWood\"\n    | \"CadetBlue\"\n    | \"Chartreuse\"\n    | \"Chocolate\"\n    | \"Coral\"\n    | \"CornflowerBlue\"\n    | \"Cornsilk\"\n    | \"Crimson\"\n    | \"Cyan\"\n    | \"DarkBlue\"\n    | \"DarkCyan\"\n    | \"DarkGoldenRod\"\n    | \"DarkGray\"\n    | \"DarkGreen\"\n    | \"DarkGrey\"\n    | \"DarkKhaki\"\n    | \"DarkMagenta\"\n    | \"DarkOliveGreen\"\n    | \"DarkOrange\"\n    | \"DarkOrchid\"\n    | \"DarkRed\"\n    | \"DarkSalmon\"\n    | \"DarkSeaGreen\"\n    | \"DarkSlateBlue\"\n    | \"DarkSlateGray\"\n    | \"DarkSlateGrey\"\n    | \"DarkTurquoise\"\n    | \"DarkViolet\"\n    | \"DeepPink\"\n    | \"DeepSkyBlue\"\n    | \"DimGray\"\n    | \"DimGrey\"\n    | \"DodgerBlue\"\n    | \"FireBrick\"\n    | \"FloralWhite\"\n    | \"ForestGreen\"\n    | \"Fuchsia\"\n    | \"Gainsboro\"\n    | \"GhostWhite\"\n    | \"Gold\"\n    | \"GoldenRod\"\n    | \"Gray\"\n    | \"Green\"\n    | \"GreenYellow\"\n    | \"Grey\"\n    | \"HoneyDew\"\n    | \"HotPink\"\n    | \"IndianRed\"\n    | \"Indigo\"\n    | \"Ivory\"\n    | \"Khaki\"\n    | \"Lavender\"\n    | \"LavenderBlush\"\n    | \"LawnGreen\"\n    | \"LemonChiffon\"\n    | \"LightBlue\"\n    | \"LightCoral\"\n    | \"LightCyan\"\n    | \"LightGoldenRodYellow\"\n    | \"LightGray\"\n    | \"LightGreen\"\n    | \"LightGrey\"\n    | \"LightPink\"\n    | \"LightSalmon\"\n    | \"LightSeaGreen\"\n    | \"LightSkyBlue\"\n    | \"LightSlateGray\"\n    | \"LightSlateGrey\"\n    | \"LightSteelBlue\"\n    | \"LightYellow\"\n    | \"Lime\"\n    | \"LimeGreen\"\n    | \"Linen\"\n    | \"Magenta\"\n    | \"Maroon\"\n    | \"MediumAquaMarine\"\n    | \"MediumBlue\"\n    | \"MediumOrchid\"\n    | \"MediumPurple\"\n    | \"MediumSeaGreen\"\n    | \"MediumSlateBlue\"\n    | \"MediumSpringGreen\"\n    | \"MediumTurquoise\"\n    | \"MediumVioletRed\"\n    | \"MidnightBlue\"\n    | \"MintCream\"\n    | \"MistyRose\"\n    | \"Moccasin\"\n    | \"NavajoWhite\"\n    | \"Navy\"\n    | \"OldLace\"\n    | \"Olive\"\n    | \"OliveDrab\"\n    | \"Orange\"\n    | \"OrangeRed\"\n    | \"Orchid\"\n    | \"PaleGoldenRod\"\n    | \"PaleGreen\"\n    | \"PaleTurquoise\"\n    | \"PaleVioletRed\"\n    | \"PapayaWhip\"\n    | \"PeachPuff\"\n    | \"Peru\"\n    | \"Pink\"\n    | \"Plum\"\n    | \"PowderBlue\"\n    | \"Purple\"\n    | \"RebeccaPurple\"\n    | \"Red\"\n    | \"RosyBrown\"\n    | \"RoyalBlue\"\n    | \"SaddleBrown\"\n    | \"Salmon\"\n    | \"SandyBrown\"\n    | \"SeaGreen\"\n    | \"SeaShell\"\n    | \"Sienna\"\n    | \"Silver\"\n    | \"SkyBlue\"\n    | \"SlateBlue\"\n    | \"SlateGray\"\n    | \"SlateGrey\"\n    | \"Snow\"\n    | \"SpringGreen\"\n    | \"SteelBlue\"\n    | \"Tan\"\n    | \"Teal\"\n    | \"Thistle\"\n    | \"Tomato\"\n    | \"transparent\"\n    | \"Turquoise\"\n    | \"Violet\"\n    | \"Wheat\"\n    | \"White\"\n    | \"WhiteSmoke\"\n    | \"Yellow\"\n    | \"YellowGreen\";\n\n  type PageSize = \"A3\" | \"A4\" | \"A5\" | \"B4\" | \"B5\" | \"JIS-B4\" | \"JIS-B5\" | \"ledger\" | \"legal\" | \"letter\";\n\n  type Paint = Color | \"child\" | \"context-fill\" | \"context-stroke\" | \"none\" | OnlyString;\n\n  type Position = \"bottom\" | \"center\" | \"left\" | \"right\" | \"top\" | OnlyStringNumeric;\n\n  type Quote = \"close-quote\" | \"no-close-quote\" | \"no-open-quote\" | \"open-quote\";\n\n  type RepeatStyle = \"no-repeat\" | \"repeat\" | \"repeat-x\" | \"repeat-y\" | \"round\" | \"space\" | OnlyString;\n\n  type SelfPosition = \"center\" | \"end\" | \"flex-end\" | \"flex-start\" | \"self-end\" | \"self-start\" | \"start\";\n\n  type SingleAnimation =\n    | EasingFunction\n    | SingleAnimationDirection\n    | SingleAnimationFillMode\n    | \"infinite\"\n    | \"none\"\n    | \"paused\"\n    | \"running\"\n    | OnlyString\n    | OnlyNumber;\n\n  type SingleAnimationDirection = \"alternate\" | \"alternate-reverse\" | \"normal\" | \"reverse\";\n\n  type SingleAnimationFillMode = \"backwards\" | \"both\" | \"forwards\" | \"none\";\n\n  type SingleTransition = EasingFunction  | \"all\" | \"none\" | OnlyString;\n\n  type StepTimingFunction = \"step-end\" | \"step-start\" | OnlyString;\n\n  type TrackBreadth = \"auto\" | \"max-content\" | \"min-content\" | OnlyStringNumeric;\n\n  type ViewportLength = \"auto\" | OnlyStringNumeric;\n\n  type VisualBox = \"border-box\" | \"content-box\" | \"padding-box\";\n}\n"
  },
  {
    "path": "packages/react/types/index.d.ts",
    "content": "import type Stitches from './stitches.js'\n\nimport type * as Config from './config.js'\nimport type * as CSSUtil from './css-util.js'\nimport type * as StyledComponent from './styled-component.js'\n\nexport { $$PropertyValue, $$ScaleValue, $$ThemeValue } from './css-util.js'\nexport type CreateStitches = Config.CreateStitches\nexport type CSSProperties = CSSUtil.CSSProperties\nexport type DefaultThemeMap = Config.DefaultThemeMap\nexport type FontFace = CSSUtil.Native.AtRule.FontFace\n\n/** Returns a Style interface from a configuration, leveraging the given media and style map. */\nexport type CSS<\n\tConfig extends {\n\t\tmedia?: {}\n\t\ttheme?: {}\n\t\tthemeMap?: {}\n\t\tutils?: {}\n\t} = {\n\t\tmedia: {},\n\t\ttheme: {},\n\t\tthemeMap: {},\n\t\tutils: {}\n\t}\n> = CSSUtil.CSS<\n\tConfig['media'],\n\tConfig['theme'],\n\tConfig['themeMap'],\n\tConfig['utils']\n>\n\n/** Returns the properties, attributes, and children expected by a component. */\nexport type ComponentProps<Component> = Component extends ((...args: any[]) => any) ? Parameters<Component>[0] : never\n\n/** Returns a type that expects a value to be a kind of CSS property value. */\nexport type PropertyValue<Property extends keyof CSSUtil.CSSProperties, Config = null> = (\n\tConfig extends null\n\t\t? CSSUtil.WithPropertyValue<Property>\n\t: Config extends { [K: string]: any }\n\t\t? CSSUtil.CSS<\n\t\t\tConfig['media'],\n\t\t\tConfig['theme'],\n\t\t\tConfig['themeMap'],\n\t\t\tConfig['utils']\n\t\t>[Property]\n\t: never\n)\n\n/** Returns a type that expects a value to be a kind of theme scale value. */\nexport type ScaleValue<Scale, Config = null> = (\n\tConfig extends null\n\t\t? CSSUtil.WithScaleValue<Scale>\n\t: Config extends { [K: string]: any }\n\t\t? Scale extends keyof Config['theme']\n\t\t\t? `$${string & keyof Config['theme'][Scale]}`\n\t\t: never\n\t: never\n)\n\n/** Returns a type that suggests variants from a component as possible prop values. */\nexport type VariantProps<Component extends {[key: symbol | string]: any}> = StyledComponent.TransformProps<Component[StyledComponent.$$StyledComponentProps], Component[StyledComponent.$$StyledComponentMedia]>\n\n/** Map of CSS properties to token scales. */\nexport declare const defaultThemeMap: DefaultThemeMap\n\n/** Returns a library used to create styles. */\nexport declare const createStitches: CreateStitches\n\n/** Returns an object representing a theme. */\nexport declare const createTheme: Stitches['createTheme']\n\n/** Returns a function that applies globalCss styles. */\nexport declare const globalCss: Stitches['globalCss']\n\n/** Returns an object that applies `@keyframes` styles. */\nexport declare const keyframes: Stitches['keyframes']\n\n/** Returns a function that applies styles and variants for a specific class. */\nexport declare const css: Stitches['css']\n\n/** Returns a function that applies styles and variants for a specific class. */\nexport declare const styled: Stitches['styled']\n"
  },
  {
    "path": "packages/react/types/stitches.d.ts",
    "content": "import type * as CSSUtil from './css-util.js'\nimport type * as StyledComponent from './styled-component.js'\nimport type * as ThemeUtil from './theme.js'\nimport type * as Util from './util'\n\n/** Remove an index signature from a type */\nexport type RemoveIndex<T> = {[k in keyof T as string extends k ? never : number extends k ? never : k]: T[k]}\n\nexport interface CssFunctionType<Media extends {} = {}, Theme extends {} = {}, ThemeMap extends {} = {}, Utils extends {} = {}> {\n\t<Composers extends (string | Util.Function | {\n\t\t[name: string]: unknown\n\t})[], CSS = CSSUtil.CSS<Media, Theme, ThemeMap, Utils>>(...composers: {\n\t\t[K in keyof Composers]: (\n\t\t\t// Strings and Functions can be skipped over\n\t\t\tstring extends Composers[K] ? Composers[K] : Composers[K] extends string | Util.Function ? Composers[K] : RemoveIndex<CSS> & {\n\t\t\t\t/** The **variants** property lets you set a subclass of styles based on a key-value pair.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants)\n\t\t\t\t */\n\t\t\t\tvariants?: {\n\t\t\t\t\t[Name in string]: {\n\t\t\t\t\t\t[Pair in number | string]: CSS\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t/** The **compoundVariants** property lets you to set a subclass of styles based on a combination of active variants.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants#compound-variants)\n\t\t\t\t */\n\t\t\t\tcompoundVariants?: (('variants' extends keyof Composers[K] ? {\n\t\t\t\t\t[Name in keyof Composers[K]['variants']]?: Util.Widen<keyof Composers[K]['variants'][Name]> | Util.String\n\t\t\t\t} : Util.WideObject) & {\n\t\t\t\t\tcss: CSS\n\t\t\t\t})[]\n\t\t\t\t/** The **defaultVariants** property allows you to predefine the active key-value pairs of variants.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants#default-variants)\n\t\t\t\t */\n\t\t\t\tdefaultVariants?: ('variants' extends keyof Composers[K] ? {\n\t\t\t\t\t[Name in keyof Composers[K]['variants']]?: Util.Widen<keyof Composers[K]['variants'][Name]> | Util.String\n\t\t\t\t} : Util.WideObject)\n\t\t\t} & CSS & {\n\t\t\t\t[K2 in keyof Composers[K]]: K2 extends 'compoundVariants' | 'defaultVariants' | 'variants' ? unknown : K2 extends keyof CSS ? CSS[K2] : unknown\n\t\t\t})\n\t}): StyledComponent.CssComponent<StyledComponent.StyledComponentType<Composers>, StyledComponent.StyledComponentProps<Composers>, Media, CSS>\n}\n\nexport interface StyledFunctionType<Media extends {} = {}, Theme extends {} = {}, ThemeMap extends {} = {}, Utils extends {} = {}> {\n\t<Type extends keyof JSX.IntrinsicElements | React.ComponentType<any> | Util.Function, Composers extends (string | React.ComponentType<any> | Util.Function | {\n\t\t[name: string]: unknown\n\t})[], CSS = CSSUtil.CSS<Media, Theme, ThemeMap, Utils>>(type: Type, ...composers: {\n\t\t[K in keyof Composers]: (\n\t\t\t// Strings, React Components, and Functions can be skipped over\n\t\t\tstring extends Composers[K] ? Composers[K] : Composers[K] extends string | React.ComponentType<any> | Util.Function ? Composers[K] : RemoveIndex<CSS> & {\n\t\t\t\t/** The **variants** property lets you set a subclass of styles based on a key-value pair.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants)\n\t\t\t\t */\n\t\t\t\tvariants?: {\n\t\t\t\t\t[Name in string]: {\n\t\t\t\t\t\t[Pair in number | string]: CSS\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t/** The **compoundVariants** property lets you to set a subclass of styles based on a combination of active variants.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants#compound-variants)\n\t\t\t\t */\n\t\t\t\tcompoundVariants?: (('variants' extends keyof Composers[K] ? {\n\t\t\t\t\t[Name in keyof Composers[K]['variants']]?: Util.Widen<keyof Composers[K]['variants'][Name]> | Util.String\n\t\t\t\t} : Util.WideObject) & {\n\t\t\t\t\tcss: CSS\n\t\t\t\t})[]\n\t\t\t\t/** The **defaultVariants** property allows you to predefine the active key-value pairs of variants.\n\t\t\t\t *\n\t\t\t\t * [Read Documentation](https://stitches.dev/docs/variants#default-variants)\n\t\t\t\t */\n\t\t\t\tdefaultVariants?: ('variants' extends keyof Composers[K] ? {\n\t\t\t\t\t[Name in keyof Composers[K]['variants']]?: Util.Widen<keyof Composers[K]['variants'][Name]> | Util.String\n\t\t\t\t} : Util.WideObject)\n\t\t\t} & CSS & {\n\t\t\t\t[K2 in keyof Composers[K]]: K2 extends 'compoundVariants' | 'defaultVariants' | 'variants' ? unknown : K2 extends keyof CSS ? CSS[K2] : unknown\n\t\t\t})\n\t}): StyledComponent.StyledComponent<Type, StyledComponent.StyledComponentProps<Composers>, Media, CSSUtil.CSS<Media, Theme, ThemeMap, Utils>>\n}\n\n/** Stitches interface. */\nexport default interface Stitches<\n\tPrefix extends string = '',\n\tMedia extends {} = {},\n\tTheme extends {} = {},\n\tThemeMap extends {} = {},\n\tUtils extends {} = {}\n> {\n\tconfig: {\n\t\tprefix: Prefix\n\t\tmedia: Media\n\t\ttheme: Theme\n\t\tthemeMap: ThemeMap\n\t\tutils: Utils\n\t},\n\tprefix: Prefix\n\t/** The **prefix** property defined.\n\t *\n\t * [Read Documentation](https://stitches.dev/docs/variants)\n\t */\n\tglobalCss: {\n\t\t<Styles extends { [K: string]: any }>(\n\t\t\t...styles: (\n\t\t\t\t{\n\t\t\t\t\t/** The **@import** CSS at-rule imports style rules from other style sheets. */\n\t\t\t\t\t'@import'?: unknown\n\n\t\t\t\t\t/** The **@font-face** CSS at-rule specifies a custom font with which to display text. */\n\t\t\t\t\t'@font-face'?: unknown\n\t\t\t\t}\n\t\t\t\t& {\n\t\t\t\t\t[K in keyof Styles]: (\n\t\t\t\t\t\tK extends '@import'\n\t\t\t\t\t\t\t? string | string[]\n\t\t\t\t\t\t: K extends '@font-face'\n\t\t\t\t\t\t\t? CSSUtil.Native.AtRule.FontFace | Array<CSSUtil.Native.AtRule.FontFace>\n\t\t\t\t\t\t: K extends `@keyframes ${string}`\n\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t[KeyFrame in string]: CSSUtil.CSS<Media, Theme, ThemeMap, Utils>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t: K extends `@property ${string}`\n\t\t\t\t\t\t\t? CSSUtil.Native.AtRule.Property\n\t\t\t\t\t\t: CSSUtil.CSS<Media, Theme, ThemeMap, Utils>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t)[]\n\t\t): {\n\t\t\t(): string\n\t\t}\n\t},\n\tkeyframes: {\n\t\t(style: {\n\t\t\t[offset: string]: CSSUtil.CSS<Media, Theme, ThemeMap, Utils>\n\t\t}): {\n\t\t\t(): string\n\t\t\tname: string\n\t\t}\n\t},\n\tcreateTheme: {\n\t\t<\n\t\t\tArgument0 extends (\n\t\t\t\t| string\n\t\t\t\t| (\n\t\t\t\t\t{\n\t\t\t\t\t\t[Scale in keyof Theme]?: {\n\t\t\t\t\t\t\t[Token in keyof Theme[Scale]]?: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t} & {\n\t\t\t\t\t\t[scale in string]: {\n\t\t\t\t\t\t\t[token in number | string]: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t)\n\t\t\t),\n\t\t\tArgument1 extends (\n\t\t\t\t| string\n\t\t\t\t| (\n\t\t\t\t\t{\n\t\t\t\t\t\t[Scale in keyof Theme]?: {\n\t\t\t\t\t\t\t[Token in keyof Theme[Scale]]?: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t} & {\n\t\t\t\t\t\t[scale in string]: {\n\t\t\t\t\t\t\t[token in number | string]: boolean | number | string\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t)\n\t\t\t)\n\t\t>(\n\t\t\tnameOrScalesArg0: Argument0,\n\t\t\tnameOrScalesArg1?: Argument1\n\t\t):\n\t\t\t& string\n\t\t\t& {\n\t\t\t\tclassName: string\n\t\t\t\tselector: string\n\t\t\t}\n\t\t\t& (\n\t\t\t\tArgument0 extends string\n\t\t\t\t\t? ThemeTokens<Argument1, Prefix>\n\t\t\t\t\t: ThemeTokens<Argument0, Prefix>\n\t\t\t)\n\t}\n\ttheme:\n\t\tstring\n\t\t& {\n\t\t\tclassName: string\n\t\t\tselector: string\n\t\t}\n\t\t& {\n\t\t\t[Scale in keyof Theme]: {\n\t\t\t\t[Token in keyof Theme[Scale]]: ThemeUtil.Token<\n\t\t\t\t\tExtract<Token, string | number>,\n\t\t\t\t\tstring,\n\t\t\t\t\tExtract<Scale, string | void>,\n\t\t\t\t\tExtract<Prefix, string | void>\n\t\t\t\t>\n\t\t\t}\n\t\t}\n\treset: {\n\t\t(): void\n\t}\n\tgetCssText: {\n\t\t(): string\n\t}\n  css: {\n    withConfig: (config: {\n      componentId?: string\n      displayName?: string\n      shouldForwardStitchesProp?: (prop: 'css' | (string & {})) => boolean | void\n    }) => CssFunctionType<Media, Theme, ThemeMap, Utils>\n  } & CssFunctionType<Media, Theme, ThemeMap, Utils>\n\tstyled: {\n\t\twithConfig: (config: {\n\t\t\tcomponentId?: string\n\t\t\tdisplayName?: string\n\t\t\tshouldForwardStitchesProp?: (prop: 'css' | (string & {})) => boolean | void\n\t\t}) => StyledFunctionType<Media, Theme, ThemeMap, Utils>\n\t} & StyledFunctionType<Media, Theme, ThemeMap, Utils>\n}\n\ntype ThemeTokens<Values, Prefix> = {\n\t[Scale in keyof Values]: {\n\t\t[Token in keyof Values[Scale]]: ThemeUtil.Token<\n\t\t\tExtract<Token, number | string>,\n\t\t\tValues[Scale][Token] & (string | number),\n\t\t\tExtract<Scale, string | void>,\n\t\t\tExtract<Prefix, string | void>\n\t\t>\n\t}\n}\n"
  },
  {
    "path": "packages/react/types/styled-component.d.ts",
    "content": "import type * as React from 'react'\nimport type * as Util from './util.js'\n\n\nexport type IntrinsicElementsKeys = keyof JSX.IntrinsicElements;\n\n/** Returns a new Styled Component. */\nexport interface StyledComponent<\n\tType = 'span',\n\tProps = {},\n\tMedia = {},\n\tCSS = {}\n> extends React.ForwardRefExoticComponent<\n\tUtil.Assign<\n\t\tType extends IntrinsicElementsKeys | React.ComponentType<any>\n\t\t\t? React.ComponentPropsWithRef<Type>\n\t\t: never,\n\t\tTransformProps<Props, Media> & { css?: CSS }\n\t>\n> {\n\t(\n\t\tprops: Util.Assign<\n\t\t\tType extends IntrinsicElementsKeys | React.ComponentType<any>\n\t\t\t\t? React.ComponentPropsWithRef<Type>\n\t\t\t: {},\n\t\t\tTransformProps<Props, Media> & {\n\t\t\t\tas?: never,\n\t\t\t\tcss?: CSS\n\t\t\t}\n\t\t>\n\t): React.ReactElement | null\n\n\t<\n\t\tC extends CSS,\n\t\tAs extends string | React.ComponentType<any> = Type extends string | React.ComponentType<any> ? Type : any,\n\t\tInnerProps = Type extends StyledComponent<any, infer IP, any, any> ? IP : {},\n\t>(\n\t\tprops: Util.Assign<\n\t\t\tReact.ComponentPropsWithRef<As extends IntrinsicElementsKeys | React.ComponentType<any> ? As : never>,\n\t\t\tTransformProps<Util.Assign<InnerProps, Props>, Media> & {\n\t\t\t\tas?: As,\n\t\t\t\tcss?: {\n\t\t\t\t\t[K in keyof C]: K extends keyof CSS ? CSS[K] : never\n\t\t\t\t}\n\t\t\t}\n\t\t>\n\t): React.ReactElement | null\n\n\tclassName: string\n\tselector: string\n\n\t[$$StyledComponentType]: Type\n\t[$$StyledComponentProps]: Props\n\t[$$StyledComponentMedia]: Media\n}\n\n/** Returns a new CSS Component. */\nexport interface CssComponent<\n\tType = 'span',\n\tProps = {},\n\tMedia = {},\n\tCSS = {}\n> {\n\t(\n\t\tprops?:\n\t\t\t& TransformProps<Props, Media>\n\t\t\t& {\n\t\t\t\tcss?: CSS\n\t\t\t}\n\t\t\t& {\n\t\t\t\t[name in number | string]: any\n\t\t\t}\n\t): string & {\n\t\tclassName: string\n\t\tselector: string\n\t\tprops: {}\n\t}\n\n\tclassName: string\n\tselector: string\n\n\t[$$StyledComponentType]: Type\n\t[$$StyledComponentProps]: Props\n\t[$$StyledComponentMedia]: Media\n}\n\nexport type TransformProps<Props, Media> = {\n\t[K in keyof Props]: (\n\t\t| Props[K]\n\t\t| (\n\t\t\t& {\n\t\t\t\t[KMedia in Util.Prefixed<'@', 'initial' | keyof Media>]?: Props[K]\n\t\t\t}\n\t\t\t& {\n\t\t\t\t[KMedia in string]: Props[K]\n\t\t\t}\n\t\t)\n\t)\n}\n\n/** Unique symbol used to reference the type of a Styled Component. */\nexport declare const $$StyledComponentType: unique symbol\n\n/** Unique symbol used to reference the type of a Styled Component. */\nexport type $$StyledComponentType = typeof $$StyledComponentType\n\n/** Unique symbol used to reference the props of a Styled Component. */\nexport declare const $$StyledComponentProps: unique symbol\n\n/** Unique symbol used to reference the props of a Styled Component. */\nexport type $$StyledComponentProps = typeof $$StyledComponentProps\n\n/** Unique symbol used to reference the media passed into a Styled Component. */\nexport declare const $$StyledComponentMedia: unique symbol\n\n/** Unique symbol used to reference the media passed into a Styled Component. */\nexport type $$StyledComponentMedia = typeof $$StyledComponentMedia\n\n/** Returns a narrowed JSX element from the given tag name. */\ntype IntrinsicElement<TagName> = TagName extends IntrinsicElementsKeys ? TagName : never\n\n/** Returns a ForwardRef component. */\ntype ForwardRefExoticComponent<Type, Props> = React.ForwardRefExoticComponent<\n\tUtil.Assign<\n\t\tType extends React.ElementType\n\t\t\t? React.ComponentPropsWithRef<Type>\n\t\t: never,\n\t\tProps & { as?: Type }\n\t>\n>\n\n/** Returns the first Styled Component type from the given array of compositions. */\nexport type StyledComponentType<T extends any[]> = (\n\tT[0] extends never\n\t\t? 'span'\n\t: T[0] extends string\n\t\t? T[0]\n\t: T[0] extends (props: any) => any\n\t\t? T[0]\n\t: T[0] extends { [$$StyledComponentType]: unknown }\n\t\t? T[0][$$StyledComponentType]\n\t: T extends [lead: any, ...tail: infer V]\n\t\t? StyledComponentType<V>\n\t: never\n)\n\n/** Returns the cumulative variants from the given array of compositions. */\nexport type StyledComponentProps<T extends any[]> = (\n\t& (\n\t\t$$StyledComponentProps extends keyof T[0]\n\t\t\t? T[0][$$StyledComponentProps]\n\t\t: T[0] extends { variants: { [name: string]: unknown } }\n\t\t\t? {\n\t\t\t\t[K in keyof T[0]['variants']]?: Util.Widen<keyof T[0]['variants'][K]>\n\t\t\t}\n\t\t: {}\n\t)\n\t& (\n\t\tT extends [lead: any, ...tail: infer V]\n\t\t\t? StyledComponentProps<V>\n\t\t: {}\n\t)\n)\n"
  },
  {
    "path": "packages/react/types/theme.d.ts",
    "content": "export interface ScaleValue {\n\ttoken: number | string\n\tvalue: number | string\n\tscale: string\n\tprefix: string\n}\n\nexport interface Token<\n\t/** Token name. */\n\tNameType extends number | string = string,\n\n\t/** Token value. */\n\tValueType extends number | string = string,\n\n\t/** Token scale. */\n\tScaleType extends string | void = void,\n\n\t/** Token prefix. */\n\tPrefixType extends string | void = void,\n> extends ScaleValue {\n\tnew (name: NameType, value: ValueType, scale?: ScaleType, prefix?: PrefixType): this\n\n\t/** Name of the token. */\n\ttoken: NameType\n\n\t/** Value of the token. */\n\tvalue: ValueType\n\n\t/** Category of interface the token applies to. */\n\tscale: ScaleType extends string ? ScaleType : ''\n\n\t/** Prefix added before the serialized custom property. */\n\tprefix: PrefixType extends string ? PrefixType : ''\n\n\t/** Serialized custom property representing the token. */\n\tvariable: `--${this['prefix'] extends '' ? '' : `${this['prefix']}-`}${this['scale'] extends '' ? '' : `${this['scale']}-`}${this['token']}`\n\n\t/** Serialized CSS var() representing the token. */\n\tcomputedValue: `var(${this['variable']})`\n\n\t/** Returns a serialized CSS var() representing the token. */\n\ttoString(): this['computedValue']\n}\n"
  },
  {
    "path": "packages/react/types/util.d.ts",
    "content": "/* Utilities */\n/* ========================================================================== */\n\n/** Returns a string with the given prefix followed by the given values. */\nexport type Prefixed<K extends string, T> = `${K}${Extract<T, boolean | number | string>}`\n\n/** Returns an object from the given object assigned with the values of another given object. */\nexport type Assign<T1 = {}, T2 = {}> = T1 extends any ? Omit<T1, keyof T2> & T2 : never\n\n/** Returns a widened value from the given value. */\nexport type Widen<T> =\n\tT extends number\n\t\t? `${T}` | T\n\t: T extends 'true'\n\t\t? boolean | T\n\t: T extends 'false'\n\t\t? boolean | T\n\t: T extends `${number}`\n\t\t? number | T\n\t: T\n\n/** Narrowed string. */\nexport type String = string & Record<never, never>\n\n/** Narrowed number or string. */\nexport type Index = (number | string) & Record<never, never>\n\n/** Narrowed function. */\nexport type Function = (...args: any[]) => unknown\n\n/** Widened object. */\nexport type WideObject = { [name in number | string]: boolean | number | string | undefined | WideObject }\n"
  },
  {
    "path": "packages/stringify/README.md",
    "content": "<h1>stringify <img src=\"https://jonneal.dev/css-logo.svg\" alt=\"\" width=\"90\" height=\"90\" align=\"right\" /></h1>\n\n**stringify** converts a JavaScript object to a CSS string, optionally replacing values if a [replacer](#replacer) function is specified.\n\n```js\nimport { stringify } from '@stitches/stringify'\n\nstringify({\n  body: {\n    backgroundColor: 'white',\n    color: 'black',\n\n    '& > nav > ul': {\n      '@media (min-width: 640px)': {\n        margin: 0,\n      }\n    }\n  }\n})\n```\n\n```css\nbody {\n  background-color: white;\n  color: black;\n}\n\n@media (min-width: 640px) {\n  body > nav > ul {\n    margin: 0;\n  }\n}\n```\n\nThe actual output will not be formatted as it appears here.\n\n## Usage\n\nFrom NPM, add **stringify** to your project:\n\n```bash\nnpm install @stitches/stringify\n```\n\nUse **stringify** to serialize your CSS:\n\n```js\nimport { stringify } from '@stitches/stringify'\n\nstringify({\n  body: {\n    margin: 0\n  }\n})\n```\n\n## Replacer\n\nThe **replacer** is an optional function that alters the behavior of the stringification process, allowing you to replace entire fragments of CSS.\n\nThe **replacer** function takes two parameters, the **property** and **value** of a declaration, and returns a JavaScript object representing a fragment of CSS to replace it.\n\n```js\nconst replacer = (property, value) => (\n  // add a prefix to \"tab-size\" for Firefox\n  property === 'tab-size'\n    ? {\n      ['-moz-' + property]: value,\n      [property]: value,\n    }\n  // add common prefixes for Safari 14\n  : /^(appearance|backface-visibility|background-clip|clip-path|hyphens|mask-image|user-select)$/.test(property)\n    ? {\n      ['-webkit-' + property]: value,\n      [property]: value,\n    }\n  : null\n)\n```\n\n```js\nstringify({\n  button: {\n    appearance: 'none'\n  },\n  textarea: {\n    tabSize: 2\n  }\n})\n```\n\n```css\nbutton {\n  -webkit-appearance: none;\n  appearance: none;\n}\n\ntextarea {\n  -moz-tab-size: 2;\n  tab-size: 2;\n}\n```\n\nThe **replacer** function prevents recursion by ignoring replacement of the same property-value pairs in a replaced fragment.\n\n## Examples\n\n### Stringify the `content` property\n\n```js\nstringify({\n  q: {\n    '&::before': {\n      content: '«'\n    },\n    '&::after': {\n      content: '»'\n    }\n  }\n})\n```\n\n```css\nq::before {\n  content: '«';\n}\n\nq::after {\n  content: '»';\n}\n```\n\n### Stringify `@import` rules\n\nArrays can be used to create multiple declarations or unnested rules with the same name.\n\n```js\nstringify({\n  '@import': [\n    '\"https://unpkg.com/sanitize.css\"',\n    '\"https://unpkg.com/sanitize.css/typography.css\"'\n  ]\n})\n```\n\n```css\n@import 'https://unpkg.com/sanitize.css';\n@import 'https://unpkg.com/sanitize.css/typography.css';\n```\n\n### Stringify a fallback property\n\n```js\nstringify({\n  body: {\n    background: [\n      'white',\n      'var(--page-bg, white)'\n    ]\n  }\n})\n```\n\n```css\nbody {\n  background: white;\n  background: var(--red-color, white);\n}\n```\n"
  },
  {
    "path": "packages/stringify/package.json",
    "content": "{\n  \"name\": \"@stitches/stringify\",\n  \"version\": \"1.3.1-1\",\n  \"description\": \"Converts an object into CSS\",\n  \"type\": \"module\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.mjs\",\n  \"typings\": \"types/index.d.ts\",\n  \"jsdelivr\": \"dist/index.global.js\",\n  \"unpkg\": \"dist/index.global.js\",\n  \"exports\": {\n    \".\": {\n      \"require\": \"./dist/index.cjs\",\n      \"import\": \"./dist/index.mjs\",\n      \"types\": \"./types/index.d.ts\"\n    },\n    \"./global\": \"./dist/index.global.js\"\n  },\n  \"files\": [\n    \"dist/*.cjs\",\n    \"dist/*.js\",\n    \"dist/*.map\",\n    \"dist/*.mjs\",\n    \"types/*.d.ts\"\n  ],\n  \"sideEffects\": false,\n  \"license\": \"MIT\",\n  \"repository\": \"stitchesjs/stitches\",\n  \"homepage\": \"https://github.com/stitchesjs/stitches#readme\",\n  \"bugs\": \"https://github.com/stitchesjs/stitches/issues\",\n  \"contributors\": [\n    \"Jonathan Neal\",\n    \"Pedro Duarte\",\n    \"Abdulhadi Alhallak <abdul@workos.com>\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"css-in-js\"\n  ]\n}\n"
  },
  {
    "path": "packages/stringify/src/Array.js",
    "content": "export const { isArray } = Array\nexport const { from } = Array\n"
  },
  {
    "path": "packages/stringify/src/getResolvedSelectors.js",
    "content": "/** Returns selectors resolved from parent selectors and nested selectors. */\nexport const getResolvedSelectors = (\n\t/** @type {string[]} Parent selectors (e.g. `[\"a\", \"button\"]`). */\n\tparentSelectors,\n\t/** @type {string[]} Nested selectors (e.g. `[\"&:hover\", \"&:focus\"]`). */\n\tnestedSelectors,\n) => (\n\tparentSelectors.reduce(\n\t\t(resolvedSelectors, parentSelector) => {\n\t\t\tresolvedSelectors.push(\n\t\t\t\t...nestedSelectors.map(\n\t\t\t\t\t(selector) => (\n\t\t\t\t\t\tselector.includes('&') ? selector.replace(\n\t\t\t\t\t\t\t/&/g,\n\t\t\t\t\t\t\t/[ +>|~]/.test(parentSelector) && /&.*&/.test(selector)\n\t\t\t\t\t\t\t\t? `:is(${parentSelector})`\n\t\t\t\t\t\t\t: parentSelector\n\t\t\t\t\t\t) : parentSelector + ' ' + selector\n\t\t\t\t\t)\n\t\t\t\t)\n\t\t\t)\n\n\t\t\treturn resolvedSelectors\n\t\t},\n\t\t[]\n\t)\n)\n"
  },
  {
    "path": "packages/stringify/src/index.js",
    "content": "import { toKebabCase } from './toCase.js'\nimport { getResolvedSelectors } from './getResolvedSelectors.js'\nimport { isArray } from './Array.js'\n\nconst { prototype: { toString } } = Object\n\n/** Comma matcher outside rounded brackets. */\nconst comma = /\\s*,\\s*(?![^()]*\\))/\n\n/** Returns a string of CSS from an object of CSS. */\nexport const stringify = (\n\t/** Object representing the current CSS. */\n\tvalue,\n\t/** Replacer function. */\n\treplacer = undefined,\n) => {\n\t/** Set used to manage the opened and closed state of rules. */\n\tconst used = new WeakSet()\n\n\tconst parse = (style, selectors, conditions, prevName, prevData) => {\n\t\tlet cssText = ''\n\n\t\teach: for (const name in style) {\n\t\t\tconst isAtRuleLike = name.charCodeAt(0) === 64\n\n\t\t\tfor (const data of isAtRuleLike && isArray(style[name]) ? style[name] : [style[name]]) {\n\t\t\t\tif (replacer && (name !== prevName || data !== prevData)) {\n\t\t\t\t\tconst next = replacer(name, data, style)\n\n\t\t\t\t\tif (next !== null) {\n\t\t\t\t\t\tcssText += typeof next === 'object' && next ? parse(next, selectors, conditions, name, data) : next == null ? '' : next\n\n\t\t\t\t\t\tcontinue each\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tconst isObjectLike = typeof data === 'object' && data && data.toString === toString\n\n\t\t\t\tif (isObjectLike) {\n\t\t\t\t\tif (used.has(selectors)) {\n\t\t\t\t\t\tused.delete(selectors)\n\n\t\t\t\t\t\tcssText += '}'\n\t\t\t\t\t}\n\n\t\t\t\t\tconst usedName = Object(name)\n\n\t\t\t\t\tconst nextSelectors = isAtRuleLike ? selectors : selectors.length ? getResolvedSelectors(selectors, name.split(comma)) : name.split(comma)\n\n\t\t\t\t\tcssText += parse(data, nextSelectors, isAtRuleLike ? conditions.concat(usedName) : conditions)\n\n\t\t\t\t\tif (used.has(usedName)) {\n\t\t\t\t\t\tused.delete(usedName)\n\t\t\t\t\t\tcssText += '}'\n\t\t\t\t\t}\n\n\t\t\t\t\tif (used.has(nextSelectors)) {\n\t\t\t\t\t\tused.delete(nextSelectors)\n\t\t\t\t\t\tcssText += '}'\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tfor (let i = 0; i < conditions.length; ++i) {\n\t\t\t\t\t\tif (!used.has(conditions[i])) {\n\t\t\t\t\t\t\tused.add(conditions[i])\n\n\t\t\t\t\t\t\tcssText += conditions[i] + '{'\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (selectors.length && !used.has(selectors)) {\n\t\t\t\t\t\tused.add(selectors)\n\n\t\t\t\t\t\tcssText += selectors + '{'\n\t\t\t\t\t}\n\n\t\t\t\t\tcssText += (isAtRuleLike ? name + ' ' : toKebabCase(name) + ':') + String(data) + ';'\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn cssText\n\t}\n\n\treturn parse(value, [], [])\n}\n"
  },
  {
    "path": "packages/stringify/src/toCase.js",
    "content": "/** Returns the given value converted to kebab-case. */\nexport const toKebabCase = (/** @type {string} */ value) => (\n\t// ignore kebab-like values\n\tvalue.includes('-')\n\t\t? value\n\t// replace any upper-case letter with a dash and the lower-case variant\n\t: value.replace(/[A-Z]/g, (capital) => '-' + capital.toLowerCase())\n)\n\n/** Returns the given value converted to camel-case. */\nexport const toCamelCase = (/** @type {string} */ value) => (!/[A-Z]/.test(value) ? value.replace(/-[^]/g, (capital) => capital[1].toUpperCase()) : value)\n"
  },
  {
    "path": "packages/stringify/tests/at-rule-font-face.js",
    "content": "import { stringify } from '../src/index.js'\n\ndescribe('at-rule (font-face)', () => {\n\ttest('stringify() generates CSS with multiple `@import` rules', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\t'@font-face': {\n\t\t\t\t\tfontFamily: 'system-ui',\n\t\t\t\t\tfontStyle: 'normal',\n\t\t\t\t\tfontWeight: 400,\n\t\t\t\t\tsrc: [\n\t\t\t\t\t\t`local(\".SFNS-Regular\")`,\n\t\t\t\t\t\t`local(\".SFNSText-Regular\")`,\n\t\t\t\t\t\t`local(\".HelveticaNeueDeskInterface-Regular\")`,\n\t\t\t\t\t\t`local(\".LucidaGrandeUI\")`,\n\t\t\t\t\t\t`local(\"Segoe UI\")`,\n\t\t\t\t\t\t`local(\"Ubuntu\")`,\n\t\t\t\t\t\t`local(\"Roboto-Regular\")`,\n\t\t\t\t\t\t`local(\"DroidSans\")`,\n\t\t\t\t\t\t`local(\"Tahoma\")`,\n\t\t\t\t\t],\n\t\t\t\t},\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'@font-face{' +\n\t\t\t\t'font-family:system-ui;' +\n\t\t\t\t'font-style:normal;' +\n\t\t\t\t'font-weight:400;' +\n\t\t\t\t'src:local(\".SFNS-Regular\"),local(\".SFNSText-Regular\"),local(\".HelveticaNeueDeskInterface-Regular\"),local(\".LucidaGrandeUI\"),local(\"Segoe UI\"),local(\"Ubuntu\"),local(\"Roboto-Regular\"),local(\"DroidSans\"),local(\"Tahoma\");' +\n\t\t\t'}',\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/tests/at-rule-import.js",
    "content": "import { stringify } from '../src/index.js'\n\ndescribe('at-rule (import)', () => {\n\ttest('stringify() generates CSS with multiple `@import` rules', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\t'@import': ['\"https://unpkg.com/sanitize.css\"', '\"https://unpkg.com/sanitize.css/typography.css\"'],\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'@import \"https://unpkg.com/sanitize.css\";' +\n\t\t\t'@import \"https://unpkg.com/sanitize.css/typography.css\";',\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/tests/at-rule-keyframes.js",
    "content": "import { stringify } from '../src/index.js'\n\ndescribe('at-rule (font-face)', () => {\n\ttest('stringify() generates CSS with multiple `@import` rules', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\t'@keyframes': {\n\t\t\t\t\t'0%': {\n\t\t\t\t\t\topacity: '0',\n\t\t\t\t\t},\n\t\t\t\t\t'1%': {\n\t\t\t\t\t\topacity: '1',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'@keyframes{' +\n\t\t\t\t'0%{' +\n\t\t\t\t\t'opacity:0;' +\n\t\t\t\t'}' +\n\t\t\t\t'1%{' +\n\t\t\t\t\t'opacity:1;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/tests/index.js",
    "content": "import { stringify } from '../src/index.js'\n\ndescribe('stringify()', () => {\n\ttest('stringify() generates CSS with the replacer function for an at-rule', () => {\n\t\tconst replaceColor = ({ foreground: color, background: backgroundColor }) => ({ color, backgroundColor })\n\t\tconst replacer = (property, value) => (property === '@color' ? replaceColor(value) : null)\n\n\t\texpect(\n\t\t\tstringify(\n\t\t\t\t{\n\t\t\t\t\ta: {\n\t\t\t\t\t\t'@color': {\n\t\t\t\t\t\t\tforeground: 'white',\n\t\t\t\t\t\t\tbackground: 'black',\n\t\t\t\t\t\t},\n\t\t\t\t\t\t'margin': 0,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\treplacer,\n\t\t\t),\n\t\t).toEqual(\n\t\t\t'a{' +\n\t\t\t\t'color:white;' +\n\t\t\t\t'background-color:black;' +\n\t\t\t\t'margin:0;' +\n\t\t\t'}',\n\t\t)\n\t})\n\n\ttest('stringify() generates CSS with the replacer function for a nested rule', () => {\n\t\tconst replacer = (property, value) => (property === '@within' ? { '& *': value } : null)\n\n\t\texpect(\n\t\t\tstringify(\n\t\t\t\t{\n\t\t\t\t\ta: {\n\t\t\t\t\t\t'color': 'white',\n\t\t\t\t\t\t'@within': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t\t'backgroundColor': 'black',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\treplacer,\n\t\t\t),\n\t\t).toEqual(\n\t\t\t'a{' +\n\t\t\t\t'color:white;' +\n\t\t\t'}' +\n\t\t\t'a *{' +\n\t\t\t\t'margin:0;' +\n\t\t\t'}' +\n\t\t\t'a{' +\n\t\t\t\t'background-color:black;' +\n\t\t\t'}',\n\t\t)\n\t})\n\n\ttest('stringify() generates CSS with the replacer function for a @custom-media at-rule', () => {\n\t\tconst replacements = Object.create(null)\n\t\tconst replacer = (property, value) => {\n\t\t\tif (property.startsWith('@custom-media ')) {\n\t\t\t\treplacements[property.slice(14)] = value\n\t\t\t} else if (property.startsWith('@media ') && property.includes('--')) {\n\t\t\t\treturn {\n\t\t\t\t\t[property.replace(/\\((--[\\w-]+)\\)/g, ($0, $1) => replacements[$1] || $1)]: value,\n\t\t\t\t}\n\t\t\t} else return null\n\t\t}\n\n\t\texpect(\n\t\t\tstringify(\n\t\t\t\t{\n\t\t\t\t\t'@custom-media --foo': '(min-width: 640px)',\n\t\t\t\t\t'a': {\n\t\t\t\t\t\t'@media (--foo)': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\treplacer,\n\t\t\t),\n\t\t).toEqual(\n\t\t\t'@media (min-width: 640px){' +\n\t\t\t\t'a{' +\n\t\t\t\t\t'margin:0;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n\n\ttest('stringify() generates CSS with the replacer function for a @when at-rule', () => {\n\t\tconst replacer = (property, value) => {\n\t\t\tif (property.startsWith('@when ')) {\n\t\t\t\treturn {\n\t\t\t\t\t['@media' + property.slice(5)]: value,\n\t\t\t\t}\n\t\t\t} else return null\n\t\t}\n\n\t\texpect(\n\t\t\tstringify(\n\t\t\t\t{\n\t\t\t\t\ta: {\n\t\t\t\t\t\t'@when (min-width: 640px)': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\treplacer,\n\t\t\t),\n\t\t).toEqual(\n\t\t\t'@media (min-width: 640px){' +\n\t\t\t\t'a{' +\n\t\t\t\t\t'margin:0;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/tests/internal-toCase.js",
    "content": "import { toCamelCase, toKebabCase } from '../src/toCase.js'\n\ndescribe('toCase', () => {\n\ttest('toCamelCase', () => {\n\t\texpect(toCamelCase('asdf')).toBe('asdf')\n\t\texpect(toCamelCase('asdf-qwerty')).toBe('asdfQwerty')\n\t\texpect(toCamelCase('asdfQwerty')).toBe('asdfQwerty')\n\t\texpect(toCamelCase('-asdfqwerty')).toBe('Asdfqwerty')\n\t\texpect(toCamelCase('asdfqwerty-')).toBe('asdfqwerty-')\n\t\texpect(toCamelCase('-asdfQwerty')).toBe('-asdfQwerty')\n\t\texpect(toCamelCase('asdfQwerty-')).toBe('asdfQwerty-')\n\t})\n\n\ttest('toKebabCase', () => {\n\t\texpect(toKebabCase('asdf')).toBe('asdf')\n\t\texpect(toKebabCase('asdf-qwerty')).toBe('asdf-qwerty')\n\t\texpect(toKebabCase('asdfQwerty')).toBe('asdf-qwerty')\n\t\texpect(toKebabCase('-asdfqwerty')).toBe('-asdfqwerty')\n\t\texpect(toCamelCase('asdfqwerty-')).toBe('asdfqwerty-')\n\t\texpect(toKebabCase('-asdfQwerty')).toBe('-asdfQwerty')\n\t\texpect(toKebabCase('asdfQwerty-')).toBe('asdfQwerty-')\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/tests/nesting-rules.js",
    "content": "import { stringify } from '../src/index.js'\n\ndescribe('nesting rules', () => {\n\ttest('stringify() generates a string of nested CSS', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\tbody: {\n\t\t\t\t\tbackgroundColor: 'white',\n\t\t\t\t\tcolor: 'black',\n\n\t\t\t\t\t'& > nav > ul': {\n\t\t\t\t\t\t'@media (min-width: 640px)': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'body{' +\n\t\t\t\t'background-color:white;' +\n\t\t\t\t'color:black;' +\n\t\t\t'}' +\n\n\t\t\t'@media (min-width: 640px){' +\n\t\t\t\t'body > nav > ul{' +\n\t\t\t\t\t'margin:0;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n\n\ttest('stringify() generates string of reverse-nested CSS', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\t'nav > ul': {\n\t\t\t\t\t'body > &': {\n\t\t\t\t\t\t'@media (min-width: 640px)': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'@media (min-width: 640px){' +\n\t\t\t\t'body > nav > ul{' +\n\t\t\t\t\t'margin:0;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n\n\ttest('stringify() generates a string of implicitly nested CSS', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\tbody: {\n\t\t\t\t\t'backgroundColor': 'white',\n\t\t\t\t\t'color': 'black',\n\n\t\t\t\t\t'nav > ul': {\n\t\t\t\t\t\t'@media (min-width: 640px)': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'body{' +\n\t\t\t\t'background-color:white;' +\n\t\t\t\t'color:black;' +\n\t\t\t'}' +\n\n\t\t\t'@media (min-width: 640px){' +\n\t\t\t\t'body nav > ul{' +\n\t\t\t\t\t'margin:0;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n\n\ttest('stringify() generates a string of pseudo-expectedly implicitly nested CSS', () => {\n\t\texpect(\n\t\t\tstringify({\n\t\t\t\tbody: {\n\t\t\t\t\tbackgroundColor: 'white',\n\t\t\t\t\tcolor: 'black',\n\n\t\t\t\t\tfont: {\n\t\t\t\t\t\t'@media (min-width: 640px)': {\n\t\t\t\t\t\t\tmargin: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t\t).toEqual(\n\t\t\t'body{' +\n\t\t\t\t'background-color:white;' +\n\t\t\t\t'color:black;' +\n\t\t\t'}' +\n\n\t\t\t'@media (min-width: 640px){' +\n\t\t\t\t'body font{' +\n\t\t\t\t\t'margin:0;' +\n\t\t\t\t'}' +\n\t\t\t'}',\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/tests/replacer-prefixing.js",
    "content": "import { stringify } from '../src/index.js'\n\ndescribe('replacer (prefixing)', () => {\n\ttest('stringify() generates CSS with the replacer function', () => {\n\t\tconst replacer = (property, value) =>\n\t\t\t// add a prefix to \"tab-size\" for Firefox\n\t\t\tproperty === 'tabSize'\n\t\t\t\t? { MozTabSize: value, [property]: value }\n\t\t\t\t: // add common prefixes for Safari 14\n\t\t\t\t/^(appearance|backface-visibility|background-clip|clip-path|hyphens|mask-image|user-select)$/.test(property)\n\t\t\t\t? { ['-webkit-' + property]: value, [property]: value }\n\t\t\t\t: null\n\n\t\texpect(\n\t\t\tstringify(\n\t\t\t\t{\n\t\t\t\t\tbutton: {\n\t\t\t\t\t\tappearance: 'none',\n\t\t\t\t\t\tcolor: 'black',\n\t\t\t\t\t},\n\t\t\t\t\ttextarea: {\n\t\t\t\t\t\ttabSize: 2,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\treplacer,\n\t\t\t),\n\t\t).toEqual(\n\t\t\t'button{' +\n\t\t\t\t'-webkit-appearance:none;' +\n\t\t\t\t'appearance:none;' +\n\t\t\t\t'color:black;' +\n\t\t\t'}' +\n\t\t\t'textarea{' +\n\t\t\t\t'-moz-tab-size:2;' +\n\t\t\t\t'tab-size:2;' +\n\t\t\t'}',\n\t\t)\n\t})\n})\n"
  },
  {
    "path": "packages/stringify/types/index.d.ts",
    "content": "export function stringify(value: any, replacer?: (name: string, data: any, style: any) => any): string\n"
  },
  {
    "path": "packages/test/.eslintrc",
    "content": "{\n  \"extends\": [\n    \"eslint:recommended\",\n    \"plugin:react/recommended\",\n    \"plugin:@typescript-eslint/recommended\",\n    \"prettier/@typescript-eslint\",\n    \"plugin:prettier/recommended\"\n  ],\n  \"plugins\": [\"react\", \"@typescript-eslint\", \"prettier\"],\n  \"env\": {\n    \"browser\": true,\n    \"jasmine\": true,\n    \"jest\": true\n  },\n  \"rules\": {\n    \"prettier/prettier\": [\"error\", { \"singleQuote\": true }]\n  },\n  \"settings\": {\n    \"react\": {\n      \"pragma\": \"React\",\n      \"version\": \"detect\"\n    }\n  },\n  \"parser\": \"@typescript-eslint/parser\"\n}\n"
  },
  {
    "path": "packages/test/Issue-803-core.ts",
    "content": "import { globalCss } from '@stitches/core'\n\nvoid globalCss({\n\t\"@font-face\": {\n\t\tfontFamily: \"Roboto\",\n\t\tfontStyle: \"normal\",\n\t\tfontWeight: \"100\",\n\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\"\n\t},\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@font-face\": [\n\t\t{\n\t\t\tfontFamily: \"Roboto\",\n\t\t\tfontStyle: \"normal\",\n\t\t\tfontWeight: \"100\",\n\t\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\",\n\t\t},\n\t],\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@font-face\": {\n\t\tfontFamily: \"Roboto\",\n\t\tfontStyle: \"normal\",\n\t\tfontWeight: \"100\",\n\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\",\n\t},\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n}, {\n\t\"@font-face\": [\n\t\t{\n\t\t\tfontFamily: \"Roboto\",\n\t\t\tfontStyle: \"normal\",\n\t\t\tfontWeight: \"100\",\n\t\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\",\n\t\t},\n\t\t{\n\t\t\tfontFamily: \"Roboto\",\n\t\t\tfontStyle: \"normal\",\n\t\t\tfontWeight: \"400\",\n\t\t\tsrc: \"url('/Roboto-Regular.ttf') format('truetype')\",\n\t\t},\n\t],\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@import\": \"some.css\",\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@import\": \"some.css\",\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n}, {\n\t\"@import\": [\n\t\t\"some.css\",\n\t\t\"someother.css\",\n\t],\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n"
  },
  {
    "path": "packages/test/Issue-803-react.ts",
    "content": "import { globalCss } from '@stitches/react'\n\nvoid globalCss({\n\t\"@font-face\": {\n\t\tfontFamily: \"Roboto\",\n\t\tfontStyle: \"normal\",\n\t\tfontWeight: \"100\",\n\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\"\n\t},\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@font-face\": [\n\t\t{\n\t\t\tfontFamily: \"Roboto\",\n\t\t\tfontStyle: \"normal\",\n\t\t\tfontWeight: \"100\",\n\t\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\",\n\t\t},\n\t],\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@font-face\": {\n\t\tfontFamily: \"Roboto\",\n\t\tfontStyle: \"normal\",\n\t\tfontWeight: \"100\",\n\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\",\n\t},\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n}, {\n\t\"@font-face\": [\n\t\t{\n\t\t\tfontFamily: \"Roboto\",\n\t\t\tfontStyle: \"normal\",\n\t\t\tfontWeight: \"100\",\n\t\t\tsrc: \"url('/Roboto-Thin.ttf') format('truetype')\",\n\t\t},\n\t\t{\n\t\t\tfontFamily: \"Roboto\",\n\t\t\tfontStyle: \"normal\",\n\t\t\tfontWeight: \"400\",\n\t\t\tsrc: \"url('/Roboto-Regular.ttf') format('truetype')\",\n\t\t},\n\t],\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@import\": \"some.css\",\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n\nvoid globalCss({\n\t\"@import\": \"some.css\",\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n}, {\n\t\"@import\": [\n\t\t\"some.css\",\n\t\t\"someother.css\",\n\t],\n\tbody: {\n\t\tcolor: 'ActiveText',\n\t},\n})\n"
  },
  {
    "path": "packages/test/Issue-813-core.ts",
    "content": "// https://github.com/stitchesjs/stitches/issues/813\nimport { createStitches } from '@stitches/core'\nimport * as Stitches from '@stitches/core'\n\nexport const { config, css } = createStitches({\n\ttheme: {\n\t\tcolors: {\n\t\t\tprimary: 'transparent'\n\t\t}\n\t},\n\tutils: {\n\t\tbg: (value: Stitches.PropertyValue<'backgroundColor'>) => ({\n\t\t\tcolor: value\n\t\t}),\n\t\tc: (value: Stitches.ScaleValue<'colors'>) => ({\n\t\t\tcolor: value\n\t\t}),\n\t}\n})\n\n// ensure `PropertyValue` accepts a valid CSS Color\nexport const colorValue1: Stitches.PropertyValue<'backgroundColor', typeof config> = \"RebeccaPurple\"\n// ensure `PropertyValue` accepts a valid token\nexport const colorValue2: Stitches.PropertyValue<'backgroundColor', typeof config> = \"$primary\"\n\n// ensure `ScaleValue` accepts a valid token\nexport const colorToken: Stitches.ScaleValue<'colors', typeof config> = \"$primary\"\n\nexport const box = css({\n\t// ensure `bg` accepts a valid CSS Color\n\tbg: 'RebeccaPurple',\n\t// ensure `bg` accepts a valid token\n\t'&': { bg: '$primary' },\n\t// ensure `c` accepts a valid token\n\tc: '$primary',\n})"
  },
  {
    "path": "packages/test/Issue-813-react.ts",
    "content": "// https://github.com/stitchesjs/stitches/issues/813\nimport { createStitches } from '@stitches/react'\nimport * as Stitches from '@stitches/react'\n\nexport const { config, styled } = createStitches({\n\ttheme: {\n\t\tcolors: {\n\t\t\tprimary: 'transparent'\n\t\t}\n\t},\n\tutils: {\n\t\tbg: (value: Stitches.PropertyValue<'backgroundColor'>) => ({\n\t\t\tcolor: value\n\t\t}),\n\t\tc: (value: Stitches.ScaleValue<'colors'>) => ({\n\t\t\tcolor: value\n\t\t})\n\t}\n})\n\n// ensure `PropertyValue` accepts a valid CSS Color\nexport const colorValue1: Stitches.PropertyValue<'backgroundColor', typeof config> = \"RebeccaPurple\"\n// ensure `PropertyValue` accepts a valid token\nexport const colorValue2: Stitches.PropertyValue<'backgroundColor', typeof config> = \"$primary\"\n\n// ensure `ScaleValue` accepts a valid token\nexport const colorToken: Stitches.ScaleValue<'colors', typeof config> = '$primary'\n\nexport const Box = styled('div', {\n\t// ensure `bg` accepts a valid CSS Color\n\tbg: 'RebeccaPurple',\n\t// ensure `bg` accepts a valid token\n\t'&': { bg: '$primary' },\n\t// ensure `c` accepts a valid token\n\tc: '$primary',\n})\n"
  },
  {
    "path": "packages/test/built-types/Issue-803-core.d.ts",
    "content": "export {};\n"
  },
  {
    "path": "packages/test/built-types/Issue-803-react.d.ts",
    "content": "export {};\n"
  },
  {
    "path": "packages/test/built-types/Issue-813-core.d.ts",
    "content": "import * as Stitches from '@stitches/core';\nexport declare const config: {\n    prefix: \"\";\n    media: {};\n    theme: {\n        colors: {\n            primary: string;\n        };\n    };\n    themeMap: import(\"@stitches/core/types/config\").DefaultThemeMap;\n    utils: {\n        bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            color: import(\"@stitches/core/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        c: (value: Stitches.ScaleValue<'colors'>) => {\n            color: import(\"@stitches/core/types/css-util\").WithScaleValue<\"colors\">;\n        };\n    };\n}, css: {\n    withConfig: (config: {\n        componentId?: string | undefined;\n        displayName?: string | undefined;\n        shouldForwardStitchesProp?: ((prop: \"css\" | (string & {})) => boolean | void) | undefined;\n    }) => import(\"@stitches/core/types/stitches\").CssFunctionType<{}, {\n        colors: {\n            primary: string;\n        };\n    }, import(\"@stitches/core/types/config\").DefaultThemeMap, {\n        bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            color: import(\"@stitches/core/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        c: (value: Stitches.ScaleValue<'colors'>) => {\n            color: import(\"@stitches/core/types/css-util\").WithScaleValue<\"colors\">;\n        };\n    }>;\n} & import(\"@stitches/core/types/stitches\").CssFunctionType<{}, {\n    colors: {\n        primary: string;\n    };\n}, import(\"@stitches/core/types/config\").DefaultThemeMap, {\n    bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n        color: import(\"@stitches/core/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n    };\n    c: (value: Stitches.ScaleValue<'colors'>) => {\n        color: import(\"@stitches/core/types/css-util\").WithScaleValue<\"colors\">;\n    };\n}>;\nexport declare const colorValue1: Stitches.PropertyValue<'backgroundColor', typeof config>;\nexport declare const colorValue2: Stitches.PropertyValue<'backgroundColor', typeof config>;\nexport declare const colorToken: Stitches.ScaleValue<'colors', typeof config>;\nexport declare const box: import(\"@stitches/core/types/styled-component\").CssComponent<never, {}, {}, import(\"@stitches/core/types/css-util\").CSS<{}, {\n    colors: {\n        primary: string;\n    };\n}, import(\"@stitches/core/types/config\").DefaultThemeMap, {\n    bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n        color: import(\"@stitches/core/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n    };\n    c: (value: Stitches.ScaleValue<'colors'>) => {\n        color: import(\"@stitches/core/types/css-util\").WithScaleValue<\"colors\">;\n    };\n}>>;\n"
  },
  {
    "path": "packages/test/built-types/Issue-813-react.d.ts",
    "content": "import * as Stitches from '@stitches/react';\nexport declare const config: {\n    prefix: \"\";\n    media: {};\n    theme: {\n        colors: {\n            primary: string;\n        };\n    };\n    themeMap: import(\"@stitches/react/types/config\").DefaultThemeMap;\n    utils: {\n        bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            color: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        c: (value: Stitches.ScaleValue<'colors'>) => {\n            color: import(\"@stitches/react/types/css-util\").WithScaleValue<\"colors\">;\n        };\n    };\n}, styled: {\n    withConfig: (config: {\n        componentId?: string | undefined;\n        displayName?: string | undefined;\n        shouldForwardStitchesProp?: ((prop: \"css\" | (string & {})) => boolean | void) | undefined;\n    }) => import(\"@stitches/react/types/stitches\").StyledFunctionType<{}, {\n        colors: {\n            primary: string;\n        };\n    }, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n        bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            color: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        c: (value: Stitches.ScaleValue<'colors'>) => {\n            color: import(\"@stitches/react/types/css-util\").WithScaleValue<\"colors\">;\n        };\n    }>;\n} & import(\"@stitches/react/types/stitches\").StyledFunctionType<{}, {\n    colors: {\n        primary: string;\n    };\n}, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n    bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n        color: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n    };\n    c: (value: Stitches.ScaleValue<'colors'>) => {\n        color: import(\"@stitches/react/types/css-util\").WithScaleValue<\"colors\">;\n    };\n}>;\nexport declare const colorValue1: Stitches.PropertyValue<'backgroundColor', typeof config>;\nexport declare const colorValue2: Stitches.PropertyValue<'backgroundColor', typeof config>;\nexport declare const colorToken: Stitches.ScaleValue<'colors', typeof config>;\nexport declare const Box: import(\"@stitches/react/types/styled-component\").StyledComponent<\"div\", {}, {}, import(\"@stitches/react/types/css-util\").CSS<{}, {\n    colors: {\n        primary: string;\n    };\n}, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n    bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n        color: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n    };\n    c: (value: Stitches.ScaleValue<'colors'>) => {\n        color: import(\"@stitches/react/types/css-util\").WithScaleValue<\"colors\">;\n    };\n}>>;\n"
  },
  {
    "path": "packages/test/built-types/built-types-test.tsx",
    "content": "import * as React from 'react'\nimport { styled, CSS } from './stitches.config'\n\nexport const Text = styled('span', {\n\tbackground: '$red100',\n\tpaddingBlock: '$2',\n\tcolor: 'AliceBlue',\n\tvariants: {\n\t\tvariant: {\n\t\t\tred: {\n\t\t\t\tbackgroundColor: '$red100',\n\t\t\t}\n\t\t}\n\t},\n})\n\nconst DEFAULT_TAG = 'h1'\nconst bla: CSS = {\n\tbackground: '$amber1',\n}\n const Test = styled('div', bla)\nexport type HeadingProps = React.ComponentProps<typeof DEFAULT_TAG> & { css?: CSS }\n\n// ref should be span element\ntype ref = React.ElementRef<typeof Text>\n\nconst Heading = React.forwardRef<React.ElementRef<typeof DEFAULT_TAG>, HeadingProps>((props, forwardedRef) => {\n\treturn (\n\t\t<>\n\t\t\t<Text onClick={(e) => { console.log(e.altKey) }} css={{backgroundClip: 'content-box', \"@bp10\": { backgroundClip: 'content-box' }}} />\n\t\t\t<Text as={DEFAULT_TAG} onClick={(e: any) => { console.log(e.altKey) }} ref={forwardedRef} css={{ borderTopColor: 'AliceBlue', backgroundColor: 'ActiveText', backgroundAttachment: 'inherit', backgroundOrigin: 'border-box', colorAdjust: 'economy' }} />\n\t\t\t<Text onClick={(e) => { console.log(e.altKey) }} ref={forwardedRef} css={{ 'backgroundClip': 'border-box', 'ml': 'auto', '@bp1': { backgroundAttachment: 'fixed', }, hello: { backgroundClip: 'border-box' } }} />\n\t\t\t<Text onClick={(e) => { console.log(e.altKey) }} ref={forwardedRef} css={{ backgroundColor: '$red100', backgroundAttachment: 'inherit', backgroundOrigin: 'border-box' }} />\n\t\t\t<Text as=\"b\" onClick={(e: any) => { console.log(e.altKey) }} ref={forwardedRef} css={{ ...props.css, 'backgroundColor': '$red100', 'padding': 'initial', '@bp3': { paddingBlock: 'inherit', }, }} />\n\t\t\t<Text as=\"div\" onClick={(e: any) => { console.log(e.altKey) }} css={{ ...props.css, backgroundColor: '$red100', background: 'red', paddingLeft: 'initial'}} />\n\t\t\t<Text as=\"div\" onClick={(e: any) => { console.log(e.altKey) }} css={props.css} />\n\t\t\t<Text as={DEFAULT_TAG} {...props} onClick={(e: any) => { console.log(e.altKey) }} ref={forwardedRef} />\n\t\t</>\n\t)\n})\n\nconst App = () => {\n\t// when consuming the component it should be very fast too\n\treturn <Heading css={{ backgroundColor: '$red100', padding: 'inherit', colorScheme: 'dark' }} />\n}\n"
  },
  {
    "path": "packages/test/built-types/index.d.ts",
    "content": "import * as React from 'react';\nimport { CSS } from './stitches.config';\nexport declare const Text: import(\"@stitches/react/types/styled-component\").StyledComponent<\"span\", {\n    variant?: \"red\" | undefined;\n}, {\n    bp1: \"(min-width: 520px)\";\n    bp2: \"(min-width: 900px)\";\n    bp3: \"(min-width: 1200px)\";\n    bp4: \"(min-width: 1800px)\";\n    motion: \"(prefers-reduced-motion)\";\n    hover: \"(any-hover: hover)\";\n    dark: \"(prefers-color-scheme: dark)\";\n    light: \"(prefers-color-scheme: light)\";\n}, import(\"@stitches/react/types/css-util\").CSS<{\n    bp1: \"(min-width: 520px)\";\n    bp2: \"(min-width: 900px)\";\n    bp3: \"(min-width: 1200px)\";\n    bp4: \"(min-width: 1800px)\";\n    motion: \"(prefers-reduced-motion)\";\n    hover: \"(any-hover: hover)\";\n    dark: \"(prefers-color-scheme: dark)\";\n    light: \"(prefers-color-scheme: light)\";\n}, {\n    colors: {\n        hiContrast: string;\n        loContrast: string;\n        canvas: string;\n        panel: string;\n        transparentPanel: string;\n        shadowLight: string;\n        shadowDark: string;\n        blackA1: string;\n        blackA2: string;\n        blackA3: string;\n        blackA4: string;\n        blackA5: string;\n        blackA6: string;\n        blackA7: string;\n        blackA8: string;\n        blackA9: string;\n        blackA10: string;\n        blackA11: string;\n        blackA12: string;\n        whiteA1: string;\n        whiteA2: string;\n        whiteA3: string;\n        whiteA4: string;\n        whiteA5: string;\n        whiteA6: string;\n        whiteA7: string;\n        whiteA8: string;\n        whiteA9: string;\n        whiteA10: string;\n        whiteA11: string;\n        whiteA12: string;\n        goldA1: string;\n        goldA2: string;\n        goldA3: string;\n        goldA4: string;\n        goldA5: string;\n        goldA6: string;\n        goldA7: string;\n        goldA8: string;\n        goldA9: string;\n        goldA10: string;\n        goldA11: string;\n        goldA12: string;\n        bronzeA1: string;\n        bronzeA2: string;\n        bronzeA3: string;\n        bronzeA4: string;\n        bronzeA5: string;\n        bronzeA6: string;\n        bronzeA7: string;\n        bronzeA8: string;\n        bronzeA9: string;\n        bronzeA10: string;\n        bronzeA11: string;\n        bronzeA12: string;\n        brownA1: string;\n        brownA2: string;\n        brownA3: string;\n        brownA4: string;\n        brownA5: string;\n        brownA6: string;\n        brownA7: string;\n        brownA8: string;\n        brownA9: string;\n        brownA10: string;\n        brownA11: string;\n        brownA12: string;\n        orangeA1: string;\n        orangeA2: string;\n        orangeA3: string;\n        orangeA4: string;\n        orangeA5: string;\n        orangeA6: string;\n        orangeA7: string;\n        orangeA8: string;\n        orangeA9: string;\n        orangeA10: string;\n        orangeA11: string;\n        orangeA12: string;\n        amberA1: string;\n        amberA2: string;\n        amberA3: string;\n        amberA4: string;\n        amberA5: string;\n        amberA6: string;\n        amberA7: string;\n        amberA8: string;\n        amberA9: string;\n        amberA10: string;\n        amberA11: string;\n        amberA12: string;\n        yellowA1: string;\n        yellowA2: string;\n        yellowA3: string;\n        yellowA4: string;\n        yellowA5: string;\n        yellowA6: string;\n        yellowA7: string;\n        yellowA8: string;\n        yellowA9: string;\n        yellowA10: string;\n        yellowA11: string;\n        yellowA12: string;\n        limeA1: string;\n        limeA2: string;\n        limeA3: string;\n        limeA4: string;\n        limeA5: string;\n        limeA6: string;\n        limeA7: string;\n        limeA8: string;\n        limeA9: string;\n        limeA10: string;\n        limeA11: string;\n        limeA12: string;\n        grassA1: string;\n        grassA2: string;\n        grassA3: string;\n        grassA4: string;\n        grassA5: string;\n        grassA6: string;\n        grassA7: string;\n        grassA8: string;\n        grassA9: string;\n        grassA10: string;\n        grassA11: string;\n        grassA12: string;\n        greenA1: string;\n        greenA2: string;\n        greenA3: string;\n        greenA4: string;\n        greenA5: string;\n        greenA6: string;\n        greenA7: string;\n        greenA8: string;\n        greenA9: string;\n        greenA10: string;\n        greenA11: string;\n        greenA12: string;\n        tealA1: string;\n        tealA2: string;\n        tealA3: string;\n        tealA4: string;\n        tealA5: string;\n        tealA6: string;\n        tealA7: string;\n        tealA8: string;\n        tealA9: string;\n        tealA10: string;\n        tealA11: string;\n        tealA12: string;\n        cyanA1: string;\n        cyanA2: string;\n        cyanA3: string;\n        cyanA4: string;\n        cyanA5: string;\n        cyanA6: string;\n        cyanA7: string;\n        cyanA8: string;\n        cyanA9: string;\n        cyanA10: string;\n        cyanA11: string;\n        cyanA12: string;\n        mintA1: string;\n        mintA2: string;\n        mintA3: string;\n        mintA4: string;\n        mintA5: string;\n        mintA6: string;\n        mintA7: string;\n        mintA8: string;\n        mintA9: string;\n        mintA10: string;\n        mintA11: string;\n        mintA12: string;\n        skyA1: string;\n        skyA2: string;\n        skyA3: string;\n        skyA4: string;\n        skyA5: string;\n        skyA6: string;\n        skyA7: string;\n        skyA8: string;\n        skyA9: string;\n        skyA10: string;\n        skyA11: string;\n        skyA12: string;\n        blueA1: string;\n        blueA2: string;\n        blueA3: string;\n        blueA4: string;\n        blueA5: string;\n        blueA6: string;\n        blueA7: string;\n        blueA8: string;\n        blueA9: string;\n        blueA10: string;\n        blueA11: string;\n        blueA12: string;\n        indigoA1: string;\n        indigoA2: string;\n        indigoA3: string;\n        indigoA4: string;\n        indigoA5: string;\n        indigoA6: string;\n        indigoA7: string;\n        indigoA8: string;\n        indigoA9: string;\n        indigoA10: string;\n        indigoA11: string;\n        indigoA12: string;\n        violetA1: string;\n        violetA2: string;\n        violetA3: string;\n        violetA4: string;\n        violetA5: string;\n        violetA6: string;\n        violetA7: string;\n        violetA8: string;\n        violetA9: string;\n        violetA10: string;\n        violetA11: string;\n        violetA12: string;\n        purpleA1: string;\n        purpleA2: string;\n        purpleA3: string;\n        purpleA4: string;\n        purpleA5: string;\n        purpleA6: string;\n        purpleA7: string;\n        purpleA8: string;\n        purpleA9: string;\n        purpleA10: string;\n        purpleA11: string;\n        purpleA12: string;\n        plumA1: string;\n        plumA2: string;\n        plumA3: string;\n        plumA4: string;\n        plumA5: string;\n        plumA6: string;\n        plumA7: string;\n        plumA8: string;\n        plumA9: string;\n        plumA10: string;\n        plumA11: string;\n        plumA12: string;\n        pinkA1: string;\n        pinkA2: string;\n        pinkA3: string;\n        pinkA4: string;\n        pinkA5: string;\n        pinkA6: string;\n        pinkA7: string;\n        pinkA8: string;\n        pinkA9: string;\n        pinkA10: string;\n        pinkA11: string;\n        pinkA12: string;\n        crimsonA1: string;\n        crimsonA2: string;\n        crimsonA3: string;\n        crimsonA4: string;\n        crimsonA5: string;\n        crimsonA6: string;\n        crimsonA7: string;\n        crimsonA8: string;\n        crimsonA9: string;\n        crimsonA10: string;\n        crimsonA11: string;\n        crimsonA12: string;\n        redA1: string;\n        redA2: string;\n        redA3: string;\n        redA4: string;\n        redA5: string;\n        redA6: string;\n        redA7: string;\n        redA8: string;\n        redA9: string;\n        redA10: string;\n        redA11: string;\n        redA12: string;\n        tomatoA1: string;\n        tomatoA2: string;\n        tomatoA3: string;\n        tomatoA4: string;\n        tomatoA5: string;\n        tomatoA6: string;\n        tomatoA7: string;\n        tomatoA8: string;\n        tomatoA9: string;\n        tomatoA10: string;\n        tomatoA11: string;\n        tomatoA12: string;\n        sandA1: string;\n        sandA2: string;\n        sandA3: string;\n        sandA4: string;\n        sandA5: string;\n        sandA6: string;\n        sandA7: string;\n        sandA8: string;\n        sandA9: string;\n        sandA10: string;\n        sandA11: string;\n        sandA12: string;\n        oliveA1: string;\n        oliveA2: string;\n        oliveA3: string;\n        oliveA4: string;\n        oliveA5: string;\n        oliveA6: string;\n        oliveA7: string;\n        oliveA8: string;\n        oliveA9: string;\n        oliveA10: string;\n        oliveA11: string;\n        oliveA12: string;\n        sageA1: string;\n        sageA2: string;\n        sageA3: string;\n        sageA4: string;\n        sageA5: string;\n        sageA6: string;\n        sageA7: string;\n        sageA8: string;\n        sageA9: string;\n        sageA10: string;\n        sageA11: string;\n        sageA12: string;\n        slateA1: string;\n        slateA2: string;\n        slateA3: string;\n        slateA4: string;\n        slateA5: string;\n        slateA6: string;\n        slateA7: string;\n        slateA8: string;\n        slateA9: string;\n        slateA10: string;\n        slateA11: string;\n        slateA12: string;\n        mauveA1: string;\n        mauveA2: string;\n        mauveA3: string;\n        mauveA4: string;\n        mauveA5: string;\n        mauveA6: string;\n        mauveA7: string;\n        mauveA8: string;\n        mauveA9: string;\n        mauveA10: string;\n        mauveA11: string;\n        mauveA12: string;\n        grayA1: string;\n        grayA2: string;\n        grayA3: string;\n        grayA4: string;\n        grayA5: string;\n        grayA6: string;\n        grayA7: string;\n        grayA8: string;\n        grayA9: string;\n        grayA10: string;\n        grayA11: string;\n        grayA12: string;\n        gold1: string;\n        gold2: string;\n        gold3: string;\n        gold4: string;\n        gold5: string;\n        gold6: string;\n        gold7: string;\n        gold8: string;\n        gold9: string;\n        gold10: string;\n        gold11: string;\n        gold12: string;\n        bronze1: string;\n        bronze2: string;\n        bronze3: string;\n        bronze4: string;\n        bronze5: string;\n        bronze6: string;\n        bronze7: string;\n        bronze8: string;\n        bronze9: string;\n        bronze10: string;\n        bronze11: string;\n        bronze12: string;\n        brown1: string;\n        brown2: string;\n        brown3: string;\n        brown4: string;\n        brown5: string;\n        brown6: string;\n        brown7: string;\n        brown8: string;\n        brown9: string;\n        brown10: string;\n        brown11: string;\n        brown12: string;\n        orange1: string;\n        orange2: string;\n        orange3: string;\n        orange4: string;\n        orange5: string;\n        orange6: string;\n        orange7: string;\n        orange8: string;\n        orange9: string;\n        orange10: string;\n        orange11: string;\n        orange12: string;\n        amber1: string;\n        amber2: string;\n        amber3: string;\n        amber4: string;\n        amber5: string;\n        amber6: string;\n        amber7: string;\n        amber8: string;\n        amber9: string;\n        amber10: string;\n        amber11: string;\n        amber12: string;\n        yellow1: string;\n        yellow2: string;\n        yellow3: string;\n        yellow4: string;\n        yellow5: string;\n        yellow6: string;\n        yellow7: string;\n        yellow8: string;\n        yellow9: string;\n        yellow10: string;\n        yellow11: string;\n        yellow12: string;\n        lime1: string;\n        lime2: string;\n        lime3: string;\n        lime4: string;\n        lime5: string;\n        lime6: string;\n        lime7: string;\n        lime8: string;\n        lime9: string;\n        lime10: string;\n        lime11: string;\n        lime12: string;\n        grass1: string;\n        grass2: string;\n        grass3: string;\n        grass4: string;\n        grass5: string;\n        grass6: string;\n        grass7: string;\n        grass8: string;\n        grass9: string;\n        grass10: string;\n        grass11: string;\n        grass12: string;\n        green1: string;\n        green2: string;\n        green3: string;\n        green4: string;\n        green5: string;\n        green6: string;\n        green7: string;\n        green8: string;\n        green9: string;\n        green10: string;\n        green11: string;\n        green12: string;\n        teal1: string;\n        teal2: string;\n        teal3: string;\n        teal4: string;\n        teal5: string;\n        teal6: string;\n        teal7: string;\n        teal8: string;\n        teal9: string;\n        teal10: string;\n        teal11: string;\n        teal12: string;\n        cyan1: string;\n        cyan2: string;\n        cyan3: string;\n        cyan4: string;\n        cyan5: string;\n        cyan6: string;\n        cyan7: string;\n        cyan8: string;\n        cyan9: string;\n        cyan10: string;\n        cyan11: string;\n        cyan12: string;\n        mint1: string;\n        mint2: string;\n        mint3: string;\n        mint4: string;\n        mint5: string;\n        mint6: string;\n        mint7: string;\n        mint8: string;\n        mint9: string;\n        mint10: string;\n        mint11: string;\n        mint12: string;\n        sky1: string;\n        sky2: string;\n        sky3: string;\n        sky4: string;\n        sky5: string;\n        sky6: string;\n        sky7: string;\n        sky8: string;\n        sky9: string;\n        sky10: string;\n        sky11: string;\n        sky12: string;\n        blue1: string;\n        blue2: string;\n        blue3: string;\n        blue4: string;\n        blue5: string;\n        blue6: string;\n        blue7: string;\n        blue8: string;\n        blue9: string;\n        blue10: string;\n        blue11: string;\n        blue12: string;\n        indigo1: string;\n        indigo2: string;\n        indigo3: string;\n        indigo4: string;\n        indigo5: string;\n        indigo6: string;\n        indigo7: string;\n        indigo8: string;\n        indigo9: string;\n        indigo10: string;\n        indigo11: string;\n        indigo12: string;\n        violet1: string;\n        violet2: string;\n        violet3: string;\n        violet4: string;\n        violet5: string;\n        violet6: string;\n        violet7: string;\n        violet8: string;\n        violet9: string;\n        violet10: string;\n        violet11: string;\n        violet12: string;\n        purple1: string;\n        purple2: string;\n        purple3: string;\n        purple4: string;\n        purple5: string;\n        purple6: string;\n        purple7: string;\n        purple8: string;\n        purple9: string;\n        purple10: string;\n        purple11: string;\n        purple12: string;\n        plum1: string;\n        plum2: string;\n        plum3: string;\n        plum4: string;\n        plum5: string;\n        plum6: string;\n        plum7: string;\n        plum8: string;\n        plum9: string;\n        plum10: string;\n        plum11: string;\n        plum12: string;\n        pink1: string;\n        pink2: string;\n        pink3: string;\n        pink4: string;\n        pink5: string;\n        pink6: string;\n        pink7: string;\n        pink8: string;\n        pink9: string;\n        pink10: string;\n        pink11: string;\n        pink12: string;\n        crimson1: string;\n        crimson2: string;\n        crimson3: string;\n        crimson4: string;\n        crimson5: string;\n        crimson6: string;\n        crimson7: string;\n        crimson8: string;\n        crimson9: string;\n        crimson10: string;\n        crimson11: string;\n        crimson12: string;\n        red1: string;\n        red2: string;\n        red3: string;\n        red4: string;\n        red5: string;\n        red6: string;\n        red7: string;\n        red8: string;\n        red9: string;\n        red10: string;\n        red11: string;\n        red12: string;\n        tomato1: string;\n        tomato2: string;\n        tomato3: string;\n        tomato4: string;\n        tomato5: string;\n        tomato6: string;\n        tomato7: string;\n        tomato8: string;\n        tomato9: string;\n        tomato10: string;\n        tomato11: string;\n        tomato12: string;\n        sand1: string;\n        sand2: string;\n        sand3: string;\n        sand4: string;\n        sand5: string;\n        sand6: string;\n        sand7: string;\n        sand8: string;\n        sand9: string;\n        sand10: string;\n        sand11: string;\n        sand12: string;\n        olive1: string;\n        olive2: string;\n        olive3: string;\n        olive4: string;\n        olive5: string;\n        olive6: string;\n        olive7: string;\n        olive8: string;\n        olive9: string;\n        olive10: string;\n        olive11: string;\n        olive12: string;\n        sage1: string;\n        sage2: string;\n        sage3: string;\n        sage4: string;\n        sage5: string;\n        sage6: string;\n        sage7: string;\n        sage8: string;\n        sage9: string;\n        sage10: string;\n        sage11: string;\n        sage12: string;\n        slate1: string;\n        slate2: string;\n        slate3: string;\n        slate4: string;\n        slate5: string;\n        slate6: string;\n        slate7: string;\n        slate8: string;\n        slate9: string;\n        slate10: string;\n        slate11: string;\n        slate12: string;\n        mauve1: string;\n        mauve2: string;\n        mauve3: string;\n        mauve4: string;\n        mauve5: string;\n        mauve6: string;\n        mauve7: string;\n        mauve8: string;\n        mauve9: string;\n        mauve10: string;\n        mauve11: string;\n        mauve12: string;\n        gray1: string;\n        gray2: string;\n        gray3: string;\n        gray4: string;\n        gray5: string;\n        gray6: string;\n        gray7: string;\n        gray8: string;\n        gray9: string;\n        gray10: string;\n        gray11: string;\n        gray12: string;\n    };\n    fonts: {\n        untitled: string;\n        mono: string;\n    };\n    space: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        5: string;\n        6: string;\n        7: string;\n        8: string;\n        9: string;\n    };\n    sizes: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        5: string;\n        6: string;\n        7: string;\n        8: string;\n        9: string;\n    };\n    fontSizes: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        5: string;\n        6: string;\n        7: string;\n        8: string;\n        9: string;\n    };\n    radii: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        round: string;\n        pill: string;\n    };\n    zIndices: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        max: string;\n    };\n}, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n    p: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"padding\">) => {\n        padding: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"padding\">;\n    };\n    pt: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">) => {\n        paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n    };\n    pr: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingRight\">) => {\n        paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingRight\">;\n    };\n    pb: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingBottom\">) => {\n        paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingBottom\">;\n    };\n    pl: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">) => {\n        paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n    };\n    px: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">) => {\n        paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n    };\n    py: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">) => {\n        paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n    };\n    m: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"margin\">) => {\n        margin: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"margin\">;\n    };\n    mt: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">) => {\n        marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n    };\n    mr: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginRight\">) => {\n        marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginRight\">;\n    };\n    mb: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginBottom\">) => {\n        marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginBottom\">;\n    };\n    ml: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">) => {\n        marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n    };\n    mx: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">) => {\n        marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n    };\n    my: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">) => {\n        marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n    };\n    ta: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"textAlign\">) => {\n        textAlign: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"textAlign\">;\n    };\n    fd: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexDirection\">) => {\n        flexDirection: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexDirection\">;\n    };\n    fw: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexWrap\">) => {\n        flexWrap: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexWrap\">;\n    };\n    ai: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignItems\">) => {\n        alignItems: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignItems\">;\n    };\n    ac: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignContent\">) => {\n        alignContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignContent\">;\n    };\n    jc: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"justifyContent\">) => {\n        justifyContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"justifyContent\">;\n    };\n    as: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignSelf\">) => {\n        alignSelf: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignSelf\">;\n    };\n    fg: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexGrow\">) => {\n        flexGrow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexGrow\">;\n    };\n    fs: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexShrink\">) => {\n        flexShrink: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexShrink\">;\n    };\n    fb: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexBasis\">) => {\n        flexBasis: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexBasis\">;\n    };\n    bc: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">) => {\n        backgroundColor: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n    };\n    br: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderRadius\">) => {\n        borderRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderRadius\">;\n    };\n    btrr: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopRightRadius\">) => {\n        borderTopRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopRightRadius\">;\n    };\n    bbrr: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomRightRadius\">) => {\n        borderBottomRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomRightRadius\">;\n    };\n    bblr: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomLeftRadius\">) => {\n        borderBottomLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomLeftRadius\">;\n    };\n    btlr: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopLeftRadius\">) => {\n        borderTopLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopLeftRadius\">;\n    };\n    bs: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"boxShadow\">) => {\n        boxShadow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"boxShadow\">;\n    };\n    lh: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"lineHeight\">) => {\n        lineHeight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"lineHeight\">;\n    };\n    ox: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowX\">) => {\n        overflowX: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowX\">;\n    };\n    oy: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowY\">) => {\n        overflowY: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowY\">;\n    };\n    pe: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"pointerEvents\">) => {\n        pointerEvents: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"pointerEvents\">;\n    };\n    us: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">) => {\n        WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n    };\n    userSelect: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">) => {\n        WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n    };\n    size: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">) => {\n        width: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n        height: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n    };\n    appearance: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">) => {\n        WebkitAppearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n        appearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n    };\n    backgroundClip: (value: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">) => {\n        WebkitBackgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n        backgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n    };\n}>>;\ndeclare const DEFAULT_TAG = \"h1\";\nexport declare type HeadingProps = React.ComponentProps<typeof DEFAULT_TAG> & {\n    css?: CSS;\n};\nexport {};\n"
  },
  {
    "path": "packages/test/built-types/issue-749-react.d.ts",
    "content": "export default function App(): JSX.Element;\n"
  },
  {
    "path": "packages/test/built-types/stitches.config.d.ts",
    "content": "import type * as Stitches from '@stitches/react';\nexport type { VariantProps } from '@stitches/react';\nexport declare const styled: {\n    withConfig: (config: {\n        componentId?: string | undefined;\n        displayName?: string | undefined;\n        shouldForwardStitchesProp?: ((prop: \"css\" | (string & {})) => boolean | void) | undefined;\n    }) => import(\"@stitches/react/types/stitches\").StyledFunctionType<{\n        bp1: \"(min-width: 520px)\";\n        bp2: \"(min-width: 900px)\";\n        bp3: \"(min-width: 1200px)\";\n        bp4: \"(min-width: 1800px)\";\n        motion: \"(prefers-reduced-motion)\";\n        hover: \"(any-hover: hover)\";\n        dark: \"(prefers-color-scheme: dark)\";\n        light: \"(prefers-color-scheme: light)\";\n    }, {\n        colors: {\n            hiContrast: string;\n            loContrast: string;\n            canvas: string;\n            panel: string;\n            transparentPanel: string;\n            shadowLight: string;\n            shadowDark: string;\n            blackA1: string;\n            blackA2: string;\n            blackA3: string;\n            blackA4: string;\n            blackA5: string;\n            blackA6: string;\n            blackA7: string;\n            blackA8: string;\n            blackA9: string;\n            blackA10: string;\n            blackA11: string;\n            blackA12: string;\n            whiteA1: string;\n            whiteA2: string;\n            whiteA3: string;\n            whiteA4: string;\n            whiteA5: string;\n            whiteA6: string;\n            whiteA7: string;\n            whiteA8: string;\n            whiteA9: string;\n            whiteA10: string;\n            whiteA11: string;\n            whiteA12: string;\n            goldA1: string;\n            goldA2: string;\n            goldA3: string;\n            goldA4: string;\n            goldA5: string;\n            goldA6: string;\n            goldA7: string;\n            goldA8: string;\n            goldA9: string;\n            goldA10: string;\n            goldA11: string;\n            goldA12: string;\n            bronzeA1: string;\n            bronzeA2: string;\n            bronzeA3: string;\n            bronzeA4: string;\n            bronzeA5: string;\n            bronzeA6: string;\n            bronzeA7: string;\n            bronzeA8: string;\n            bronzeA9: string;\n            bronzeA10: string;\n            bronzeA11: string;\n            bronzeA12: string;\n            brownA1: string;\n            brownA2: string;\n            brownA3: string;\n            brownA4: string;\n            brownA5: string;\n            brownA6: string;\n            brownA7: string;\n            brownA8: string;\n            brownA9: string;\n            brownA10: string;\n            brownA11: string;\n            brownA12: string;\n            orangeA1: string;\n            orangeA2: string;\n            orangeA3: string;\n            orangeA4: string;\n            orangeA5: string;\n            orangeA6: string;\n            orangeA7: string;\n            orangeA8: string;\n            orangeA9: string;\n            orangeA10: string;\n            orangeA11: string;\n            orangeA12: string;\n            amberA1: string;\n            amberA2: string;\n            amberA3: string;\n            amberA4: string;\n            amberA5: string;\n            amberA6: string;\n            amberA7: string;\n            amberA8: string;\n            amberA9: string;\n            amberA10: string;\n            amberA11: string;\n            amberA12: string;\n            yellowA1: string;\n            yellowA2: string;\n            yellowA3: string;\n            yellowA4: string;\n            yellowA5: string;\n            yellowA6: string;\n            yellowA7: string;\n            yellowA8: string;\n            yellowA9: string;\n            yellowA10: string;\n            yellowA11: string;\n            yellowA12: string;\n            limeA1: string;\n            limeA2: string;\n            limeA3: string;\n            limeA4: string;\n            limeA5: string;\n            limeA6: string;\n            limeA7: string;\n            limeA8: string;\n            limeA9: string;\n            limeA10: string;\n            limeA11: string;\n            limeA12: string;\n            grassA1: string;\n            grassA2: string;\n            grassA3: string;\n            grassA4: string;\n            grassA5: string;\n            grassA6: string;\n            grassA7: string;\n            grassA8: string;\n            grassA9: string;\n            grassA10: string;\n            grassA11: string;\n            grassA12: string;\n            greenA1: string;\n            greenA2: string;\n            greenA3: string;\n            greenA4: string;\n            greenA5: string;\n            greenA6: string;\n            greenA7: string;\n            greenA8: string;\n            greenA9: string;\n            greenA10: string;\n            greenA11: string;\n            greenA12: string;\n            tealA1: string;\n            tealA2: string;\n            tealA3: string;\n            tealA4: string;\n            tealA5: string;\n            tealA6: string;\n            tealA7: string;\n            tealA8: string;\n            tealA9: string;\n            tealA10: string;\n            tealA11: string;\n            tealA12: string;\n            cyanA1: string;\n            cyanA2: string;\n            cyanA3: string;\n            cyanA4: string;\n            cyanA5: string;\n            cyanA6: string;\n            cyanA7: string;\n            cyanA8: string;\n            cyanA9: string;\n            cyanA10: string;\n            cyanA11: string;\n            cyanA12: string;\n            mintA1: string;\n            mintA2: string;\n            mintA3: string;\n            mintA4: string;\n            mintA5: string;\n            mintA6: string;\n            mintA7: string;\n            mintA8: string;\n            mintA9: string;\n            mintA10: string;\n            mintA11: string;\n            mintA12: string;\n            skyA1: string;\n            skyA2: string;\n            skyA3: string;\n            skyA4: string;\n            skyA5: string;\n            skyA6: string;\n            skyA7: string;\n            skyA8: string;\n            skyA9: string;\n            skyA10: string;\n            skyA11: string;\n            skyA12: string;\n            blueA1: string;\n            blueA2: string;\n            blueA3: string;\n            blueA4: string;\n            blueA5: string;\n            blueA6: string;\n            blueA7: string;\n            blueA8: string;\n            blueA9: string;\n            blueA10: string;\n            blueA11: string;\n            blueA12: string;\n            indigoA1: string;\n            indigoA2: string;\n            indigoA3: string;\n            indigoA4: string;\n            indigoA5: string;\n            indigoA6: string;\n            indigoA7: string;\n            indigoA8: string;\n            indigoA9: string;\n            indigoA10: string;\n            indigoA11: string;\n            indigoA12: string;\n            violetA1: string;\n            violetA2: string;\n            violetA3: string;\n            violetA4: string;\n            violetA5: string;\n            violetA6: string;\n            violetA7: string;\n            violetA8: string;\n            violetA9: string;\n            violetA10: string;\n            violetA11: string;\n            violetA12: string;\n            purpleA1: string;\n            purpleA2: string;\n            purpleA3: string;\n            purpleA4: string;\n            purpleA5: string;\n            purpleA6: string;\n            purpleA7: string;\n            purpleA8: string;\n            purpleA9: string;\n            purpleA10: string;\n            purpleA11: string;\n            purpleA12: string;\n            plumA1: string;\n            plumA2: string;\n            plumA3: string;\n            plumA4: string;\n            plumA5: string;\n            plumA6: string;\n            plumA7: string;\n            plumA8: string;\n            plumA9: string;\n            plumA10: string;\n            plumA11: string;\n            plumA12: string;\n            pinkA1: string;\n            pinkA2: string;\n            pinkA3: string;\n            pinkA4: string;\n            pinkA5: string;\n            pinkA6: string;\n            pinkA7: string;\n            pinkA8: string;\n            pinkA9: string;\n            pinkA10: string;\n            pinkA11: string;\n            pinkA12: string;\n            crimsonA1: string;\n            crimsonA2: string;\n            crimsonA3: string;\n            crimsonA4: string;\n            crimsonA5: string;\n            crimsonA6: string;\n            crimsonA7: string;\n            crimsonA8: string;\n            crimsonA9: string;\n            crimsonA10: string;\n            crimsonA11: string;\n            crimsonA12: string;\n            redA1: string;\n            redA2: string;\n            redA3: string;\n            redA4: string;\n            redA5: string;\n            redA6: string;\n            redA7: string;\n            redA8: string;\n            redA9: string;\n            redA10: string;\n            redA11: string;\n            redA12: string;\n            tomatoA1: string;\n            tomatoA2: string;\n            tomatoA3: string;\n            tomatoA4: string;\n            tomatoA5: string;\n            tomatoA6: string;\n            tomatoA7: string;\n            tomatoA8: string;\n            tomatoA9: string;\n            tomatoA10: string;\n            tomatoA11: string;\n            tomatoA12: string;\n            sandA1: string;\n            sandA2: string;\n            sandA3: string;\n            sandA4: string;\n            sandA5: string;\n            sandA6: string;\n            sandA7: string;\n            sandA8: string;\n            sandA9: string;\n            sandA10: string;\n            sandA11: string;\n            sandA12: string;\n            oliveA1: string;\n            oliveA2: string;\n            oliveA3: string;\n            oliveA4: string;\n            oliveA5: string;\n            oliveA6: string;\n            oliveA7: string;\n            oliveA8: string;\n            oliveA9: string;\n            oliveA10: string;\n            oliveA11: string;\n            oliveA12: string;\n            sageA1: string;\n            sageA2: string;\n            sageA3: string;\n            sageA4: string;\n            sageA5: string;\n            sageA6: string;\n            sageA7: string;\n            sageA8: string;\n            sageA9: string;\n            sageA10: string;\n            sageA11: string;\n            sageA12: string;\n            slateA1: string;\n            slateA2: string;\n            slateA3: string;\n            slateA4: string;\n            slateA5: string;\n            slateA6: string;\n            slateA7: string;\n            slateA8: string;\n            slateA9: string;\n            slateA10: string;\n            slateA11: string;\n            slateA12: string;\n            mauveA1: string;\n            mauveA2: string;\n            mauveA3: string;\n            mauveA4: string;\n            mauveA5: string;\n            mauveA6: string;\n            mauveA7: string;\n            mauveA8: string;\n            mauveA9: string;\n            mauveA10: string;\n            mauveA11: string;\n            mauveA12: string;\n            grayA1: string;\n            grayA2: string;\n            grayA3: string;\n            grayA4: string;\n            grayA5: string;\n            grayA6: string;\n            grayA7: string;\n            grayA8: string;\n            grayA9: string;\n            grayA10: string;\n            grayA11: string;\n            grayA12: string;\n            gold1: string;\n            gold2: string;\n            gold3: string;\n            gold4: string;\n            gold5: string;\n            gold6: string;\n            gold7: string;\n            gold8: string;\n            gold9: string;\n            gold10: string;\n            gold11: string;\n            gold12: string;\n            bronze1: string;\n            bronze2: string;\n            bronze3: string;\n            bronze4: string;\n            bronze5: string;\n            bronze6: string;\n            bronze7: string;\n            bronze8: string;\n            bronze9: string;\n            bronze10: string;\n            bronze11: string;\n            bronze12: string;\n            brown1: string;\n            brown2: string;\n            brown3: string;\n            brown4: string;\n            brown5: string;\n            brown6: string;\n            brown7: string;\n            brown8: string;\n            brown9: string;\n            brown10: string;\n            brown11: string;\n            brown12: string;\n            orange1: string;\n            orange2: string;\n            orange3: string;\n            orange4: string;\n            orange5: string;\n            orange6: string;\n            orange7: string;\n            orange8: string;\n            orange9: string;\n            orange10: string;\n            orange11: string;\n            orange12: string;\n            amber1: string;\n            amber2: string;\n            amber3: string;\n            amber4: string;\n            amber5: string;\n            amber6: string;\n            amber7: string;\n            amber8: string;\n            amber9: string;\n            amber10: string;\n            amber11: string;\n            amber12: string;\n            yellow1: string;\n            yellow2: string;\n            yellow3: string;\n            yellow4: string;\n            yellow5: string;\n            yellow6: string;\n            yellow7: string;\n            yellow8: string;\n            yellow9: string;\n            yellow10: string;\n            yellow11: string;\n            yellow12: string;\n            lime1: string;\n            lime2: string;\n            lime3: string;\n            lime4: string;\n            lime5: string;\n            lime6: string;\n            lime7: string;\n            lime8: string;\n            lime9: string;\n            lime10: string;\n            lime11: string;\n            lime12: string;\n            grass1: string;\n            grass2: string;\n            grass3: string;\n            grass4: string;\n            grass5: string;\n            grass6: string;\n            grass7: string;\n            grass8: string;\n            grass9: string;\n            grass10: string;\n            grass11: string;\n            grass12: string;\n            green1: string;\n            green2: string;\n            green3: string;\n            green4: string;\n            green5: string;\n            green6: string;\n            green7: string;\n            green8: string;\n            green9: string;\n            green10: string;\n            green11: string;\n            green12: string;\n            teal1: string;\n            teal2: string;\n            teal3: string;\n            teal4: string;\n            teal5: string;\n            teal6: string;\n            teal7: string;\n            teal8: string;\n            teal9: string;\n            teal10: string;\n            teal11: string;\n            teal12: string;\n            cyan1: string;\n            cyan2: string;\n            cyan3: string;\n            cyan4: string;\n            cyan5: string;\n            cyan6: string;\n            cyan7: string;\n            cyan8: string;\n            cyan9: string;\n            cyan10: string;\n            cyan11: string;\n            cyan12: string;\n            mint1: string;\n            mint2: string;\n            mint3: string;\n            mint4: string;\n            mint5: string;\n            mint6: string;\n            mint7: string;\n            mint8: string;\n            mint9: string;\n            mint10: string;\n            mint11: string;\n            mint12: string;\n            sky1: string;\n            sky2: string;\n            sky3: string;\n            sky4: string;\n            sky5: string;\n            sky6: string;\n            sky7: string;\n            sky8: string;\n            sky9: string;\n            sky10: string;\n            sky11: string;\n            sky12: string;\n            blue1: string;\n            blue2: string;\n            blue3: string;\n            blue4: string;\n            blue5: string;\n            blue6: string;\n            blue7: string;\n            blue8: string;\n            blue9: string;\n            blue10: string;\n            blue11: string;\n            blue12: string;\n            indigo1: string;\n            indigo2: string;\n            indigo3: string;\n            indigo4: string;\n            indigo5: string;\n            indigo6: string;\n            indigo7: string;\n            indigo8: string;\n            indigo9: string;\n            indigo10: string;\n            indigo11: string;\n            indigo12: string;\n            violet1: string;\n            violet2: string;\n            violet3: string;\n            violet4: string;\n            violet5: string;\n            violet6: string;\n            violet7: string;\n            violet8: string;\n            violet9: string;\n            violet10: string;\n            violet11: string;\n            violet12: string;\n            purple1: string;\n            purple2: string;\n            purple3: string;\n            purple4: string;\n            purple5: string;\n            purple6: string;\n            purple7: string;\n            purple8: string;\n            purple9: string;\n            purple10: string;\n            purple11: string;\n            purple12: string;\n            plum1: string;\n            plum2: string;\n            plum3: string;\n            plum4: string;\n            plum5: string;\n            plum6: string;\n            plum7: string;\n            plum8: string;\n            plum9: string;\n            plum10: string;\n            plum11: string;\n            plum12: string;\n            pink1: string;\n            pink2: string;\n            pink3: string;\n            pink4: string;\n            pink5: string;\n            pink6: string;\n            pink7: string;\n            pink8: string;\n            pink9: string;\n            pink10: string;\n            pink11: string;\n            pink12: string;\n            crimson1: string;\n            crimson2: string;\n            crimson3: string;\n            crimson4: string;\n            crimson5: string;\n            crimson6: string;\n            crimson7: string;\n            crimson8: string;\n            crimson9: string;\n            crimson10: string;\n            crimson11: string;\n            crimson12: string;\n            red1: string;\n            red2: string;\n            red3: string;\n            red4: string;\n            red5: string;\n            red6: string;\n            red7: string;\n            red8: string;\n            red9: string;\n            red10: string;\n            red11: string;\n            red12: string;\n            tomato1: string;\n            tomato2: string;\n            tomato3: string;\n            tomato4: string;\n            tomato5: string;\n            tomato6: string;\n            tomato7: string;\n            tomato8: string;\n            tomato9: string;\n            tomato10: string;\n            tomato11: string;\n            tomato12: string;\n            sand1: string;\n            sand2: string;\n            sand3: string;\n            sand4: string;\n            sand5: string;\n            sand6: string;\n            sand7: string;\n            sand8: string;\n            sand9: string;\n            sand10: string;\n            sand11: string;\n            sand12: string;\n            olive1: string;\n            olive2: string;\n            olive3: string;\n            olive4: string;\n            olive5: string;\n            olive6: string;\n            olive7: string;\n            olive8: string;\n            olive9: string;\n            olive10: string;\n            olive11: string;\n            olive12: string;\n            sage1: string;\n            sage2: string;\n            sage3: string;\n            sage4: string;\n            sage5: string;\n            sage6: string;\n            sage7: string;\n            sage8: string;\n            sage9: string;\n            sage10: string;\n            sage11: string;\n            sage12: string;\n            slate1: string;\n            slate2: string;\n            slate3: string;\n            slate4: string;\n            slate5: string;\n            slate6: string;\n            slate7: string;\n            slate8: string;\n            slate9: string;\n            slate10: string;\n            slate11: string;\n            slate12: string;\n            mauve1: string;\n            mauve2: string;\n            mauve3: string;\n            mauve4: string;\n            mauve5: string;\n            mauve6: string;\n            mauve7: string;\n            mauve8: string;\n            mauve9: string;\n            mauve10: string;\n            mauve11: string;\n            mauve12: string;\n            gray1: string;\n            gray2: string;\n            gray3: string;\n            gray4: string;\n            gray5: string;\n            gray6: string;\n            gray7: string;\n            gray8: string;\n            gray9: string;\n            gray10: string;\n            gray11: string;\n            gray12: string;\n        };\n        fonts: {\n            untitled: string;\n            mono: string;\n        };\n        space: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        sizes: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        fontSizes: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        radii: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            round: string;\n            pill: string;\n        };\n        zIndices: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            max: string;\n        };\n    }, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n        p: (value: Stitches.PropertyValue<'padding'>) => {\n            padding: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"padding\">;\n        };\n        pt: (value: Stitches.PropertyValue<'paddingTop'>) => {\n            paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        };\n        pr: (value: Stitches.PropertyValue<'paddingRight'>) => {\n            paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingRight\">;\n        };\n        pb: (value: Stitches.PropertyValue<'paddingBottom'>) => {\n            paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingBottom\">;\n        };\n        pl: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n            paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        };\n        px: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n            paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n            paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        };\n        py: (value: Stitches.PropertyValue<'paddingTop'>) => {\n            paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n            paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        };\n        m: (value: Stitches.PropertyValue<'margin'>) => {\n            margin: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"margin\">;\n        };\n        mt: (value: Stitches.PropertyValue<'marginTop'>) => {\n            marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        };\n        mr: (value: Stitches.PropertyValue<'marginRight'>) => {\n            marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginRight\">;\n        };\n        mb: (value: Stitches.PropertyValue<'marginBottom'>) => {\n            marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginBottom\">;\n        };\n        ml: (value: Stitches.PropertyValue<'marginLeft'>) => {\n            marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        };\n        mx: (value: Stitches.PropertyValue<'marginLeft'>) => {\n            marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n            marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        };\n        my: (value: Stitches.PropertyValue<'marginTop'>) => {\n            marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n            marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        };\n        ta: (value: Stitches.PropertyValue<'textAlign'>) => {\n            textAlign: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"textAlign\">;\n        };\n        fd: (value: Stitches.PropertyValue<'flexDirection'>) => {\n            flexDirection: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexDirection\">;\n        };\n        fw: (value: Stitches.PropertyValue<'flexWrap'>) => {\n            flexWrap: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexWrap\">;\n        };\n        ai: (value: Stitches.PropertyValue<'alignItems'>) => {\n            alignItems: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignItems\">;\n        };\n        ac: (value: Stitches.PropertyValue<'alignContent'>) => {\n            alignContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignContent\">;\n        };\n        jc: (value: Stitches.PropertyValue<'justifyContent'>) => {\n            justifyContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"justifyContent\">;\n        };\n        as: (value: Stitches.PropertyValue<'alignSelf'>) => {\n            alignSelf: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignSelf\">;\n        };\n        fg: (value: Stitches.PropertyValue<'flexGrow'>) => {\n            flexGrow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexGrow\">;\n        };\n        fs: (value: Stitches.PropertyValue<'flexShrink'>) => {\n            flexShrink: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexShrink\">;\n        };\n        fb: (value: Stitches.PropertyValue<'flexBasis'>) => {\n            flexBasis: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexBasis\">;\n        };\n        bc: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            backgroundColor: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        br: (value: Stitches.PropertyValue<'borderRadius'>) => {\n            borderRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderRadius\">;\n        };\n        btrr: (value: Stitches.PropertyValue<'borderTopRightRadius'>) => {\n            borderTopRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopRightRadius\">;\n        };\n        bbrr: (value: Stitches.PropertyValue<'borderBottomRightRadius'>) => {\n            borderBottomRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomRightRadius\">;\n        };\n        bblr: (value: Stitches.PropertyValue<'borderBottomLeftRadius'>) => {\n            borderBottomLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomLeftRadius\">;\n        };\n        btlr: (value: Stitches.PropertyValue<'borderTopLeftRadius'>) => {\n            borderTopLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopLeftRadius\">;\n        };\n        bs: (value: Stitches.PropertyValue<'boxShadow'>) => {\n            boxShadow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"boxShadow\">;\n        };\n        lh: (value: Stitches.PropertyValue<'lineHeight'>) => {\n            lineHeight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"lineHeight\">;\n        };\n        ox: (value: Stitches.PropertyValue<'overflowX'>) => {\n            overflowX: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowX\">;\n        };\n        oy: (value: Stitches.PropertyValue<'overflowY'>) => {\n            overflowY: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowY\">;\n        };\n        pe: (value: Stitches.PropertyValue<'pointerEvents'>) => {\n            pointerEvents: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"pointerEvents\">;\n        };\n        us: (value: Stitches.PropertyValue<'userSelect'>) => {\n            WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n            userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        };\n        userSelect: (value: Stitches.PropertyValue<'userSelect'>) => {\n            WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n            userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        };\n        size: (value: Stitches.PropertyValue<'width'>) => {\n            width: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n            height: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n        };\n        appearance: (value: Stitches.PropertyValue<'appearance'>) => {\n            WebkitAppearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n            appearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n        };\n        backgroundClip: (value: Stitches.PropertyValue<'backgroundClip'>) => {\n            WebkitBackgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n            backgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n        };\n    }>;\n} & import(\"@stitches/react/types/stitches\").StyledFunctionType<{\n    bp1: \"(min-width: 520px)\";\n    bp2: \"(min-width: 900px)\";\n    bp3: \"(min-width: 1200px)\";\n    bp4: \"(min-width: 1800px)\";\n    motion: \"(prefers-reduced-motion)\";\n    hover: \"(any-hover: hover)\";\n    dark: \"(prefers-color-scheme: dark)\";\n    light: \"(prefers-color-scheme: light)\";\n}, {\n    colors: {\n        hiContrast: string;\n        loContrast: string;\n        canvas: string;\n        panel: string;\n        transparentPanel: string;\n        shadowLight: string;\n        shadowDark: string;\n        blackA1: string;\n        blackA2: string;\n        blackA3: string;\n        blackA4: string;\n        blackA5: string;\n        blackA6: string;\n        blackA7: string;\n        blackA8: string;\n        blackA9: string;\n        blackA10: string;\n        blackA11: string;\n        blackA12: string;\n        whiteA1: string;\n        whiteA2: string;\n        whiteA3: string;\n        whiteA4: string;\n        whiteA5: string;\n        whiteA6: string;\n        whiteA7: string;\n        whiteA8: string;\n        whiteA9: string;\n        whiteA10: string;\n        whiteA11: string;\n        whiteA12: string;\n        goldA1: string;\n        goldA2: string;\n        goldA3: string;\n        goldA4: string;\n        goldA5: string;\n        goldA6: string;\n        goldA7: string;\n        goldA8: string;\n        goldA9: string;\n        goldA10: string;\n        goldA11: string;\n        goldA12: string;\n        bronzeA1: string;\n        bronzeA2: string;\n        bronzeA3: string;\n        bronzeA4: string;\n        bronzeA5: string;\n        bronzeA6: string;\n        bronzeA7: string;\n        bronzeA8: string;\n        bronzeA9: string;\n        bronzeA10: string;\n        bronzeA11: string;\n        bronzeA12: string;\n        brownA1: string;\n        brownA2: string;\n        brownA3: string;\n        brownA4: string;\n        brownA5: string;\n        brownA6: string;\n        brownA7: string;\n        brownA8: string;\n        brownA9: string;\n        brownA10: string;\n        brownA11: string;\n        brownA12: string;\n        orangeA1: string;\n        orangeA2: string;\n        orangeA3: string;\n        orangeA4: string;\n        orangeA5: string;\n        orangeA6: string;\n        orangeA7: string;\n        orangeA8: string;\n        orangeA9: string;\n        orangeA10: string;\n        orangeA11: string;\n        orangeA12: string;\n        amberA1: string;\n        amberA2: string;\n        amberA3: string;\n        amberA4: string;\n        amberA5: string;\n        amberA6: string;\n        amberA7: string;\n        amberA8: string;\n        amberA9: string;\n        amberA10: string;\n        amberA11: string;\n        amberA12: string;\n        yellowA1: string;\n        yellowA2: string;\n        yellowA3: string;\n        yellowA4: string;\n        yellowA5: string;\n        yellowA6: string;\n        yellowA7: string;\n        yellowA8: string;\n        yellowA9: string;\n        yellowA10: string;\n        yellowA11: string;\n        yellowA12: string;\n        limeA1: string;\n        limeA2: string;\n        limeA3: string;\n        limeA4: string;\n        limeA5: string;\n        limeA6: string;\n        limeA7: string;\n        limeA8: string;\n        limeA9: string;\n        limeA10: string;\n        limeA11: string;\n        limeA12: string;\n        grassA1: string;\n        grassA2: string;\n        grassA3: string;\n        grassA4: string;\n        grassA5: string;\n        grassA6: string;\n        grassA7: string;\n        grassA8: string;\n        grassA9: string;\n        grassA10: string;\n        grassA11: string;\n        grassA12: string;\n        greenA1: string;\n        greenA2: string;\n        greenA3: string;\n        greenA4: string;\n        greenA5: string;\n        greenA6: string;\n        greenA7: string;\n        greenA8: string;\n        greenA9: string;\n        greenA10: string;\n        greenA11: string;\n        greenA12: string;\n        tealA1: string;\n        tealA2: string;\n        tealA3: string;\n        tealA4: string;\n        tealA5: string;\n        tealA6: string;\n        tealA7: string;\n        tealA8: string;\n        tealA9: string;\n        tealA10: string;\n        tealA11: string;\n        tealA12: string;\n        cyanA1: string;\n        cyanA2: string;\n        cyanA3: string;\n        cyanA4: string;\n        cyanA5: string;\n        cyanA6: string;\n        cyanA7: string;\n        cyanA8: string;\n        cyanA9: string;\n        cyanA10: string;\n        cyanA11: string;\n        cyanA12: string;\n        mintA1: string;\n        mintA2: string;\n        mintA3: string;\n        mintA4: string;\n        mintA5: string;\n        mintA6: string;\n        mintA7: string;\n        mintA8: string;\n        mintA9: string;\n        mintA10: string;\n        mintA11: string;\n        mintA12: string;\n        skyA1: string;\n        skyA2: string;\n        skyA3: string;\n        skyA4: string;\n        skyA5: string;\n        skyA6: string;\n        skyA7: string;\n        skyA8: string;\n        skyA9: string;\n        skyA10: string;\n        skyA11: string;\n        skyA12: string;\n        blueA1: string;\n        blueA2: string;\n        blueA3: string;\n        blueA4: string;\n        blueA5: string;\n        blueA6: string;\n        blueA7: string;\n        blueA8: string;\n        blueA9: string;\n        blueA10: string;\n        blueA11: string;\n        blueA12: string;\n        indigoA1: string;\n        indigoA2: string;\n        indigoA3: string;\n        indigoA4: string;\n        indigoA5: string;\n        indigoA6: string;\n        indigoA7: string;\n        indigoA8: string;\n        indigoA9: string;\n        indigoA10: string;\n        indigoA11: string;\n        indigoA12: string;\n        violetA1: string;\n        violetA2: string;\n        violetA3: string;\n        violetA4: string;\n        violetA5: string;\n        violetA6: string;\n        violetA7: string;\n        violetA8: string;\n        violetA9: string;\n        violetA10: string;\n        violetA11: string;\n        violetA12: string;\n        purpleA1: string;\n        purpleA2: string;\n        purpleA3: string;\n        purpleA4: string;\n        purpleA5: string;\n        purpleA6: string;\n        purpleA7: string;\n        purpleA8: string;\n        purpleA9: string;\n        purpleA10: string;\n        purpleA11: string;\n        purpleA12: string;\n        plumA1: string;\n        plumA2: string;\n        plumA3: string;\n        plumA4: string;\n        plumA5: string;\n        plumA6: string;\n        plumA7: string;\n        plumA8: string;\n        plumA9: string;\n        plumA10: string;\n        plumA11: string;\n        plumA12: string;\n        pinkA1: string;\n        pinkA2: string;\n        pinkA3: string;\n        pinkA4: string;\n        pinkA5: string;\n        pinkA6: string;\n        pinkA7: string;\n        pinkA8: string;\n        pinkA9: string;\n        pinkA10: string;\n        pinkA11: string;\n        pinkA12: string;\n        crimsonA1: string;\n        crimsonA2: string;\n        crimsonA3: string;\n        crimsonA4: string;\n        crimsonA5: string;\n        crimsonA6: string;\n        crimsonA7: string;\n        crimsonA8: string;\n        crimsonA9: string;\n        crimsonA10: string;\n        crimsonA11: string;\n        crimsonA12: string;\n        redA1: string;\n        redA2: string;\n        redA3: string;\n        redA4: string;\n        redA5: string;\n        redA6: string;\n        redA7: string;\n        redA8: string;\n        redA9: string;\n        redA10: string;\n        redA11: string;\n        redA12: string;\n        tomatoA1: string;\n        tomatoA2: string;\n        tomatoA3: string;\n        tomatoA4: string;\n        tomatoA5: string;\n        tomatoA6: string;\n        tomatoA7: string;\n        tomatoA8: string;\n        tomatoA9: string;\n        tomatoA10: string;\n        tomatoA11: string;\n        tomatoA12: string;\n        sandA1: string;\n        sandA2: string;\n        sandA3: string;\n        sandA4: string;\n        sandA5: string;\n        sandA6: string;\n        sandA7: string;\n        sandA8: string;\n        sandA9: string;\n        sandA10: string;\n        sandA11: string;\n        sandA12: string;\n        oliveA1: string;\n        oliveA2: string;\n        oliveA3: string;\n        oliveA4: string;\n        oliveA5: string;\n        oliveA6: string;\n        oliveA7: string;\n        oliveA8: string;\n        oliveA9: string;\n        oliveA10: string;\n        oliveA11: string;\n        oliveA12: string;\n        sageA1: string;\n        sageA2: string;\n        sageA3: string;\n        sageA4: string;\n        sageA5: string;\n        sageA6: string;\n        sageA7: string;\n        sageA8: string;\n        sageA9: string;\n        sageA10: string;\n        sageA11: string;\n        sageA12: string;\n        slateA1: string;\n        slateA2: string;\n        slateA3: string;\n        slateA4: string;\n        slateA5: string;\n        slateA6: string;\n        slateA7: string;\n        slateA8: string;\n        slateA9: string;\n        slateA10: string;\n        slateA11: string;\n        slateA12: string;\n        mauveA1: string;\n        mauveA2: string;\n        mauveA3: string;\n        mauveA4: string;\n        mauveA5: string;\n        mauveA6: string;\n        mauveA7: string;\n        mauveA8: string;\n        mauveA9: string;\n        mauveA10: string;\n        mauveA11: string;\n        mauveA12: string;\n        grayA1: string;\n        grayA2: string;\n        grayA3: string;\n        grayA4: string;\n        grayA5: string;\n        grayA6: string;\n        grayA7: string;\n        grayA8: string;\n        grayA9: string;\n        grayA10: string;\n        grayA11: string;\n        grayA12: string;\n        gold1: string;\n        gold2: string;\n        gold3: string;\n        gold4: string;\n        gold5: string;\n        gold6: string;\n        gold7: string;\n        gold8: string;\n        gold9: string;\n        gold10: string;\n        gold11: string;\n        gold12: string;\n        bronze1: string;\n        bronze2: string;\n        bronze3: string;\n        bronze4: string;\n        bronze5: string;\n        bronze6: string;\n        bronze7: string;\n        bronze8: string;\n        bronze9: string;\n        bronze10: string;\n        bronze11: string;\n        bronze12: string;\n        brown1: string;\n        brown2: string;\n        brown3: string;\n        brown4: string;\n        brown5: string;\n        brown6: string;\n        brown7: string;\n        brown8: string;\n        brown9: string;\n        brown10: string;\n        brown11: string;\n        brown12: string;\n        orange1: string;\n        orange2: string;\n        orange3: string;\n        orange4: string;\n        orange5: string;\n        orange6: string;\n        orange7: string;\n        orange8: string;\n        orange9: string;\n        orange10: string;\n        orange11: string;\n        orange12: string;\n        amber1: string;\n        amber2: string;\n        amber3: string;\n        amber4: string;\n        amber5: string;\n        amber6: string;\n        amber7: string;\n        amber8: string;\n        amber9: string;\n        amber10: string;\n        amber11: string;\n        amber12: string;\n        yellow1: string;\n        yellow2: string;\n        yellow3: string;\n        yellow4: string;\n        yellow5: string;\n        yellow6: string;\n        yellow7: string;\n        yellow8: string;\n        yellow9: string;\n        yellow10: string;\n        yellow11: string;\n        yellow12: string;\n        lime1: string;\n        lime2: string;\n        lime3: string;\n        lime4: string;\n        lime5: string;\n        lime6: string;\n        lime7: string;\n        lime8: string;\n        lime9: string;\n        lime10: string;\n        lime11: string;\n        lime12: string;\n        grass1: string;\n        grass2: string;\n        grass3: string;\n        grass4: string;\n        grass5: string;\n        grass6: string;\n        grass7: string;\n        grass8: string;\n        grass9: string;\n        grass10: string;\n        grass11: string;\n        grass12: string;\n        green1: string;\n        green2: string;\n        green3: string;\n        green4: string;\n        green5: string;\n        green6: string;\n        green7: string;\n        green8: string;\n        green9: string;\n        green10: string;\n        green11: string;\n        green12: string;\n        teal1: string;\n        teal2: string;\n        teal3: string;\n        teal4: string;\n        teal5: string;\n        teal6: string;\n        teal7: string;\n        teal8: string;\n        teal9: string;\n        teal10: string;\n        teal11: string;\n        teal12: string;\n        cyan1: string;\n        cyan2: string;\n        cyan3: string;\n        cyan4: string;\n        cyan5: string;\n        cyan6: string;\n        cyan7: string;\n        cyan8: string;\n        cyan9: string;\n        cyan10: string;\n        cyan11: string;\n        cyan12: string;\n        mint1: string;\n        mint2: string;\n        mint3: string;\n        mint4: string;\n        mint5: string;\n        mint6: string;\n        mint7: string;\n        mint8: string;\n        mint9: string;\n        mint10: string;\n        mint11: string;\n        mint12: string;\n        sky1: string;\n        sky2: string;\n        sky3: string;\n        sky4: string;\n        sky5: string;\n        sky6: string;\n        sky7: string;\n        sky8: string;\n        sky9: string;\n        sky10: string;\n        sky11: string;\n        sky12: string;\n        blue1: string;\n        blue2: string;\n        blue3: string;\n        blue4: string;\n        blue5: string;\n        blue6: string;\n        blue7: string;\n        blue8: string;\n        blue9: string;\n        blue10: string;\n        blue11: string;\n        blue12: string;\n        indigo1: string;\n        indigo2: string;\n        indigo3: string;\n        indigo4: string;\n        indigo5: string;\n        indigo6: string;\n        indigo7: string;\n        indigo8: string;\n        indigo9: string;\n        indigo10: string;\n        indigo11: string;\n        indigo12: string;\n        violet1: string;\n        violet2: string;\n        violet3: string;\n        violet4: string;\n        violet5: string;\n        violet6: string;\n        violet7: string;\n        violet8: string;\n        violet9: string;\n        violet10: string;\n        violet11: string;\n        violet12: string;\n        purple1: string;\n        purple2: string;\n        purple3: string;\n        purple4: string;\n        purple5: string;\n        purple6: string;\n        purple7: string;\n        purple8: string;\n        purple9: string;\n        purple10: string;\n        purple11: string;\n        purple12: string;\n        plum1: string;\n        plum2: string;\n        plum3: string;\n        plum4: string;\n        plum5: string;\n        plum6: string;\n        plum7: string;\n        plum8: string;\n        plum9: string;\n        plum10: string;\n        plum11: string;\n        plum12: string;\n        pink1: string;\n        pink2: string;\n        pink3: string;\n        pink4: string;\n        pink5: string;\n        pink6: string;\n        pink7: string;\n        pink8: string;\n        pink9: string;\n        pink10: string;\n        pink11: string;\n        pink12: string;\n        crimson1: string;\n        crimson2: string;\n        crimson3: string;\n        crimson4: string;\n        crimson5: string;\n        crimson6: string;\n        crimson7: string;\n        crimson8: string;\n        crimson9: string;\n        crimson10: string;\n        crimson11: string;\n        crimson12: string;\n        red1: string;\n        red2: string;\n        red3: string;\n        red4: string;\n        red5: string;\n        red6: string;\n        red7: string;\n        red8: string;\n        red9: string;\n        red10: string;\n        red11: string;\n        red12: string;\n        tomato1: string;\n        tomato2: string;\n        tomato3: string;\n        tomato4: string;\n        tomato5: string;\n        tomato6: string;\n        tomato7: string;\n        tomato8: string;\n        tomato9: string;\n        tomato10: string;\n        tomato11: string;\n        tomato12: string;\n        sand1: string;\n        sand2: string;\n        sand3: string;\n        sand4: string;\n        sand5: string;\n        sand6: string;\n        sand7: string;\n        sand8: string;\n        sand9: string;\n        sand10: string;\n        sand11: string;\n        sand12: string;\n        olive1: string;\n        olive2: string;\n        olive3: string;\n        olive4: string;\n        olive5: string;\n        olive6: string;\n        olive7: string;\n        olive8: string;\n        olive9: string;\n        olive10: string;\n        olive11: string;\n        olive12: string;\n        sage1: string;\n        sage2: string;\n        sage3: string;\n        sage4: string;\n        sage5: string;\n        sage6: string;\n        sage7: string;\n        sage8: string;\n        sage9: string;\n        sage10: string;\n        sage11: string;\n        sage12: string;\n        slate1: string;\n        slate2: string;\n        slate3: string;\n        slate4: string;\n        slate5: string;\n        slate6: string;\n        slate7: string;\n        slate8: string;\n        slate9: string;\n        slate10: string;\n        slate11: string;\n        slate12: string;\n        mauve1: string;\n        mauve2: string;\n        mauve3: string;\n        mauve4: string;\n        mauve5: string;\n        mauve6: string;\n        mauve7: string;\n        mauve8: string;\n        mauve9: string;\n        mauve10: string;\n        mauve11: string;\n        mauve12: string;\n        gray1: string;\n        gray2: string;\n        gray3: string;\n        gray4: string;\n        gray5: string;\n        gray6: string;\n        gray7: string;\n        gray8: string;\n        gray9: string;\n        gray10: string;\n        gray11: string;\n        gray12: string;\n    };\n    fonts: {\n        untitled: string;\n        mono: string;\n    };\n    space: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        5: string;\n        6: string;\n        7: string;\n        8: string;\n        9: string;\n    };\n    sizes: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        5: string;\n        6: string;\n        7: string;\n        8: string;\n        9: string;\n    };\n    fontSizes: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        5: string;\n        6: string;\n        7: string;\n        8: string;\n        9: string;\n    };\n    radii: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        round: string;\n        pill: string;\n    };\n    zIndices: {\n        1: string;\n        2: string;\n        3: string;\n        4: string;\n        max: string;\n    };\n}, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n    p: (value: Stitches.PropertyValue<'padding'>) => {\n        padding: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"padding\">;\n    };\n    pt: (value: Stitches.PropertyValue<'paddingTop'>) => {\n        paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n    };\n    pr: (value: Stitches.PropertyValue<'paddingRight'>) => {\n        paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingRight\">;\n    };\n    pb: (value: Stitches.PropertyValue<'paddingBottom'>) => {\n        paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingBottom\">;\n    };\n    pl: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n        paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n    };\n    px: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n        paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n    };\n    py: (value: Stitches.PropertyValue<'paddingTop'>) => {\n        paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n    };\n    m: (value: Stitches.PropertyValue<'margin'>) => {\n        margin: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"margin\">;\n    };\n    mt: (value: Stitches.PropertyValue<'marginTop'>) => {\n        marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n    };\n    mr: (value: Stitches.PropertyValue<'marginRight'>) => {\n        marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginRight\">;\n    };\n    mb: (value: Stitches.PropertyValue<'marginBottom'>) => {\n        marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginBottom\">;\n    };\n    ml: (value: Stitches.PropertyValue<'marginLeft'>) => {\n        marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n    };\n    mx: (value: Stitches.PropertyValue<'marginLeft'>) => {\n        marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n    };\n    my: (value: Stitches.PropertyValue<'marginTop'>) => {\n        marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n    };\n    ta: (value: Stitches.PropertyValue<'textAlign'>) => {\n        textAlign: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"textAlign\">;\n    };\n    fd: (value: Stitches.PropertyValue<'flexDirection'>) => {\n        flexDirection: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexDirection\">;\n    };\n    fw: (value: Stitches.PropertyValue<'flexWrap'>) => {\n        flexWrap: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexWrap\">;\n    };\n    ai: (value: Stitches.PropertyValue<'alignItems'>) => {\n        alignItems: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignItems\">;\n    };\n    ac: (value: Stitches.PropertyValue<'alignContent'>) => {\n        alignContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignContent\">;\n    };\n    jc: (value: Stitches.PropertyValue<'justifyContent'>) => {\n        justifyContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"justifyContent\">;\n    };\n    as: (value: Stitches.PropertyValue<'alignSelf'>) => {\n        alignSelf: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignSelf\">;\n    };\n    fg: (value: Stitches.PropertyValue<'flexGrow'>) => {\n        flexGrow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexGrow\">;\n    };\n    fs: (value: Stitches.PropertyValue<'flexShrink'>) => {\n        flexShrink: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexShrink\">;\n    };\n    fb: (value: Stitches.PropertyValue<'flexBasis'>) => {\n        flexBasis: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexBasis\">;\n    };\n    bc: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n        backgroundColor: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n    };\n    br: (value: Stitches.PropertyValue<'borderRadius'>) => {\n        borderRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderRadius\">;\n    };\n    btrr: (value: Stitches.PropertyValue<'borderTopRightRadius'>) => {\n        borderTopRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopRightRadius\">;\n    };\n    bbrr: (value: Stitches.PropertyValue<'borderBottomRightRadius'>) => {\n        borderBottomRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomRightRadius\">;\n    };\n    bblr: (value: Stitches.PropertyValue<'borderBottomLeftRadius'>) => {\n        borderBottomLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomLeftRadius\">;\n    };\n    btlr: (value: Stitches.PropertyValue<'borderTopLeftRadius'>) => {\n        borderTopLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopLeftRadius\">;\n    };\n    bs: (value: Stitches.PropertyValue<'boxShadow'>) => {\n        boxShadow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"boxShadow\">;\n    };\n    lh: (value: Stitches.PropertyValue<'lineHeight'>) => {\n        lineHeight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"lineHeight\">;\n    };\n    ox: (value: Stitches.PropertyValue<'overflowX'>) => {\n        overflowX: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowX\">;\n    };\n    oy: (value: Stitches.PropertyValue<'overflowY'>) => {\n        overflowY: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowY\">;\n    };\n    pe: (value: Stitches.PropertyValue<'pointerEvents'>) => {\n        pointerEvents: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"pointerEvents\">;\n    };\n    us: (value: Stitches.PropertyValue<'userSelect'>) => {\n        WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n    };\n    userSelect: (value: Stitches.PropertyValue<'userSelect'>) => {\n        WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n    };\n    size: (value: Stitches.PropertyValue<'width'>) => {\n        width: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n        height: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n    };\n    appearance: (value: Stitches.PropertyValue<'appearance'>) => {\n        WebkitAppearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n        appearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n    };\n    backgroundClip: (value: Stitches.PropertyValue<'backgroundClip'>) => {\n        WebkitBackgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n        backgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n    };\n}>, createTheme: <Argument0 extends string | ({\n    colors?: {\n        hiContrast?: string | number | boolean | undefined;\n        loContrast?: string | number | boolean | undefined;\n        canvas?: string | number | boolean | undefined;\n        panel?: string | number | boolean | undefined;\n        transparentPanel?: string | number | boolean | undefined;\n        shadowLight?: string | number | boolean | undefined;\n        shadowDark?: string | number | boolean | undefined;\n        blackA1?: string | number | boolean | undefined;\n        blackA2?: string | number | boolean | undefined;\n        blackA3?: string | number | boolean | undefined;\n        blackA4?: string | number | boolean | undefined;\n        blackA5?: string | number | boolean | undefined;\n        blackA6?: string | number | boolean | undefined;\n        blackA7?: string | number | boolean | undefined;\n        blackA8?: string | number | boolean | undefined;\n        blackA9?: string | number | boolean | undefined;\n        blackA10?: string | number | boolean | undefined;\n        blackA11?: string | number | boolean | undefined;\n        blackA12?: string | number | boolean | undefined;\n        whiteA1?: string | number | boolean | undefined;\n        whiteA2?: string | number | boolean | undefined;\n        whiteA3?: string | number | boolean | undefined;\n        whiteA4?: string | number | boolean | undefined;\n        whiteA5?: string | number | boolean | undefined;\n        whiteA6?: string | number | boolean | undefined;\n        whiteA7?: string | number | boolean | undefined;\n        whiteA8?: string | number | boolean | undefined;\n        whiteA9?: string | number | boolean | undefined;\n        whiteA10?: string | number | boolean | undefined;\n        whiteA11?: string | number | boolean | undefined;\n        whiteA12?: string | number | boolean | undefined;\n        goldA1?: string | number | boolean | undefined;\n        goldA2?: string | number | boolean | undefined;\n        goldA3?: string | number | boolean | undefined;\n        goldA4?: string | number | boolean | undefined;\n        goldA5?: string | number | boolean | undefined;\n        goldA6?: string | number | boolean | undefined;\n        goldA7?: string | number | boolean | undefined;\n        goldA8?: string | number | boolean | undefined;\n        goldA9?: string | number | boolean | undefined;\n        goldA10?: string | number | boolean | undefined;\n        goldA11?: string | number | boolean | undefined;\n        goldA12?: string | number | boolean | undefined;\n        bronzeA1?: string | number | boolean | undefined;\n        bronzeA2?: string | number | boolean | undefined;\n        bronzeA3?: string | number | boolean | undefined;\n        bronzeA4?: string | number | boolean | undefined;\n        bronzeA5?: string | number | boolean | undefined;\n        bronzeA6?: string | number | boolean | undefined;\n        bronzeA7?: string | number | boolean | undefined;\n        bronzeA8?: string | number | boolean | undefined;\n        bronzeA9?: string | number | boolean | undefined;\n        bronzeA10?: string | number | boolean | undefined;\n        bronzeA11?: string | number | boolean | undefined;\n        bronzeA12?: string | number | boolean | undefined;\n        brownA1?: string | number | boolean | undefined;\n        brownA2?: string | number | boolean | undefined;\n        brownA3?: string | number | boolean | undefined;\n        brownA4?: string | number | boolean | undefined;\n        brownA5?: string | number | boolean | undefined;\n        brownA6?: string | number | boolean | undefined;\n        brownA7?: string | number | boolean | undefined;\n        brownA8?: string | number | boolean | undefined;\n        brownA9?: string | number | boolean | undefined;\n        brownA10?: string | number | boolean | undefined;\n        brownA11?: string | number | boolean | undefined;\n        brownA12?: string | number | boolean | undefined;\n        orangeA1?: string | number | boolean | undefined;\n        orangeA2?: string | number | boolean | undefined;\n        orangeA3?: string | number | boolean | undefined;\n        orangeA4?: string | number | boolean | undefined;\n        orangeA5?: string | number | boolean | undefined;\n        orangeA6?: string | number | boolean | undefined;\n        orangeA7?: string | number | boolean | undefined;\n        orangeA8?: string | number | boolean | undefined;\n        orangeA9?: string | number | boolean | undefined;\n        orangeA10?: string | number | boolean | undefined;\n        orangeA11?: string | number | boolean | undefined;\n        orangeA12?: string | number | boolean | undefined;\n        amberA1?: string | number | boolean | undefined;\n        amberA2?: string | number | boolean | undefined;\n        amberA3?: string | number | boolean | undefined;\n        amberA4?: string | number | boolean | undefined;\n        amberA5?: string | number | boolean | undefined;\n        amberA6?: string | number | boolean | undefined;\n        amberA7?: string | number | boolean | undefined;\n        amberA8?: string | number | boolean | undefined;\n        amberA9?: string | number | boolean | undefined;\n        amberA10?: string | number | boolean | undefined;\n        amberA11?: string | number | boolean | undefined;\n        amberA12?: string | number | boolean | undefined;\n        yellowA1?: string | number | boolean | undefined;\n        yellowA2?: string | number | boolean | undefined;\n        yellowA3?: string | number | boolean | undefined;\n        yellowA4?: string | number | boolean | undefined;\n        yellowA5?: string | number | boolean | undefined;\n        yellowA6?: string | number | boolean | undefined;\n        yellowA7?: string | number | boolean | undefined;\n        yellowA8?: string | number | boolean | undefined;\n        yellowA9?: string | number | boolean | undefined;\n        yellowA10?: string | number | boolean | undefined;\n        yellowA11?: string | number | boolean | undefined;\n        yellowA12?: string | number | boolean | undefined;\n        limeA1?: string | number | boolean | undefined;\n        limeA2?: string | number | boolean | undefined;\n        limeA3?: string | number | boolean | undefined;\n        limeA4?: string | number | boolean | undefined;\n        limeA5?: string | number | boolean | undefined;\n        limeA6?: string | number | boolean | undefined;\n        limeA7?: string | number | boolean | undefined;\n        limeA8?: string | number | boolean | undefined;\n        limeA9?: string | number | boolean | undefined;\n        limeA10?: string | number | boolean | undefined;\n        limeA11?: string | number | boolean | undefined;\n        limeA12?: string | number | boolean | undefined;\n        grassA1?: string | number | boolean | undefined;\n        grassA2?: string | number | boolean | undefined;\n        grassA3?: string | number | boolean | undefined;\n        grassA4?: string | number | boolean | undefined;\n        grassA5?: string | number | boolean | undefined;\n        grassA6?: string | number | boolean | undefined;\n        grassA7?: string | number | boolean | undefined;\n        grassA8?: string | number | boolean | undefined;\n        grassA9?: string | number | boolean | undefined;\n        grassA10?: string | number | boolean | undefined;\n        grassA11?: string | number | boolean | undefined;\n        grassA12?: string | number | boolean | undefined;\n        greenA1?: string | number | boolean | undefined;\n        greenA2?: string | number | boolean | undefined;\n        greenA3?: string | number | boolean | undefined;\n        greenA4?: string | number | boolean | undefined;\n        greenA5?: string | number | boolean | undefined;\n        greenA6?: string | number | boolean | undefined;\n        greenA7?: string | number | boolean | undefined;\n        greenA8?: string | number | boolean | undefined;\n        greenA9?: string | number | boolean | undefined;\n        greenA10?: string | number | boolean | undefined;\n        greenA11?: string | number | boolean | undefined;\n        greenA12?: string | number | boolean | undefined;\n        tealA1?: string | number | boolean | undefined;\n        tealA2?: string | number | boolean | undefined;\n        tealA3?: string | number | boolean | undefined;\n        tealA4?: string | number | boolean | undefined;\n        tealA5?: string | number | boolean | undefined;\n        tealA6?: string | number | boolean | undefined;\n        tealA7?: string | number | boolean | undefined;\n        tealA8?: string | number | boolean | undefined;\n        tealA9?: string | number | boolean | undefined;\n        tealA10?: string | number | boolean | undefined;\n        tealA11?: string | number | boolean | undefined;\n        tealA12?: string | number | boolean | undefined;\n        cyanA1?: string | number | boolean | undefined;\n        cyanA2?: string | number | boolean | undefined;\n        cyanA3?: string | number | boolean | undefined;\n        cyanA4?: string | number | boolean | undefined;\n        cyanA5?: string | number | boolean | undefined;\n        cyanA6?: string | number | boolean | undefined;\n        cyanA7?: string | number | boolean | undefined;\n        cyanA8?: string | number | boolean | undefined;\n        cyanA9?: string | number | boolean | undefined;\n        cyanA10?: string | number | boolean | undefined;\n        cyanA11?: string | number | boolean | undefined;\n        cyanA12?: string | number | boolean | undefined;\n        mintA1?: string | number | boolean | undefined;\n        mintA2?: string | number | boolean | undefined;\n        mintA3?: string | number | boolean | undefined;\n        mintA4?: string | number | boolean | undefined;\n        mintA5?: string | number | boolean | undefined;\n        mintA6?: string | number | boolean | undefined;\n        mintA7?: string | number | boolean | undefined;\n        mintA8?: string | number | boolean | undefined;\n        mintA9?: string | number | boolean | undefined;\n        mintA10?: string | number | boolean | undefined;\n        mintA11?: string | number | boolean | undefined;\n        mintA12?: string | number | boolean | undefined;\n        skyA1?: string | number | boolean | undefined;\n        skyA2?: string | number | boolean | undefined;\n        skyA3?: string | number | boolean | undefined;\n        skyA4?: string | number | boolean | undefined;\n        skyA5?: string | number | boolean | undefined;\n        skyA6?: string | number | boolean | undefined;\n        skyA7?: string | number | boolean | undefined;\n        skyA8?: string | number | boolean | undefined;\n        skyA9?: string | number | boolean | undefined;\n        skyA10?: string | number | boolean | undefined;\n        skyA11?: string | number | boolean | undefined;\n        skyA12?: string | number | boolean | undefined;\n        blueA1?: string | number | boolean | undefined;\n        blueA2?: string | number | boolean | undefined;\n        blueA3?: string | number | boolean | undefined;\n        blueA4?: string | number | boolean | undefined;\n        blueA5?: string | number | boolean | undefined;\n        blueA6?: string | number | boolean | undefined;\n        blueA7?: string | number | boolean | undefined;\n        blueA8?: string | number | boolean | undefined;\n        blueA9?: string | number | boolean | undefined;\n        blueA10?: string | number | boolean | undefined;\n        blueA11?: string | number | boolean | undefined;\n        blueA12?: string | number | boolean | undefined;\n        indigoA1?: string | number | boolean | undefined;\n        indigoA2?: string | number | boolean | undefined;\n        indigoA3?: string | number | boolean | undefined;\n        indigoA4?: string | number | boolean | undefined;\n        indigoA5?: string | number | boolean | undefined;\n        indigoA6?: string | number | boolean | undefined;\n        indigoA7?: string | number | boolean | undefined;\n        indigoA8?: string | number | boolean | undefined;\n        indigoA9?: string | number | boolean | undefined;\n        indigoA10?: string | number | boolean | undefined;\n        indigoA11?: string | number | boolean | undefined;\n        indigoA12?: string | number | boolean | undefined;\n        violetA1?: string | number | boolean | undefined;\n        violetA2?: string | number | boolean | undefined;\n        violetA3?: string | number | boolean | undefined;\n        violetA4?: string | number | boolean | undefined;\n        violetA5?: string | number | boolean | undefined;\n        violetA6?: string | number | boolean | undefined;\n        violetA7?: string | number | boolean | undefined;\n        violetA8?: string | number | boolean | undefined;\n        violetA9?: string | number | boolean | undefined;\n        violetA10?: string | number | boolean | undefined;\n        violetA11?: string | number | boolean | undefined;\n        violetA12?: string | number | boolean | undefined;\n        purpleA1?: string | number | boolean | undefined;\n        purpleA2?: string | number | boolean | undefined;\n        purpleA3?: string | number | boolean | undefined;\n        purpleA4?: string | number | boolean | undefined;\n        purpleA5?: string | number | boolean | undefined;\n        purpleA6?: string | number | boolean | undefined;\n        purpleA7?: string | number | boolean | undefined;\n        purpleA8?: string | number | boolean | undefined;\n        purpleA9?: string | number | boolean | undefined;\n        purpleA10?: string | number | boolean | undefined;\n        purpleA11?: string | number | boolean | undefined;\n        purpleA12?: string | number | boolean | undefined;\n        plumA1?: string | number | boolean | undefined;\n        plumA2?: string | number | boolean | undefined;\n        plumA3?: string | number | boolean | undefined;\n        plumA4?: string | number | boolean | undefined;\n        plumA5?: string | number | boolean | undefined;\n        plumA6?: string | number | boolean | undefined;\n        plumA7?: string | number | boolean | undefined;\n        plumA8?: string | number | boolean | undefined;\n        plumA9?: string | number | boolean | undefined;\n        plumA10?: string | number | boolean | undefined;\n        plumA11?: string | number | boolean | undefined;\n        plumA12?: string | number | boolean | undefined;\n        pinkA1?: string | number | boolean | undefined;\n        pinkA2?: string | number | boolean | undefined;\n        pinkA3?: string | number | boolean | undefined;\n        pinkA4?: string | number | boolean | undefined;\n        pinkA5?: string | number | boolean | undefined;\n        pinkA6?: string | number | boolean | undefined;\n        pinkA7?: string | number | boolean | undefined;\n        pinkA8?: string | number | boolean | undefined;\n        pinkA9?: string | number | boolean | undefined;\n        pinkA10?: string | number | boolean | undefined;\n        pinkA11?: string | number | boolean | undefined;\n        pinkA12?: string | number | boolean | undefined;\n        crimsonA1?: string | number | boolean | undefined;\n        crimsonA2?: string | number | boolean | undefined;\n        crimsonA3?: string | number | boolean | undefined;\n        crimsonA4?: string | number | boolean | undefined;\n        crimsonA5?: string | number | boolean | undefined;\n        crimsonA6?: string | number | boolean | undefined;\n        crimsonA7?: string | number | boolean | undefined;\n        crimsonA8?: string | number | boolean | undefined;\n        crimsonA9?: string | number | boolean | undefined;\n        crimsonA10?: string | number | boolean | undefined;\n        crimsonA11?: string | number | boolean | undefined;\n        crimsonA12?: string | number | boolean | undefined;\n        redA1?: string | number | boolean | undefined;\n        redA2?: string | number | boolean | undefined;\n        redA3?: string | number | boolean | undefined;\n        redA4?: string | number | boolean | undefined;\n        redA5?: string | number | boolean | undefined;\n        redA6?: string | number | boolean | undefined;\n        redA7?: string | number | boolean | undefined;\n        redA8?: string | number | boolean | undefined;\n        redA9?: string | number | boolean | undefined;\n        redA10?: string | number | boolean | undefined;\n        redA11?: string | number | boolean | undefined;\n        redA12?: string | number | boolean | undefined;\n        tomatoA1?: string | number | boolean | undefined;\n        tomatoA2?: string | number | boolean | undefined;\n        tomatoA3?: string | number | boolean | undefined;\n        tomatoA4?: string | number | boolean | undefined;\n        tomatoA5?: string | number | boolean | undefined;\n        tomatoA6?: string | number | boolean | undefined;\n        tomatoA7?: string | number | boolean | undefined;\n        tomatoA8?: string | number | boolean | undefined;\n        tomatoA9?: string | number | boolean | undefined;\n        tomatoA10?: string | number | boolean | undefined;\n        tomatoA11?: string | number | boolean | undefined;\n        tomatoA12?: string | number | boolean | undefined;\n        sandA1?: string | number | boolean | undefined;\n        sandA2?: string | number | boolean | undefined;\n        sandA3?: string | number | boolean | undefined;\n        sandA4?: string | number | boolean | undefined;\n        sandA5?: string | number | boolean | undefined;\n        sandA6?: string | number | boolean | undefined;\n        sandA7?: string | number | boolean | undefined;\n        sandA8?: string | number | boolean | undefined;\n        sandA9?: string | number | boolean | undefined;\n        sandA10?: string | number | boolean | undefined;\n        sandA11?: string | number | boolean | undefined;\n        sandA12?: string | number | boolean | undefined;\n        oliveA1?: string | number | boolean | undefined;\n        oliveA2?: string | number | boolean | undefined;\n        oliveA3?: string | number | boolean | undefined;\n        oliveA4?: string | number | boolean | undefined;\n        oliveA5?: string | number | boolean | undefined;\n        oliveA6?: string | number | boolean | undefined;\n        oliveA7?: string | number | boolean | undefined;\n        oliveA8?: string | number | boolean | undefined;\n        oliveA9?: string | number | boolean | undefined;\n        oliveA10?: string | number | boolean | undefined;\n        oliveA11?: string | number | boolean | undefined;\n        oliveA12?: string | number | boolean | undefined;\n        sageA1?: string | number | boolean | undefined;\n        sageA2?: string | number | boolean | undefined;\n        sageA3?: string | number | boolean | undefined;\n        sageA4?: string | number | boolean | undefined;\n        sageA5?: string | number | boolean | undefined;\n        sageA6?: string | number | boolean | undefined;\n        sageA7?: string | number | boolean | undefined;\n        sageA8?: string | number | boolean | undefined;\n        sageA9?: string | number | boolean | undefined;\n        sageA10?: string | number | boolean | undefined;\n        sageA11?: string | number | boolean | undefined;\n        sageA12?: string | number | boolean | undefined;\n        slateA1?: string | number | boolean | undefined;\n        slateA2?: string | number | boolean | undefined;\n        slateA3?: string | number | boolean | undefined;\n        slateA4?: string | number | boolean | undefined;\n        slateA5?: string | number | boolean | undefined;\n        slateA6?: string | number | boolean | undefined;\n        slateA7?: string | number | boolean | undefined;\n        slateA8?: string | number | boolean | undefined;\n        slateA9?: string | number | boolean | undefined;\n        slateA10?: string | number | boolean | undefined;\n        slateA11?: string | number | boolean | undefined;\n        slateA12?: string | number | boolean | undefined;\n        mauveA1?: string | number | boolean | undefined;\n        mauveA2?: string | number | boolean | undefined;\n        mauveA3?: string | number | boolean | undefined;\n        mauveA4?: string | number | boolean | undefined;\n        mauveA5?: string | number | boolean | undefined;\n        mauveA6?: string | number | boolean | undefined;\n        mauveA7?: string | number | boolean | undefined;\n        mauveA8?: string | number | boolean | undefined;\n        mauveA9?: string | number | boolean | undefined;\n        mauveA10?: string | number | boolean | undefined;\n        mauveA11?: string | number | boolean | undefined;\n        mauveA12?: string | number | boolean | undefined;\n        grayA1?: string | number | boolean | undefined;\n        grayA2?: string | number | boolean | undefined;\n        grayA3?: string | number | boolean | undefined;\n        grayA4?: string | number | boolean | undefined;\n        grayA5?: string | number | boolean | undefined;\n        grayA6?: string | number | boolean | undefined;\n        grayA7?: string | number | boolean | undefined;\n        grayA8?: string | number | boolean | undefined;\n        grayA9?: string | number | boolean | undefined;\n        grayA10?: string | number | boolean | undefined;\n        grayA11?: string | number | boolean | undefined;\n        grayA12?: string | number | boolean | undefined;\n        gold1?: string | number | boolean | undefined;\n        gold2?: string | number | boolean | undefined;\n        gold3?: string | number | boolean | undefined;\n        gold4?: string | number | boolean | undefined;\n        gold5?: string | number | boolean | undefined;\n        gold6?: string | number | boolean | undefined;\n        gold7?: string | number | boolean | undefined;\n        gold8?: string | number | boolean | undefined;\n        gold9?: string | number | boolean | undefined;\n        gold10?: string | number | boolean | undefined;\n        gold11?: string | number | boolean | undefined;\n        gold12?: string | number | boolean | undefined;\n        bronze1?: string | number | boolean | undefined;\n        bronze2?: string | number | boolean | undefined;\n        bronze3?: string | number | boolean | undefined;\n        bronze4?: string | number | boolean | undefined;\n        bronze5?: string | number | boolean | undefined;\n        bronze6?: string | number | boolean | undefined;\n        bronze7?: string | number | boolean | undefined;\n        bronze8?: string | number | boolean | undefined;\n        bronze9?: string | number | boolean | undefined;\n        bronze10?: string | number | boolean | undefined;\n        bronze11?: string | number | boolean | undefined;\n        bronze12?: string | number | boolean | undefined;\n        brown1?: string | number | boolean | undefined;\n        brown2?: string | number | boolean | undefined;\n        brown3?: string | number | boolean | undefined;\n        brown4?: string | number | boolean | undefined;\n        brown5?: string | number | boolean | undefined;\n        brown6?: string | number | boolean | undefined;\n        brown7?: string | number | boolean | undefined;\n        brown8?: string | number | boolean | undefined;\n        brown9?: string | number | boolean | undefined;\n        brown10?: string | number | boolean | undefined;\n        brown11?: string | number | boolean | undefined;\n        brown12?: string | number | boolean | undefined;\n        orange1?: string | number | boolean | undefined;\n        orange2?: string | number | boolean | undefined;\n        orange3?: string | number | boolean | undefined;\n        orange4?: string | number | boolean | undefined;\n        orange5?: string | number | boolean | undefined;\n        orange6?: string | number | boolean | undefined;\n        orange7?: string | number | boolean | undefined;\n        orange8?: string | number | boolean | undefined;\n        orange9?: string | number | boolean | undefined;\n        orange10?: string | number | boolean | undefined;\n        orange11?: string | number | boolean | undefined;\n        orange12?: string | number | boolean | undefined;\n        amber1?: string | number | boolean | undefined;\n        amber2?: string | number | boolean | undefined;\n        amber3?: string | number | boolean | undefined;\n        amber4?: string | number | boolean | undefined;\n        amber5?: string | number | boolean | undefined;\n        amber6?: string | number | boolean | undefined;\n        amber7?: string | number | boolean | undefined;\n        amber8?: string | number | boolean | undefined;\n        amber9?: string | number | boolean | undefined;\n        amber10?: string | number | boolean | undefined;\n        amber11?: string | number | boolean | undefined;\n        amber12?: string | number | boolean | undefined;\n        yellow1?: string | number | boolean | undefined;\n        yellow2?: string | number | boolean | undefined;\n        yellow3?: string | number | boolean | undefined;\n        yellow4?: string | number | boolean | undefined;\n        yellow5?: string | number | boolean | undefined;\n        yellow6?: string | number | boolean | undefined;\n        yellow7?: string | number | boolean | undefined;\n        yellow8?: string | number | boolean | undefined;\n        yellow9?: string | number | boolean | undefined;\n        yellow10?: string | number | boolean | undefined;\n        yellow11?: string | number | boolean | undefined;\n        yellow12?: string | number | boolean | undefined;\n        lime1?: string | number | boolean | undefined;\n        lime2?: string | number | boolean | undefined;\n        lime3?: string | number | boolean | undefined;\n        lime4?: string | number | boolean | undefined;\n        lime5?: string | number | boolean | undefined;\n        lime6?: string | number | boolean | undefined;\n        lime7?: string | number | boolean | undefined;\n        lime8?: string | number | boolean | undefined;\n        lime9?: string | number | boolean | undefined;\n        lime10?: string | number | boolean | undefined;\n        lime11?: string | number | boolean | undefined;\n        lime12?: string | number | boolean | undefined;\n        grass1?: string | number | boolean | undefined;\n        grass2?: string | number | boolean | undefined;\n        grass3?: string | number | boolean | undefined;\n        grass4?: string | number | boolean | undefined;\n        grass5?: string | number | boolean | undefined;\n        grass6?: string | number | boolean | undefined;\n        grass7?: string | number | boolean | undefined;\n        grass8?: string | number | boolean | undefined;\n        grass9?: string | number | boolean | undefined;\n        grass10?: string | number | boolean | undefined;\n        grass11?: string | number | boolean | undefined;\n        grass12?: string | number | boolean | undefined;\n        green1?: string | number | boolean | undefined;\n        green2?: string | number | boolean | undefined;\n        green3?: string | number | boolean | undefined;\n        green4?: string | number | boolean | undefined;\n        green5?: string | number | boolean | undefined;\n        green6?: string | number | boolean | undefined;\n        green7?: string | number | boolean | undefined;\n        green8?: string | number | boolean | undefined;\n        green9?: string | number | boolean | undefined;\n        green10?: string | number | boolean | undefined;\n        green11?: string | number | boolean | undefined;\n        green12?: string | number | boolean | undefined;\n        teal1?: string | number | boolean | undefined;\n        teal2?: string | number | boolean | undefined;\n        teal3?: string | number | boolean | undefined;\n        teal4?: string | number | boolean | undefined;\n        teal5?: string | number | boolean | undefined;\n        teal6?: string | number | boolean | undefined;\n        teal7?: string | number | boolean | undefined;\n        teal8?: string | number | boolean | undefined;\n        teal9?: string | number | boolean | undefined;\n        teal10?: string | number | boolean | undefined;\n        teal11?: string | number | boolean | undefined;\n        teal12?: string | number | boolean | undefined;\n        cyan1?: string | number | boolean | undefined;\n        cyan2?: string | number | boolean | undefined;\n        cyan3?: string | number | boolean | undefined;\n        cyan4?: string | number | boolean | undefined;\n        cyan5?: string | number | boolean | undefined;\n        cyan6?: string | number | boolean | undefined;\n        cyan7?: string | number | boolean | undefined;\n        cyan8?: string | number | boolean | undefined;\n        cyan9?: string | number | boolean | undefined;\n        cyan10?: string | number | boolean | undefined;\n        cyan11?: string | number | boolean | undefined;\n        cyan12?: string | number | boolean | undefined;\n        mint1?: string | number | boolean | undefined;\n        mint2?: string | number | boolean | undefined;\n        mint3?: string | number | boolean | undefined;\n        mint4?: string | number | boolean | undefined;\n        mint5?: string | number | boolean | undefined;\n        mint6?: string | number | boolean | undefined;\n        mint7?: string | number | boolean | undefined;\n        mint8?: string | number | boolean | undefined;\n        mint9?: string | number | boolean | undefined;\n        mint10?: string | number | boolean | undefined;\n        mint11?: string | number | boolean | undefined;\n        mint12?: string | number | boolean | undefined;\n        sky1?: string | number | boolean | undefined;\n        sky2?: string | number | boolean | undefined;\n        sky3?: string | number | boolean | undefined;\n        sky4?: string | number | boolean | undefined;\n        sky5?: string | number | boolean | undefined;\n        sky6?: string | number | boolean | undefined;\n        sky7?: string | number | boolean | undefined;\n        sky8?: string | number | boolean | undefined;\n        sky9?: string | number | boolean | undefined;\n        sky10?: string | number | boolean | undefined;\n        sky11?: string | number | boolean | undefined;\n        sky12?: string | number | boolean | undefined;\n        blue1?: string | number | boolean | undefined;\n        blue2?: string | number | boolean | undefined;\n        blue3?: string | number | boolean | undefined;\n        blue4?: string | number | boolean | undefined;\n        blue5?: string | number | boolean | undefined;\n        blue6?: string | number | boolean | undefined;\n        blue7?: string | number | boolean | undefined;\n        blue8?: string | number | boolean | undefined;\n        blue9?: string | number | boolean | undefined;\n        blue10?: string | number | boolean | undefined;\n        blue11?: string | number | boolean | undefined;\n        blue12?: string | number | boolean | undefined;\n        indigo1?: string | number | boolean | undefined;\n        indigo2?: string | number | boolean | undefined;\n        indigo3?: string | number | boolean | undefined;\n        indigo4?: string | number | boolean | undefined;\n        indigo5?: string | number | boolean | undefined;\n        indigo6?: string | number | boolean | undefined;\n        indigo7?: string | number | boolean | undefined;\n        indigo8?: string | number | boolean | undefined;\n        indigo9?: string | number | boolean | undefined;\n        indigo10?: string | number | boolean | undefined;\n        indigo11?: string | number | boolean | undefined;\n        indigo12?: string | number | boolean | undefined;\n        violet1?: string | number | boolean | undefined;\n        violet2?: string | number | boolean | undefined;\n        violet3?: string | number | boolean | undefined;\n        violet4?: string | number | boolean | undefined;\n        violet5?: string | number | boolean | undefined;\n        violet6?: string | number | boolean | undefined;\n        violet7?: string | number | boolean | undefined;\n        violet8?: string | number | boolean | undefined;\n        violet9?: string | number | boolean | undefined;\n        violet10?: string | number | boolean | undefined;\n        violet11?: string | number | boolean | undefined;\n        violet12?: string | number | boolean | undefined;\n        purple1?: string | number | boolean | undefined;\n        purple2?: string | number | boolean | undefined;\n        purple3?: string | number | boolean | undefined;\n        purple4?: string | number | boolean | undefined;\n        purple5?: string | number | boolean | undefined;\n        purple6?: string | number | boolean | undefined;\n        purple7?: string | number | boolean | undefined;\n        purple8?: string | number | boolean | undefined;\n        purple9?: string | number | boolean | undefined;\n        purple10?: string | number | boolean | undefined;\n        purple11?: string | number | boolean | undefined;\n        purple12?: string | number | boolean | undefined;\n        plum1?: string | number | boolean | undefined;\n        plum2?: string | number | boolean | undefined;\n        plum3?: string | number | boolean | undefined;\n        plum4?: string | number | boolean | undefined;\n        plum5?: string | number | boolean | undefined;\n        plum6?: string | number | boolean | undefined;\n        plum7?: string | number | boolean | undefined;\n        plum8?: string | number | boolean | undefined;\n        plum9?: string | number | boolean | undefined;\n        plum10?: string | number | boolean | undefined;\n        plum11?: string | number | boolean | undefined;\n        plum12?: string | number | boolean | undefined;\n        pink1?: string | number | boolean | undefined;\n        pink2?: string | number | boolean | undefined;\n        pink3?: string | number | boolean | undefined;\n        pink4?: string | number | boolean | undefined;\n        pink5?: string | number | boolean | undefined;\n        pink6?: string | number | boolean | undefined;\n        pink7?: string | number | boolean | undefined;\n        pink8?: string | number | boolean | undefined;\n        pink9?: string | number | boolean | undefined;\n        pink10?: string | number | boolean | undefined;\n        pink11?: string | number | boolean | undefined;\n        pink12?: string | number | boolean | undefined;\n        crimson1?: string | number | boolean | undefined;\n        crimson2?: string | number | boolean | undefined;\n        crimson3?: string | number | boolean | undefined;\n        crimson4?: string | number | boolean | undefined;\n        crimson5?: string | number | boolean | undefined;\n        crimson6?: string | number | boolean | undefined;\n        crimson7?: string | number | boolean | undefined;\n        crimson8?: string | number | boolean | undefined;\n        crimson9?: string | number | boolean | undefined;\n        crimson10?: string | number | boolean | undefined;\n        crimson11?: string | number | boolean | undefined;\n        crimson12?: string | number | boolean | undefined;\n        red1?: string | number | boolean | undefined;\n        red2?: string | number | boolean | undefined;\n        red3?: string | number | boolean | undefined;\n        red4?: string | number | boolean | undefined;\n        red5?: string | number | boolean | undefined;\n        red6?: string | number | boolean | undefined;\n        red7?: string | number | boolean | undefined;\n        red8?: string | number | boolean | undefined;\n        red9?: string | number | boolean | undefined;\n        red10?: string | number | boolean | undefined;\n        red11?: string | number | boolean | undefined;\n        red12?: string | number | boolean | undefined;\n        tomato1?: string | number | boolean | undefined;\n        tomato2?: string | number | boolean | undefined;\n        tomato3?: string | number | boolean | undefined;\n        tomato4?: string | number | boolean | undefined;\n        tomato5?: string | number | boolean | undefined;\n        tomato6?: string | number | boolean | undefined;\n        tomato7?: string | number | boolean | undefined;\n        tomato8?: string | number | boolean | undefined;\n        tomato9?: string | number | boolean | undefined;\n        tomato10?: string | number | boolean | undefined;\n        tomato11?: string | number | boolean | undefined;\n        tomato12?: string | number | boolean | undefined;\n        sand1?: string | number | boolean | undefined;\n        sand2?: string | number | boolean | undefined;\n        sand3?: string | number | boolean | undefined;\n        sand4?: string | number | boolean | undefined;\n        sand5?: string | number | boolean | undefined;\n        sand6?: string | number | boolean | undefined;\n        sand7?: string | number | boolean | undefined;\n        sand8?: string | number | boolean | undefined;\n        sand9?: string | number | boolean | undefined;\n        sand10?: string | number | boolean | undefined;\n        sand11?: string | number | boolean | undefined;\n        sand12?: string | number | boolean | undefined;\n        olive1?: string | number | boolean | undefined;\n        olive2?: string | number | boolean | undefined;\n        olive3?: string | number | boolean | undefined;\n        olive4?: string | number | boolean | undefined;\n        olive5?: string | number | boolean | undefined;\n        olive6?: string | number | boolean | undefined;\n        olive7?: string | number | boolean | undefined;\n        olive8?: string | number | boolean | undefined;\n        olive9?: string | number | boolean | undefined;\n        olive10?: string | number | boolean | undefined;\n        olive11?: string | number | boolean | undefined;\n        olive12?: string | number | boolean | undefined;\n        sage1?: string | number | boolean | undefined;\n        sage2?: string | number | boolean | undefined;\n        sage3?: string | number | boolean | undefined;\n        sage4?: string | number | boolean | undefined;\n        sage5?: string | number | boolean | undefined;\n        sage6?: string | number | boolean | undefined;\n        sage7?: string | number | boolean | undefined;\n        sage8?: string | number | boolean | undefined;\n        sage9?: string | number | boolean | undefined;\n        sage10?: string | number | boolean | undefined;\n        sage11?: string | number | boolean | undefined;\n        sage12?: string | number | boolean | undefined;\n        slate1?: string | number | boolean | undefined;\n        slate2?: string | number | boolean | undefined;\n        slate3?: string | number | boolean | undefined;\n        slate4?: string | number | boolean | undefined;\n        slate5?: string | number | boolean | undefined;\n        slate6?: string | number | boolean | undefined;\n        slate7?: string | number | boolean | undefined;\n        slate8?: string | number | boolean | undefined;\n        slate9?: string | number | boolean | undefined;\n        slate10?: string | number | boolean | undefined;\n        slate11?: string | number | boolean | undefined;\n        slate12?: string | number | boolean | undefined;\n        mauve1?: string | number | boolean | undefined;\n        mauve2?: string | number | boolean | undefined;\n        mauve3?: string | number | boolean | undefined;\n        mauve4?: string | number | boolean | undefined;\n        mauve5?: string | number | boolean | undefined;\n        mauve6?: string | number | boolean | undefined;\n        mauve7?: string | number | boolean | undefined;\n        mauve8?: string | number | boolean | undefined;\n        mauve9?: string | number | boolean | undefined;\n        mauve10?: string | number | boolean | undefined;\n        mauve11?: string | number | boolean | undefined;\n        mauve12?: string | number | boolean | undefined;\n        gray1?: string | number | boolean | undefined;\n        gray2?: string | number | boolean | undefined;\n        gray3?: string | number | boolean | undefined;\n        gray4?: string | number | boolean | undefined;\n        gray5?: string | number | boolean | undefined;\n        gray6?: string | number | boolean | undefined;\n        gray7?: string | number | boolean | undefined;\n        gray8?: string | number | boolean | undefined;\n        gray9?: string | number | boolean | undefined;\n        gray10?: string | number | boolean | undefined;\n        gray11?: string | number | boolean | undefined;\n        gray12?: string | number | boolean | undefined;\n    } | undefined;\n    fonts?: {\n        untitled?: string | number | boolean | undefined;\n        mono?: string | number | boolean | undefined;\n    } | undefined;\n    space?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        5?: string | number | boolean | undefined;\n        6?: string | number | boolean | undefined;\n        7?: string | number | boolean | undefined;\n        8?: string | number | boolean | undefined;\n        9?: string | number | boolean | undefined;\n    } | undefined;\n    sizes?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        5?: string | number | boolean | undefined;\n        6?: string | number | boolean | undefined;\n        7?: string | number | boolean | undefined;\n        8?: string | number | boolean | undefined;\n        9?: string | number | boolean | undefined;\n    } | undefined;\n    fontSizes?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        5?: string | number | boolean | undefined;\n        6?: string | number | boolean | undefined;\n        7?: string | number | boolean | undefined;\n        8?: string | number | boolean | undefined;\n        9?: string | number | boolean | undefined;\n    } | undefined;\n    radii?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        round?: string | number | boolean | undefined;\n        pill?: string | number | boolean | undefined;\n    } | undefined;\n    zIndices?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        max?: string | number | boolean | undefined;\n    } | undefined;\n} & {\n    [x: string]: {\n        [x: string]: string | number | boolean;\n        [x: number]: string | number | boolean;\n    };\n}), Argument1 extends string | ({\n    colors?: {\n        hiContrast?: string | number | boolean | undefined;\n        loContrast?: string | number | boolean | undefined;\n        canvas?: string | number | boolean | undefined;\n        panel?: string | number | boolean | undefined;\n        transparentPanel?: string | number | boolean | undefined;\n        shadowLight?: string | number | boolean | undefined;\n        shadowDark?: string | number | boolean | undefined;\n        blackA1?: string | number | boolean | undefined;\n        blackA2?: string | number | boolean | undefined;\n        blackA3?: string | number | boolean | undefined;\n        blackA4?: string | number | boolean | undefined;\n        blackA5?: string | number | boolean | undefined;\n        blackA6?: string | number | boolean | undefined;\n        blackA7?: string | number | boolean | undefined;\n        blackA8?: string | number | boolean | undefined;\n        blackA9?: string | number | boolean | undefined;\n        blackA10?: string | number | boolean | undefined;\n        blackA11?: string | number | boolean | undefined;\n        blackA12?: string | number | boolean | undefined;\n        whiteA1?: string | number | boolean | undefined;\n        whiteA2?: string | number | boolean | undefined;\n        whiteA3?: string | number | boolean | undefined;\n        whiteA4?: string | number | boolean | undefined;\n        whiteA5?: string | number | boolean | undefined;\n        whiteA6?: string | number | boolean | undefined;\n        whiteA7?: string | number | boolean | undefined;\n        whiteA8?: string | number | boolean | undefined;\n        whiteA9?: string | number | boolean | undefined;\n        whiteA10?: string | number | boolean | undefined;\n        whiteA11?: string | number | boolean | undefined;\n        whiteA12?: string | number | boolean | undefined;\n        goldA1?: string | number | boolean | undefined;\n        goldA2?: string | number | boolean | undefined;\n        goldA3?: string | number | boolean | undefined;\n        goldA4?: string | number | boolean | undefined;\n        goldA5?: string | number | boolean | undefined;\n        goldA6?: string | number | boolean | undefined;\n        goldA7?: string | number | boolean | undefined;\n        goldA8?: string | number | boolean | undefined;\n        goldA9?: string | number | boolean | undefined;\n        goldA10?: string | number | boolean | undefined;\n        goldA11?: string | number | boolean | undefined;\n        goldA12?: string | number | boolean | undefined;\n        bronzeA1?: string | number | boolean | undefined;\n        bronzeA2?: string | number | boolean | undefined;\n        bronzeA3?: string | number | boolean | undefined;\n        bronzeA4?: string | number | boolean | undefined;\n        bronzeA5?: string | number | boolean | undefined;\n        bronzeA6?: string | number | boolean | undefined;\n        bronzeA7?: string | number | boolean | undefined;\n        bronzeA8?: string | number | boolean | undefined;\n        bronzeA9?: string | number | boolean | undefined;\n        bronzeA10?: string | number | boolean | undefined;\n        bronzeA11?: string | number | boolean | undefined;\n        bronzeA12?: string | number | boolean | undefined;\n        brownA1?: string | number | boolean | undefined;\n        brownA2?: string | number | boolean | undefined;\n        brownA3?: string | number | boolean | undefined;\n        brownA4?: string | number | boolean | undefined;\n        brownA5?: string | number | boolean | undefined;\n        brownA6?: string | number | boolean | undefined;\n        brownA7?: string | number | boolean | undefined;\n        brownA8?: string | number | boolean | undefined;\n        brownA9?: string | number | boolean | undefined;\n        brownA10?: string | number | boolean | undefined;\n        brownA11?: string | number | boolean | undefined;\n        brownA12?: string | number | boolean | undefined;\n        orangeA1?: string | number | boolean | undefined;\n        orangeA2?: string | number | boolean | undefined;\n        orangeA3?: string | number | boolean | undefined;\n        orangeA4?: string | number | boolean | undefined;\n        orangeA5?: string | number | boolean | undefined;\n        orangeA6?: string | number | boolean | undefined;\n        orangeA7?: string | number | boolean | undefined;\n        orangeA8?: string | number | boolean | undefined;\n        orangeA9?: string | number | boolean | undefined;\n        orangeA10?: string | number | boolean | undefined;\n        orangeA11?: string | number | boolean | undefined;\n        orangeA12?: string | number | boolean | undefined;\n        amberA1?: string | number | boolean | undefined;\n        amberA2?: string | number | boolean | undefined;\n        amberA3?: string | number | boolean | undefined;\n        amberA4?: string | number | boolean | undefined;\n        amberA5?: string | number | boolean | undefined;\n        amberA6?: string | number | boolean | undefined;\n        amberA7?: string | number | boolean | undefined;\n        amberA8?: string | number | boolean | undefined;\n        amberA9?: string | number | boolean | undefined;\n        amberA10?: string | number | boolean | undefined;\n        amberA11?: string | number | boolean | undefined;\n        amberA12?: string | number | boolean | undefined;\n        yellowA1?: string | number | boolean | undefined;\n        yellowA2?: string | number | boolean | undefined;\n        yellowA3?: string | number | boolean | undefined;\n        yellowA4?: string | number | boolean | undefined;\n        yellowA5?: string | number | boolean | undefined;\n        yellowA6?: string | number | boolean | undefined;\n        yellowA7?: string | number | boolean | undefined;\n        yellowA8?: string | number | boolean | undefined;\n        yellowA9?: string | number | boolean | undefined;\n        yellowA10?: string | number | boolean | undefined;\n        yellowA11?: string | number | boolean | undefined;\n        yellowA12?: string | number | boolean | undefined;\n        limeA1?: string | number | boolean | undefined;\n        limeA2?: string | number | boolean | undefined;\n        limeA3?: string | number | boolean | undefined;\n        limeA4?: string | number | boolean | undefined;\n        limeA5?: string | number | boolean | undefined;\n        limeA6?: string | number | boolean | undefined;\n        limeA7?: string | number | boolean | undefined;\n        limeA8?: string | number | boolean | undefined;\n        limeA9?: string | number | boolean | undefined;\n        limeA10?: string | number | boolean | undefined;\n        limeA11?: string | number | boolean | undefined;\n        limeA12?: string | number | boolean | undefined;\n        grassA1?: string | number | boolean | undefined;\n        grassA2?: string | number | boolean | undefined;\n        grassA3?: string | number | boolean | undefined;\n        grassA4?: string | number | boolean | undefined;\n        grassA5?: string | number | boolean | undefined;\n        grassA6?: string | number | boolean | undefined;\n        grassA7?: string | number | boolean | undefined;\n        grassA8?: string | number | boolean | undefined;\n        grassA9?: string | number | boolean | undefined;\n        grassA10?: string | number | boolean | undefined;\n        grassA11?: string | number | boolean | undefined;\n        grassA12?: string | number | boolean | undefined;\n        greenA1?: string | number | boolean | undefined;\n        greenA2?: string | number | boolean | undefined;\n        greenA3?: string | number | boolean | undefined;\n        greenA4?: string | number | boolean | undefined;\n        greenA5?: string | number | boolean | undefined;\n        greenA6?: string | number | boolean | undefined;\n        greenA7?: string | number | boolean | undefined;\n        greenA8?: string | number | boolean | undefined;\n        greenA9?: string | number | boolean | undefined;\n        greenA10?: string | number | boolean | undefined;\n        greenA11?: string | number | boolean | undefined;\n        greenA12?: string | number | boolean | undefined;\n        tealA1?: string | number | boolean | undefined;\n        tealA2?: string | number | boolean | undefined;\n        tealA3?: string | number | boolean | undefined;\n        tealA4?: string | number | boolean | undefined;\n        tealA5?: string | number | boolean | undefined;\n        tealA6?: string | number | boolean | undefined;\n        tealA7?: string | number | boolean | undefined;\n        tealA8?: string | number | boolean | undefined;\n        tealA9?: string | number | boolean | undefined;\n        tealA10?: string | number | boolean | undefined;\n        tealA11?: string | number | boolean | undefined;\n        tealA12?: string | number | boolean | undefined;\n        cyanA1?: string | number | boolean | undefined;\n        cyanA2?: string | number | boolean | undefined;\n        cyanA3?: string | number | boolean | undefined;\n        cyanA4?: string | number | boolean | undefined;\n        cyanA5?: string | number | boolean | undefined;\n        cyanA6?: string | number | boolean | undefined;\n        cyanA7?: string | number | boolean | undefined;\n        cyanA8?: string | number | boolean | undefined;\n        cyanA9?: string | number | boolean | undefined;\n        cyanA10?: string | number | boolean | undefined;\n        cyanA11?: string | number | boolean | undefined;\n        cyanA12?: string | number | boolean | undefined;\n        mintA1?: string | number | boolean | undefined;\n        mintA2?: string | number | boolean | undefined;\n        mintA3?: string | number | boolean | undefined;\n        mintA4?: string | number | boolean | undefined;\n        mintA5?: string | number | boolean | undefined;\n        mintA6?: string | number | boolean | undefined;\n        mintA7?: string | number | boolean | undefined;\n        mintA8?: string | number | boolean | undefined;\n        mintA9?: string | number | boolean | undefined;\n        mintA10?: string | number | boolean | undefined;\n        mintA11?: string | number | boolean | undefined;\n        mintA12?: string | number | boolean | undefined;\n        skyA1?: string | number | boolean | undefined;\n        skyA2?: string | number | boolean | undefined;\n        skyA3?: string | number | boolean | undefined;\n        skyA4?: string | number | boolean | undefined;\n        skyA5?: string | number | boolean | undefined;\n        skyA6?: string | number | boolean | undefined;\n        skyA7?: string | number | boolean | undefined;\n        skyA8?: string | number | boolean | undefined;\n        skyA9?: string | number | boolean | undefined;\n        skyA10?: string | number | boolean | undefined;\n        skyA11?: string | number | boolean | undefined;\n        skyA12?: string | number | boolean | undefined;\n        blueA1?: string | number | boolean | undefined;\n        blueA2?: string | number | boolean | undefined;\n        blueA3?: string | number | boolean | undefined;\n        blueA4?: string | number | boolean | undefined;\n        blueA5?: string | number | boolean | undefined;\n        blueA6?: string | number | boolean | undefined;\n        blueA7?: string | number | boolean | undefined;\n        blueA8?: string | number | boolean | undefined;\n        blueA9?: string | number | boolean | undefined;\n        blueA10?: string | number | boolean | undefined;\n        blueA11?: string | number | boolean | undefined;\n        blueA12?: string | number | boolean | undefined;\n        indigoA1?: string | number | boolean | undefined;\n        indigoA2?: string | number | boolean | undefined;\n        indigoA3?: string | number | boolean | undefined;\n        indigoA4?: string | number | boolean | undefined;\n        indigoA5?: string | number | boolean | undefined;\n        indigoA6?: string | number | boolean | undefined;\n        indigoA7?: string | number | boolean | undefined;\n        indigoA8?: string | number | boolean | undefined;\n        indigoA9?: string | number | boolean | undefined;\n        indigoA10?: string | number | boolean | undefined;\n        indigoA11?: string | number | boolean | undefined;\n        indigoA12?: string | number | boolean | undefined;\n        violetA1?: string | number | boolean | undefined;\n        violetA2?: string | number | boolean | undefined;\n        violetA3?: string | number | boolean | undefined;\n        violetA4?: string | number | boolean | undefined;\n        violetA5?: string | number | boolean | undefined;\n        violetA6?: string | number | boolean | undefined;\n        violetA7?: string | number | boolean | undefined;\n        violetA8?: string | number | boolean | undefined;\n        violetA9?: string | number | boolean | undefined;\n        violetA10?: string | number | boolean | undefined;\n        violetA11?: string | number | boolean | undefined;\n        violetA12?: string | number | boolean | undefined;\n        purpleA1?: string | number | boolean | undefined;\n        purpleA2?: string | number | boolean | undefined;\n        purpleA3?: string | number | boolean | undefined;\n        purpleA4?: string | number | boolean | undefined;\n        purpleA5?: string | number | boolean | undefined;\n        purpleA6?: string | number | boolean | undefined;\n        purpleA7?: string | number | boolean | undefined;\n        purpleA8?: string | number | boolean | undefined;\n        purpleA9?: string | number | boolean | undefined;\n        purpleA10?: string | number | boolean | undefined;\n        purpleA11?: string | number | boolean | undefined;\n        purpleA12?: string | number | boolean | undefined;\n        plumA1?: string | number | boolean | undefined;\n        plumA2?: string | number | boolean | undefined;\n        plumA3?: string | number | boolean | undefined;\n        plumA4?: string | number | boolean | undefined;\n        plumA5?: string | number | boolean | undefined;\n        plumA6?: string | number | boolean | undefined;\n        plumA7?: string | number | boolean | undefined;\n        plumA8?: string | number | boolean | undefined;\n        plumA9?: string | number | boolean | undefined;\n        plumA10?: string | number | boolean | undefined;\n        plumA11?: string | number | boolean | undefined;\n        plumA12?: string | number | boolean | undefined;\n        pinkA1?: string | number | boolean | undefined;\n        pinkA2?: string | number | boolean | undefined;\n        pinkA3?: string | number | boolean | undefined;\n        pinkA4?: string | number | boolean | undefined;\n        pinkA5?: string | number | boolean | undefined;\n        pinkA6?: string | number | boolean | undefined;\n        pinkA7?: string | number | boolean | undefined;\n        pinkA8?: string | number | boolean | undefined;\n        pinkA9?: string | number | boolean | undefined;\n        pinkA10?: string | number | boolean | undefined;\n        pinkA11?: string | number | boolean | undefined;\n        pinkA12?: string | number | boolean | undefined;\n        crimsonA1?: string | number | boolean | undefined;\n        crimsonA2?: string | number | boolean | undefined;\n        crimsonA3?: string | number | boolean | undefined;\n        crimsonA4?: string | number | boolean | undefined;\n        crimsonA5?: string | number | boolean | undefined;\n        crimsonA6?: string | number | boolean | undefined;\n        crimsonA7?: string | number | boolean | undefined;\n        crimsonA8?: string | number | boolean | undefined;\n        crimsonA9?: string | number | boolean | undefined;\n        crimsonA10?: string | number | boolean | undefined;\n        crimsonA11?: string | number | boolean | undefined;\n        crimsonA12?: string | number | boolean | undefined;\n        redA1?: string | number | boolean | undefined;\n        redA2?: string | number | boolean | undefined;\n        redA3?: string | number | boolean | undefined;\n        redA4?: string | number | boolean | undefined;\n        redA5?: string | number | boolean | undefined;\n        redA6?: string | number | boolean | undefined;\n        redA7?: string | number | boolean | undefined;\n        redA8?: string | number | boolean | undefined;\n        redA9?: string | number | boolean | undefined;\n        redA10?: string | number | boolean | undefined;\n        redA11?: string | number | boolean | undefined;\n        redA12?: string | number | boolean | undefined;\n        tomatoA1?: string | number | boolean | undefined;\n        tomatoA2?: string | number | boolean | undefined;\n        tomatoA3?: string | number | boolean | undefined;\n        tomatoA4?: string | number | boolean | undefined;\n        tomatoA5?: string | number | boolean | undefined;\n        tomatoA6?: string | number | boolean | undefined;\n        tomatoA7?: string | number | boolean | undefined;\n        tomatoA8?: string | number | boolean | undefined;\n        tomatoA9?: string | number | boolean | undefined;\n        tomatoA10?: string | number | boolean | undefined;\n        tomatoA11?: string | number | boolean | undefined;\n        tomatoA12?: string | number | boolean | undefined;\n        sandA1?: string | number | boolean | undefined;\n        sandA2?: string | number | boolean | undefined;\n        sandA3?: string | number | boolean | undefined;\n        sandA4?: string | number | boolean | undefined;\n        sandA5?: string | number | boolean | undefined;\n        sandA6?: string | number | boolean | undefined;\n        sandA7?: string | number | boolean | undefined;\n        sandA8?: string | number | boolean | undefined;\n        sandA9?: string | number | boolean | undefined;\n        sandA10?: string | number | boolean | undefined;\n        sandA11?: string | number | boolean | undefined;\n        sandA12?: string | number | boolean | undefined;\n        oliveA1?: string | number | boolean | undefined;\n        oliveA2?: string | number | boolean | undefined;\n        oliveA3?: string | number | boolean | undefined;\n        oliveA4?: string | number | boolean | undefined;\n        oliveA5?: string | number | boolean | undefined;\n        oliveA6?: string | number | boolean | undefined;\n        oliveA7?: string | number | boolean | undefined;\n        oliveA8?: string | number | boolean | undefined;\n        oliveA9?: string | number | boolean | undefined;\n        oliveA10?: string | number | boolean | undefined;\n        oliveA11?: string | number | boolean | undefined;\n        oliveA12?: string | number | boolean | undefined;\n        sageA1?: string | number | boolean | undefined;\n        sageA2?: string | number | boolean | undefined;\n        sageA3?: string | number | boolean | undefined;\n        sageA4?: string | number | boolean | undefined;\n        sageA5?: string | number | boolean | undefined;\n        sageA6?: string | number | boolean | undefined;\n        sageA7?: string | number | boolean | undefined;\n        sageA8?: string | number | boolean | undefined;\n        sageA9?: string | number | boolean | undefined;\n        sageA10?: string | number | boolean | undefined;\n        sageA11?: string | number | boolean | undefined;\n        sageA12?: string | number | boolean | undefined;\n        slateA1?: string | number | boolean | undefined;\n        slateA2?: string | number | boolean | undefined;\n        slateA3?: string | number | boolean | undefined;\n        slateA4?: string | number | boolean | undefined;\n        slateA5?: string | number | boolean | undefined;\n        slateA6?: string | number | boolean | undefined;\n        slateA7?: string | number | boolean | undefined;\n        slateA8?: string | number | boolean | undefined;\n        slateA9?: string | number | boolean | undefined;\n        slateA10?: string | number | boolean | undefined;\n        slateA11?: string | number | boolean | undefined;\n        slateA12?: string | number | boolean | undefined;\n        mauveA1?: string | number | boolean | undefined;\n        mauveA2?: string | number | boolean | undefined;\n        mauveA3?: string | number | boolean | undefined;\n        mauveA4?: string | number | boolean | undefined;\n        mauveA5?: string | number | boolean | undefined;\n        mauveA6?: string | number | boolean | undefined;\n        mauveA7?: string | number | boolean | undefined;\n        mauveA8?: string | number | boolean | undefined;\n        mauveA9?: string | number | boolean | undefined;\n        mauveA10?: string | number | boolean | undefined;\n        mauveA11?: string | number | boolean | undefined;\n        mauveA12?: string | number | boolean | undefined;\n        grayA1?: string | number | boolean | undefined;\n        grayA2?: string | number | boolean | undefined;\n        grayA3?: string | number | boolean | undefined;\n        grayA4?: string | number | boolean | undefined;\n        grayA5?: string | number | boolean | undefined;\n        grayA6?: string | number | boolean | undefined;\n        grayA7?: string | number | boolean | undefined;\n        grayA8?: string | number | boolean | undefined;\n        grayA9?: string | number | boolean | undefined;\n        grayA10?: string | number | boolean | undefined;\n        grayA11?: string | number | boolean | undefined;\n        grayA12?: string | number | boolean | undefined;\n        gold1?: string | number | boolean | undefined;\n        gold2?: string | number | boolean | undefined;\n        gold3?: string | number | boolean | undefined;\n        gold4?: string | number | boolean | undefined;\n        gold5?: string | number | boolean | undefined;\n        gold6?: string | number | boolean | undefined;\n        gold7?: string | number | boolean | undefined;\n        gold8?: string | number | boolean | undefined;\n        gold9?: string | number | boolean | undefined;\n        gold10?: string | number | boolean | undefined;\n        gold11?: string | number | boolean | undefined;\n        gold12?: string | number | boolean | undefined;\n        bronze1?: string | number | boolean | undefined;\n        bronze2?: string | number | boolean | undefined;\n        bronze3?: string | number | boolean | undefined;\n        bronze4?: string | number | boolean | undefined;\n        bronze5?: string | number | boolean | undefined;\n        bronze6?: string | number | boolean | undefined;\n        bronze7?: string | number | boolean | undefined;\n        bronze8?: string | number | boolean | undefined;\n        bronze9?: string | number | boolean | undefined;\n        bronze10?: string | number | boolean | undefined;\n        bronze11?: string | number | boolean | undefined;\n        bronze12?: string | number | boolean | undefined;\n        brown1?: string | number | boolean | undefined;\n        brown2?: string | number | boolean | undefined;\n        brown3?: string | number | boolean | undefined;\n        brown4?: string | number | boolean | undefined;\n        brown5?: string | number | boolean | undefined;\n        brown6?: string | number | boolean | undefined;\n        brown7?: string | number | boolean | undefined;\n        brown8?: string | number | boolean | undefined;\n        brown9?: string | number | boolean | undefined;\n        brown10?: string | number | boolean | undefined;\n        brown11?: string | number | boolean | undefined;\n        brown12?: string | number | boolean | undefined;\n        orange1?: string | number | boolean | undefined;\n        orange2?: string | number | boolean | undefined;\n        orange3?: string | number | boolean | undefined;\n        orange4?: string | number | boolean | undefined;\n        orange5?: string | number | boolean | undefined;\n        orange6?: string | number | boolean | undefined;\n        orange7?: string | number | boolean | undefined;\n        orange8?: string | number | boolean | undefined;\n        orange9?: string | number | boolean | undefined;\n        orange10?: string | number | boolean | undefined;\n        orange11?: string | number | boolean | undefined;\n        orange12?: string | number | boolean | undefined;\n        amber1?: string | number | boolean | undefined;\n        amber2?: string | number | boolean | undefined;\n        amber3?: string | number | boolean | undefined;\n        amber4?: string | number | boolean | undefined;\n        amber5?: string | number | boolean | undefined;\n        amber6?: string | number | boolean | undefined;\n        amber7?: string | number | boolean | undefined;\n        amber8?: string | number | boolean | undefined;\n        amber9?: string | number | boolean | undefined;\n        amber10?: string | number | boolean | undefined;\n        amber11?: string | number | boolean | undefined;\n        amber12?: string | number | boolean | undefined;\n        yellow1?: string | number | boolean | undefined;\n        yellow2?: string | number | boolean | undefined;\n        yellow3?: string | number | boolean | undefined;\n        yellow4?: string | number | boolean | undefined;\n        yellow5?: string | number | boolean | undefined;\n        yellow6?: string | number | boolean | undefined;\n        yellow7?: string | number | boolean | undefined;\n        yellow8?: string | number | boolean | undefined;\n        yellow9?: string | number | boolean | undefined;\n        yellow10?: string | number | boolean | undefined;\n        yellow11?: string | number | boolean | undefined;\n        yellow12?: string | number | boolean | undefined;\n        lime1?: string | number | boolean | undefined;\n        lime2?: string | number | boolean | undefined;\n        lime3?: string | number | boolean | undefined;\n        lime4?: string | number | boolean | undefined;\n        lime5?: string | number | boolean | undefined;\n        lime6?: string | number | boolean | undefined;\n        lime7?: string | number | boolean | undefined;\n        lime8?: string | number | boolean | undefined;\n        lime9?: string | number | boolean | undefined;\n        lime10?: string | number | boolean | undefined;\n        lime11?: string | number | boolean | undefined;\n        lime12?: string | number | boolean | undefined;\n        grass1?: string | number | boolean | undefined;\n        grass2?: string | number | boolean | undefined;\n        grass3?: string | number | boolean | undefined;\n        grass4?: string | number | boolean | undefined;\n        grass5?: string | number | boolean | undefined;\n        grass6?: string | number | boolean | undefined;\n        grass7?: string | number | boolean | undefined;\n        grass8?: string | number | boolean | undefined;\n        grass9?: string | number | boolean | undefined;\n        grass10?: string | number | boolean | undefined;\n        grass11?: string | number | boolean | undefined;\n        grass12?: string | number | boolean | undefined;\n        green1?: string | number | boolean | undefined;\n        green2?: string | number | boolean | undefined;\n        green3?: string | number | boolean | undefined;\n        green4?: string | number | boolean | undefined;\n        green5?: string | number | boolean | undefined;\n        green6?: string | number | boolean | undefined;\n        green7?: string | number | boolean | undefined;\n        green8?: string | number | boolean | undefined;\n        green9?: string | number | boolean | undefined;\n        green10?: string | number | boolean | undefined;\n        green11?: string | number | boolean | undefined;\n        green12?: string | number | boolean | undefined;\n        teal1?: string | number | boolean | undefined;\n        teal2?: string | number | boolean | undefined;\n        teal3?: string | number | boolean | undefined;\n        teal4?: string | number | boolean | undefined;\n        teal5?: string | number | boolean | undefined;\n        teal6?: string | number | boolean | undefined;\n        teal7?: string | number | boolean | undefined;\n        teal8?: string | number | boolean | undefined;\n        teal9?: string | number | boolean | undefined;\n        teal10?: string | number | boolean | undefined;\n        teal11?: string | number | boolean | undefined;\n        teal12?: string | number | boolean | undefined;\n        cyan1?: string | number | boolean | undefined;\n        cyan2?: string | number | boolean | undefined;\n        cyan3?: string | number | boolean | undefined;\n        cyan4?: string | number | boolean | undefined;\n        cyan5?: string | number | boolean | undefined;\n        cyan6?: string | number | boolean | undefined;\n        cyan7?: string | number | boolean | undefined;\n        cyan8?: string | number | boolean | undefined;\n        cyan9?: string | number | boolean | undefined;\n        cyan10?: string | number | boolean | undefined;\n        cyan11?: string | number | boolean | undefined;\n        cyan12?: string | number | boolean | undefined;\n        mint1?: string | number | boolean | undefined;\n        mint2?: string | number | boolean | undefined;\n        mint3?: string | number | boolean | undefined;\n        mint4?: string | number | boolean | undefined;\n        mint5?: string | number | boolean | undefined;\n        mint6?: string | number | boolean | undefined;\n        mint7?: string | number | boolean | undefined;\n        mint8?: string | number | boolean | undefined;\n        mint9?: string | number | boolean | undefined;\n        mint10?: string | number | boolean | undefined;\n        mint11?: string | number | boolean | undefined;\n        mint12?: string | number | boolean | undefined;\n        sky1?: string | number | boolean | undefined;\n        sky2?: string | number | boolean | undefined;\n        sky3?: string | number | boolean | undefined;\n        sky4?: string | number | boolean | undefined;\n        sky5?: string | number | boolean | undefined;\n        sky6?: string | number | boolean | undefined;\n        sky7?: string | number | boolean | undefined;\n        sky8?: string | number | boolean | undefined;\n        sky9?: string | number | boolean | undefined;\n        sky10?: string | number | boolean | undefined;\n        sky11?: string | number | boolean | undefined;\n        sky12?: string | number | boolean | undefined;\n        blue1?: string | number | boolean | undefined;\n        blue2?: string | number | boolean | undefined;\n        blue3?: string | number | boolean | undefined;\n        blue4?: string | number | boolean | undefined;\n        blue5?: string | number | boolean | undefined;\n        blue6?: string | number | boolean | undefined;\n        blue7?: string | number | boolean | undefined;\n        blue8?: string | number | boolean | undefined;\n        blue9?: string | number | boolean | undefined;\n        blue10?: string | number | boolean | undefined;\n        blue11?: string | number | boolean | undefined;\n        blue12?: string | number | boolean | undefined;\n        indigo1?: string | number | boolean | undefined;\n        indigo2?: string | number | boolean | undefined;\n        indigo3?: string | number | boolean | undefined;\n        indigo4?: string | number | boolean | undefined;\n        indigo5?: string | number | boolean | undefined;\n        indigo6?: string | number | boolean | undefined;\n        indigo7?: string | number | boolean | undefined;\n        indigo8?: string | number | boolean | undefined;\n        indigo9?: string | number | boolean | undefined;\n        indigo10?: string | number | boolean | undefined;\n        indigo11?: string | number | boolean | undefined;\n        indigo12?: string | number | boolean | undefined;\n        violet1?: string | number | boolean | undefined;\n        violet2?: string | number | boolean | undefined;\n        violet3?: string | number | boolean | undefined;\n        violet4?: string | number | boolean | undefined;\n        violet5?: string | number | boolean | undefined;\n        violet6?: string | number | boolean | undefined;\n        violet7?: string | number | boolean | undefined;\n        violet8?: string | number | boolean | undefined;\n        violet9?: string | number | boolean | undefined;\n        violet10?: string | number | boolean | undefined;\n        violet11?: string | number | boolean | undefined;\n        violet12?: string | number | boolean | undefined;\n        purple1?: string | number | boolean | undefined;\n        purple2?: string | number | boolean | undefined;\n        purple3?: string | number | boolean | undefined;\n        purple4?: string | number | boolean | undefined;\n        purple5?: string | number | boolean | undefined;\n        purple6?: string | number | boolean | undefined;\n        purple7?: string | number | boolean | undefined;\n        purple8?: string | number | boolean | undefined;\n        purple9?: string | number | boolean | undefined;\n        purple10?: string | number | boolean | undefined;\n        purple11?: string | number | boolean | undefined;\n        purple12?: string | number | boolean | undefined;\n        plum1?: string | number | boolean | undefined;\n        plum2?: string | number | boolean | undefined;\n        plum3?: string | number | boolean | undefined;\n        plum4?: string | number | boolean | undefined;\n        plum5?: string | number | boolean | undefined;\n        plum6?: string | number | boolean | undefined;\n        plum7?: string | number | boolean | undefined;\n        plum8?: string | number | boolean | undefined;\n        plum9?: string | number | boolean | undefined;\n        plum10?: string | number | boolean | undefined;\n        plum11?: string | number | boolean | undefined;\n        plum12?: string | number | boolean | undefined;\n        pink1?: string | number | boolean | undefined;\n        pink2?: string | number | boolean | undefined;\n        pink3?: string | number | boolean | undefined;\n        pink4?: string | number | boolean | undefined;\n        pink5?: string | number | boolean | undefined;\n        pink6?: string | number | boolean | undefined;\n        pink7?: string | number | boolean | undefined;\n        pink8?: string | number | boolean | undefined;\n        pink9?: string | number | boolean | undefined;\n        pink10?: string | number | boolean | undefined;\n        pink11?: string | number | boolean | undefined;\n        pink12?: string | number | boolean | undefined;\n        crimson1?: string | number | boolean | undefined;\n        crimson2?: string | number | boolean | undefined;\n        crimson3?: string | number | boolean | undefined;\n        crimson4?: string | number | boolean | undefined;\n        crimson5?: string | number | boolean | undefined;\n        crimson6?: string | number | boolean | undefined;\n        crimson7?: string | number | boolean | undefined;\n        crimson8?: string | number | boolean | undefined;\n        crimson9?: string | number | boolean | undefined;\n        crimson10?: string | number | boolean | undefined;\n        crimson11?: string | number | boolean | undefined;\n        crimson12?: string | number | boolean | undefined;\n        red1?: string | number | boolean | undefined;\n        red2?: string | number | boolean | undefined;\n        red3?: string | number | boolean | undefined;\n        red4?: string | number | boolean | undefined;\n        red5?: string | number | boolean | undefined;\n        red6?: string | number | boolean | undefined;\n        red7?: string | number | boolean | undefined;\n        red8?: string | number | boolean | undefined;\n        red9?: string | number | boolean | undefined;\n        red10?: string | number | boolean | undefined;\n        red11?: string | number | boolean | undefined;\n        red12?: string | number | boolean | undefined;\n        tomato1?: string | number | boolean | undefined;\n        tomato2?: string | number | boolean | undefined;\n        tomato3?: string | number | boolean | undefined;\n        tomato4?: string | number | boolean | undefined;\n        tomato5?: string | number | boolean | undefined;\n        tomato6?: string | number | boolean | undefined;\n        tomato7?: string | number | boolean | undefined;\n        tomato8?: string | number | boolean | undefined;\n        tomato9?: string | number | boolean | undefined;\n        tomato10?: string | number | boolean | undefined;\n        tomato11?: string | number | boolean | undefined;\n        tomato12?: string | number | boolean | undefined;\n        sand1?: string | number | boolean | undefined;\n        sand2?: string | number | boolean | undefined;\n        sand3?: string | number | boolean | undefined;\n        sand4?: string | number | boolean | undefined;\n        sand5?: string | number | boolean | undefined;\n        sand6?: string | number | boolean | undefined;\n        sand7?: string | number | boolean | undefined;\n        sand8?: string | number | boolean | undefined;\n        sand9?: string | number | boolean | undefined;\n        sand10?: string | number | boolean | undefined;\n        sand11?: string | number | boolean | undefined;\n        sand12?: string | number | boolean | undefined;\n        olive1?: string | number | boolean | undefined;\n        olive2?: string | number | boolean | undefined;\n        olive3?: string | number | boolean | undefined;\n        olive4?: string | number | boolean | undefined;\n        olive5?: string | number | boolean | undefined;\n        olive6?: string | number | boolean | undefined;\n        olive7?: string | number | boolean | undefined;\n        olive8?: string | number | boolean | undefined;\n        olive9?: string | number | boolean | undefined;\n        olive10?: string | number | boolean | undefined;\n        olive11?: string | number | boolean | undefined;\n        olive12?: string | number | boolean | undefined;\n        sage1?: string | number | boolean | undefined;\n        sage2?: string | number | boolean | undefined;\n        sage3?: string | number | boolean | undefined;\n        sage4?: string | number | boolean | undefined;\n        sage5?: string | number | boolean | undefined;\n        sage6?: string | number | boolean | undefined;\n        sage7?: string | number | boolean | undefined;\n        sage8?: string | number | boolean | undefined;\n        sage9?: string | number | boolean | undefined;\n        sage10?: string | number | boolean | undefined;\n        sage11?: string | number | boolean | undefined;\n        sage12?: string | number | boolean | undefined;\n        slate1?: string | number | boolean | undefined;\n        slate2?: string | number | boolean | undefined;\n        slate3?: string | number | boolean | undefined;\n        slate4?: string | number | boolean | undefined;\n        slate5?: string | number | boolean | undefined;\n        slate6?: string | number | boolean | undefined;\n        slate7?: string | number | boolean | undefined;\n        slate8?: string | number | boolean | undefined;\n        slate9?: string | number | boolean | undefined;\n        slate10?: string | number | boolean | undefined;\n        slate11?: string | number | boolean | undefined;\n        slate12?: string | number | boolean | undefined;\n        mauve1?: string | number | boolean | undefined;\n        mauve2?: string | number | boolean | undefined;\n        mauve3?: string | number | boolean | undefined;\n        mauve4?: string | number | boolean | undefined;\n        mauve5?: string | number | boolean | undefined;\n        mauve6?: string | number | boolean | undefined;\n        mauve7?: string | number | boolean | undefined;\n        mauve8?: string | number | boolean | undefined;\n        mauve9?: string | number | boolean | undefined;\n        mauve10?: string | number | boolean | undefined;\n        mauve11?: string | number | boolean | undefined;\n        mauve12?: string | number | boolean | undefined;\n        gray1?: string | number | boolean | undefined;\n        gray2?: string | number | boolean | undefined;\n        gray3?: string | number | boolean | undefined;\n        gray4?: string | number | boolean | undefined;\n        gray5?: string | number | boolean | undefined;\n        gray6?: string | number | boolean | undefined;\n        gray7?: string | number | boolean | undefined;\n        gray8?: string | number | boolean | undefined;\n        gray9?: string | number | boolean | undefined;\n        gray10?: string | number | boolean | undefined;\n        gray11?: string | number | boolean | undefined;\n        gray12?: string | number | boolean | undefined;\n    } | undefined;\n    fonts?: {\n        untitled?: string | number | boolean | undefined;\n        mono?: string | number | boolean | undefined;\n    } | undefined;\n    space?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        5?: string | number | boolean | undefined;\n        6?: string | number | boolean | undefined;\n        7?: string | number | boolean | undefined;\n        8?: string | number | boolean | undefined;\n        9?: string | number | boolean | undefined;\n    } | undefined;\n    sizes?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        5?: string | number | boolean | undefined;\n        6?: string | number | boolean | undefined;\n        7?: string | number | boolean | undefined;\n        8?: string | number | boolean | undefined;\n        9?: string | number | boolean | undefined;\n    } | undefined;\n    fontSizes?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        5?: string | number | boolean | undefined;\n        6?: string | number | boolean | undefined;\n        7?: string | number | boolean | undefined;\n        8?: string | number | boolean | undefined;\n        9?: string | number | boolean | undefined;\n    } | undefined;\n    radii?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        round?: string | number | boolean | undefined;\n        pill?: string | number | boolean | undefined;\n    } | undefined;\n    zIndices?: {\n        1?: string | number | boolean | undefined;\n        2?: string | number | boolean | undefined;\n        3?: string | number | boolean | undefined;\n        4?: string | number | boolean | undefined;\n        max?: string | number | boolean | undefined;\n    } | undefined;\n} & {\n    [x: string]: {\n        [x: string]: string | number | boolean;\n        [x: number]: string | number | boolean;\n    };\n})>(nameOrScalesArg0: Argument0, nameOrScalesArg1?: Argument1 | undefined) => string & {\n    className: string;\n    selector: string;\n} & (Argument0 extends string ? import(\"@stitches/react/types/stitches\").ThemeTokens<Argument1, \"\"> : import(\"@stitches/react/types/stitches\").ThemeTokens<Argument0, \"\">), getCssText: () => string, keyframes: (style: {\n    [offset: string]: import(\"@stitches/react/types/css-util\").CSS<{\n        bp1: \"(min-width: 520px)\";\n        bp2: \"(min-width: 900px)\";\n        bp3: \"(min-width: 1200px)\";\n        bp4: \"(min-width: 1800px)\";\n        motion: \"(prefers-reduced-motion)\";\n        hover: \"(any-hover: hover)\";\n        dark: \"(prefers-color-scheme: dark)\";\n        light: \"(prefers-color-scheme: light)\";\n    }, {\n        colors: {\n            hiContrast: string;\n            loContrast: string;\n            canvas: string;\n            panel: string;\n            transparentPanel: string;\n            shadowLight: string;\n            shadowDark: string;\n            blackA1: string;\n            blackA2: string;\n            blackA3: string;\n            blackA4: string;\n            blackA5: string;\n            blackA6: string;\n            blackA7: string;\n            blackA8: string;\n            blackA9: string;\n            blackA10: string;\n            blackA11: string;\n            blackA12: string;\n            whiteA1: string;\n            whiteA2: string;\n            whiteA3: string;\n            whiteA4: string;\n            whiteA5: string;\n            whiteA6: string;\n            whiteA7: string;\n            whiteA8: string;\n            whiteA9: string;\n            whiteA10: string;\n            whiteA11: string;\n            whiteA12: string;\n            goldA1: string;\n            goldA2: string;\n            goldA3: string;\n            goldA4: string;\n            goldA5: string;\n            goldA6: string;\n            goldA7: string;\n            goldA8: string;\n            goldA9: string;\n            goldA10: string;\n            goldA11: string;\n            goldA12: string;\n            bronzeA1: string;\n            bronzeA2: string;\n            bronzeA3: string;\n            bronzeA4: string;\n            bronzeA5: string;\n            bronzeA6: string;\n            bronzeA7: string;\n            bronzeA8: string;\n            bronzeA9: string;\n            bronzeA10: string;\n            bronzeA11: string;\n            bronzeA12: string;\n            brownA1: string;\n            brownA2: string;\n            brownA3: string;\n            brownA4: string;\n            brownA5: string;\n            brownA6: string;\n            brownA7: string;\n            brownA8: string;\n            brownA9: string;\n            brownA10: string;\n            brownA11: string;\n            brownA12: string;\n            orangeA1: string;\n            orangeA2: string;\n            orangeA3: string;\n            orangeA4: string;\n            orangeA5: string;\n            orangeA6: string;\n            orangeA7: string;\n            orangeA8: string;\n            orangeA9: string;\n            orangeA10: string;\n            orangeA11: string;\n            orangeA12: string;\n            amberA1: string;\n            amberA2: string;\n            amberA3: string;\n            amberA4: string;\n            amberA5: string;\n            amberA6: string;\n            amberA7: string;\n            amberA8: string;\n            amberA9: string;\n            amberA10: string;\n            amberA11: string;\n            amberA12: string;\n            yellowA1: string;\n            yellowA2: string;\n            yellowA3: string;\n            yellowA4: string;\n            yellowA5: string;\n            yellowA6: string;\n            yellowA7: string;\n            yellowA8: string;\n            yellowA9: string;\n            yellowA10: string;\n            yellowA11: string;\n            yellowA12: string;\n            limeA1: string;\n            limeA2: string;\n            limeA3: string;\n            limeA4: string;\n            limeA5: string;\n            limeA6: string;\n            limeA7: string;\n            limeA8: string;\n            limeA9: string;\n            limeA10: string;\n            limeA11: string;\n            limeA12: string;\n            grassA1: string;\n            grassA2: string;\n            grassA3: string;\n            grassA4: string;\n            grassA5: string;\n            grassA6: string;\n            grassA7: string;\n            grassA8: string;\n            grassA9: string;\n            grassA10: string;\n            grassA11: string;\n            grassA12: string;\n            greenA1: string;\n            greenA2: string;\n            greenA3: string;\n            greenA4: string;\n            greenA5: string;\n            greenA6: string;\n            greenA7: string;\n            greenA8: string;\n            greenA9: string;\n            greenA10: string;\n            greenA11: string;\n            greenA12: string;\n            tealA1: string;\n            tealA2: string;\n            tealA3: string;\n            tealA4: string;\n            tealA5: string;\n            tealA6: string;\n            tealA7: string;\n            tealA8: string;\n            tealA9: string;\n            tealA10: string;\n            tealA11: string;\n            tealA12: string;\n            cyanA1: string;\n            cyanA2: string;\n            cyanA3: string;\n            cyanA4: string;\n            cyanA5: string;\n            cyanA6: string;\n            cyanA7: string;\n            cyanA8: string;\n            cyanA9: string;\n            cyanA10: string;\n            cyanA11: string;\n            cyanA12: string;\n            mintA1: string;\n            mintA2: string;\n            mintA3: string;\n            mintA4: string;\n            mintA5: string;\n            mintA6: string;\n            mintA7: string;\n            mintA8: string;\n            mintA9: string;\n            mintA10: string;\n            mintA11: string;\n            mintA12: string;\n            skyA1: string;\n            skyA2: string;\n            skyA3: string;\n            skyA4: string;\n            skyA5: string;\n            skyA6: string;\n            skyA7: string;\n            skyA8: string;\n            skyA9: string;\n            skyA10: string;\n            skyA11: string;\n            skyA12: string;\n            blueA1: string;\n            blueA2: string;\n            blueA3: string;\n            blueA4: string;\n            blueA5: string;\n            blueA6: string;\n            blueA7: string;\n            blueA8: string;\n            blueA9: string;\n            blueA10: string;\n            blueA11: string;\n            blueA12: string;\n            indigoA1: string;\n            indigoA2: string;\n            indigoA3: string;\n            indigoA4: string;\n            indigoA5: string;\n            indigoA6: string;\n            indigoA7: string;\n            indigoA8: string;\n            indigoA9: string;\n            indigoA10: string;\n            indigoA11: string;\n            indigoA12: string;\n            violetA1: string;\n            violetA2: string;\n            violetA3: string;\n            violetA4: string;\n            violetA5: string;\n            violetA6: string;\n            violetA7: string;\n            violetA8: string;\n            violetA9: string;\n            violetA10: string;\n            violetA11: string;\n            violetA12: string;\n            purpleA1: string;\n            purpleA2: string;\n            purpleA3: string;\n            purpleA4: string;\n            purpleA5: string;\n            purpleA6: string;\n            purpleA7: string;\n            purpleA8: string;\n            purpleA9: string;\n            purpleA10: string;\n            purpleA11: string;\n            purpleA12: string;\n            plumA1: string;\n            plumA2: string;\n            plumA3: string;\n            plumA4: string;\n            plumA5: string;\n            plumA6: string;\n            plumA7: string;\n            plumA8: string;\n            plumA9: string;\n            plumA10: string;\n            plumA11: string;\n            plumA12: string;\n            pinkA1: string;\n            pinkA2: string;\n            pinkA3: string;\n            pinkA4: string;\n            pinkA5: string;\n            pinkA6: string;\n            pinkA7: string;\n            pinkA8: string;\n            pinkA9: string;\n            pinkA10: string;\n            pinkA11: string;\n            pinkA12: string;\n            crimsonA1: string;\n            crimsonA2: string;\n            crimsonA3: string;\n            crimsonA4: string;\n            crimsonA5: string;\n            crimsonA6: string;\n            crimsonA7: string;\n            crimsonA8: string;\n            crimsonA9: string;\n            crimsonA10: string;\n            crimsonA11: string;\n            crimsonA12: string;\n            redA1: string;\n            redA2: string;\n            redA3: string;\n            redA4: string;\n            redA5: string;\n            redA6: string;\n            redA7: string;\n            redA8: string;\n            redA9: string;\n            redA10: string;\n            redA11: string;\n            redA12: string;\n            tomatoA1: string;\n            tomatoA2: string;\n            tomatoA3: string;\n            tomatoA4: string;\n            tomatoA5: string;\n            tomatoA6: string;\n            tomatoA7: string;\n            tomatoA8: string;\n            tomatoA9: string;\n            tomatoA10: string;\n            tomatoA11: string;\n            tomatoA12: string;\n            sandA1: string;\n            sandA2: string;\n            sandA3: string;\n            sandA4: string;\n            sandA5: string;\n            sandA6: string;\n            sandA7: string;\n            sandA8: string;\n            sandA9: string;\n            sandA10: string;\n            sandA11: string;\n            sandA12: string;\n            oliveA1: string;\n            oliveA2: string;\n            oliveA3: string;\n            oliveA4: string;\n            oliveA5: string;\n            oliveA6: string;\n            oliveA7: string;\n            oliveA8: string;\n            oliveA9: string;\n            oliveA10: string;\n            oliveA11: string;\n            oliveA12: string;\n            sageA1: string;\n            sageA2: string;\n            sageA3: string;\n            sageA4: string;\n            sageA5: string;\n            sageA6: string;\n            sageA7: string;\n            sageA8: string;\n            sageA9: string;\n            sageA10: string;\n            sageA11: string;\n            sageA12: string;\n            slateA1: string;\n            slateA2: string;\n            slateA3: string;\n            slateA4: string;\n            slateA5: string;\n            slateA6: string;\n            slateA7: string;\n            slateA8: string;\n            slateA9: string;\n            slateA10: string;\n            slateA11: string;\n            slateA12: string;\n            mauveA1: string;\n            mauveA2: string;\n            mauveA3: string;\n            mauveA4: string;\n            mauveA5: string;\n            mauveA6: string;\n            mauveA7: string;\n            mauveA8: string;\n            mauveA9: string;\n            mauveA10: string;\n            mauveA11: string;\n            mauveA12: string;\n            grayA1: string;\n            grayA2: string;\n            grayA3: string;\n            grayA4: string;\n            grayA5: string;\n            grayA6: string;\n            grayA7: string;\n            grayA8: string;\n            grayA9: string;\n            grayA10: string;\n            grayA11: string;\n            grayA12: string;\n            gold1: string;\n            gold2: string;\n            gold3: string;\n            gold4: string;\n            gold5: string;\n            gold6: string;\n            gold7: string;\n            gold8: string;\n            gold9: string;\n            gold10: string;\n            gold11: string;\n            gold12: string;\n            bronze1: string;\n            bronze2: string;\n            bronze3: string;\n            bronze4: string;\n            bronze5: string;\n            bronze6: string;\n            bronze7: string;\n            bronze8: string;\n            bronze9: string;\n            bronze10: string;\n            bronze11: string;\n            bronze12: string;\n            brown1: string;\n            brown2: string;\n            brown3: string;\n            brown4: string;\n            brown5: string;\n            brown6: string;\n            brown7: string;\n            brown8: string;\n            brown9: string;\n            brown10: string;\n            brown11: string;\n            brown12: string;\n            orange1: string;\n            orange2: string;\n            orange3: string;\n            orange4: string;\n            orange5: string;\n            orange6: string;\n            orange7: string;\n            orange8: string;\n            orange9: string;\n            orange10: string;\n            orange11: string;\n            orange12: string;\n            amber1: string;\n            amber2: string;\n            amber3: string;\n            amber4: string;\n            amber5: string;\n            amber6: string;\n            amber7: string;\n            amber8: string;\n            amber9: string;\n            amber10: string;\n            amber11: string;\n            amber12: string;\n            yellow1: string;\n            yellow2: string;\n            yellow3: string;\n            yellow4: string;\n            yellow5: string;\n            yellow6: string;\n            yellow7: string;\n            yellow8: string;\n            yellow9: string;\n            yellow10: string;\n            yellow11: string;\n            yellow12: string;\n            lime1: string;\n            lime2: string;\n            lime3: string;\n            lime4: string;\n            lime5: string;\n            lime6: string;\n            lime7: string;\n            lime8: string;\n            lime9: string;\n            lime10: string;\n            lime11: string;\n            lime12: string;\n            grass1: string;\n            grass2: string;\n            grass3: string;\n            grass4: string;\n            grass5: string;\n            grass6: string;\n            grass7: string;\n            grass8: string;\n            grass9: string;\n            grass10: string;\n            grass11: string;\n            grass12: string;\n            green1: string;\n            green2: string;\n            green3: string;\n            green4: string;\n            green5: string;\n            green6: string;\n            green7: string;\n            green8: string;\n            green9: string;\n            green10: string;\n            green11: string;\n            green12: string;\n            teal1: string;\n            teal2: string;\n            teal3: string;\n            teal4: string;\n            teal5: string;\n            teal6: string;\n            teal7: string;\n            teal8: string;\n            teal9: string;\n            teal10: string;\n            teal11: string;\n            teal12: string;\n            cyan1: string;\n            cyan2: string;\n            cyan3: string;\n            cyan4: string;\n            cyan5: string;\n            cyan6: string;\n            cyan7: string;\n            cyan8: string;\n            cyan9: string;\n            cyan10: string;\n            cyan11: string;\n            cyan12: string;\n            mint1: string;\n            mint2: string;\n            mint3: string;\n            mint4: string;\n            mint5: string;\n            mint6: string;\n            mint7: string;\n            mint8: string;\n            mint9: string;\n            mint10: string;\n            mint11: string;\n            mint12: string;\n            sky1: string;\n            sky2: string;\n            sky3: string;\n            sky4: string;\n            sky5: string;\n            sky6: string;\n            sky7: string;\n            sky8: string;\n            sky9: string;\n            sky10: string;\n            sky11: string;\n            sky12: string;\n            blue1: string;\n            blue2: string;\n            blue3: string;\n            blue4: string;\n            blue5: string;\n            blue6: string;\n            blue7: string;\n            blue8: string;\n            blue9: string;\n            blue10: string;\n            blue11: string;\n            blue12: string;\n            indigo1: string;\n            indigo2: string;\n            indigo3: string;\n            indigo4: string;\n            indigo5: string;\n            indigo6: string;\n            indigo7: string;\n            indigo8: string;\n            indigo9: string;\n            indigo10: string;\n            indigo11: string;\n            indigo12: string;\n            violet1: string;\n            violet2: string;\n            violet3: string;\n            violet4: string;\n            violet5: string;\n            violet6: string;\n            violet7: string;\n            violet8: string;\n            violet9: string;\n            violet10: string;\n            violet11: string;\n            violet12: string;\n            purple1: string;\n            purple2: string;\n            purple3: string;\n            purple4: string;\n            purple5: string;\n            purple6: string;\n            purple7: string;\n            purple8: string;\n            purple9: string;\n            purple10: string;\n            purple11: string;\n            purple12: string;\n            plum1: string;\n            plum2: string;\n            plum3: string;\n            plum4: string;\n            plum5: string;\n            plum6: string;\n            plum7: string;\n            plum8: string;\n            plum9: string;\n            plum10: string;\n            plum11: string;\n            plum12: string;\n            pink1: string;\n            pink2: string;\n            pink3: string;\n            pink4: string;\n            pink5: string;\n            pink6: string;\n            pink7: string;\n            pink8: string;\n            pink9: string;\n            pink10: string;\n            pink11: string;\n            pink12: string;\n            crimson1: string;\n            crimson2: string;\n            crimson3: string;\n            crimson4: string;\n            crimson5: string;\n            crimson6: string;\n            crimson7: string;\n            crimson8: string;\n            crimson9: string;\n            crimson10: string;\n            crimson11: string;\n            crimson12: string;\n            red1: string;\n            red2: string;\n            red3: string;\n            red4: string;\n            red5: string;\n            red6: string;\n            red7: string;\n            red8: string;\n            red9: string;\n            red10: string;\n            red11: string;\n            red12: string;\n            tomato1: string;\n            tomato2: string;\n            tomato3: string;\n            tomato4: string;\n            tomato5: string;\n            tomato6: string;\n            tomato7: string;\n            tomato8: string;\n            tomato9: string;\n            tomato10: string;\n            tomato11: string;\n            tomato12: string;\n            sand1: string;\n            sand2: string;\n            sand3: string;\n            sand4: string;\n            sand5: string;\n            sand6: string;\n            sand7: string;\n            sand8: string;\n            sand9: string;\n            sand10: string;\n            sand11: string;\n            sand12: string;\n            olive1: string;\n            olive2: string;\n            olive3: string;\n            olive4: string;\n            olive5: string;\n            olive6: string;\n            olive7: string;\n            olive8: string;\n            olive9: string;\n            olive10: string;\n            olive11: string;\n            olive12: string;\n            sage1: string;\n            sage2: string;\n            sage3: string;\n            sage4: string;\n            sage5: string;\n            sage6: string;\n            sage7: string;\n            sage8: string;\n            sage9: string;\n            sage10: string;\n            sage11: string;\n            sage12: string;\n            slate1: string;\n            slate2: string;\n            slate3: string;\n            slate4: string;\n            slate5: string;\n            slate6: string;\n            slate7: string;\n            slate8: string;\n            slate9: string;\n            slate10: string;\n            slate11: string;\n            slate12: string;\n            mauve1: string;\n            mauve2: string;\n            mauve3: string;\n            mauve4: string;\n            mauve5: string;\n            mauve6: string;\n            mauve7: string;\n            mauve8: string;\n            mauve9: string;\n            mauve10: string;\n            mauve11: string;\n            mauve12: string;\n            gray1: string;\n            gray2: string;\n            gray3: string;\n            gray4: string;\n            gray5: string;\n            gray6: string;\n            gray7: string;\n            gray8: string;\n            gray9: string;\n            gray10: string;\n            gray11: string;\n            gray12: string;\n        };\n        fonts: {\n            untitled: string;\n            mono: string;\n        };\n        space: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        sizes: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        fontSizes: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        radii: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            round: string;\n            pill: string;\n        };\n        zIndices: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            max: string;\n        };\n    }, import(\"@stitches/react/types/config\").DefaultThemeMap, {\n        p: (value: Stitches.PropertyValue<'padding'>) => {\n            padding: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"padding\">;\n        };\n        pt: (value: Stitches.PropertyValue<'paddingTop'>) => {\n            paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        };\n        pr: (value: Stitches.PropertyValue<'paddingRight'>) => {\n            paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingRight\">;\n        };\n        pb: (value: Stitches.PropertyValue<'paddingBottom'>) => {\n            paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingBottom\">;\n        };\n        pl: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n            paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        };\n        px: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n            paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n            paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        };\n        py: (value: Stitches.PropertyValue<'paddingTop'>) => {\n            paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n            paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        };\n        m: (value: Stitches.PropertyValue<'margin'>) => {\n            margin: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"margin\">;\n        };\n        mt: (value: Stitches.PropertyValue<'marginTop'>) => {\n            marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        };\n        mr: (value: Stitches.PropertyValue<'marginRight'>) => {\n            marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginRight\">;\n        };\n        mb: (value: Stitches.PropertyValue<'marginBottom'>) => {\n            marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginBottom\">;\n        };\n        ml: (value: Stitches.PropertyValue<'marginLeft'>) => {\n            marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        };\n        mx: (value: Stitches.PropertyValue<'marginLeft'>) => {\n            marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n            marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        };\n        my: (value: Stitches.PropertyValue<'marginTop'>) => {\n            marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n            marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        };\n        ta: (value: Stitches.PropertyValue<'textAlign'>) => {\n            textAlign: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"textAlign\">;\n        };\n        fd: (value: Stitches.PropertyValue<'flexDirection'>) => {\n            flexDirection: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexDirection\">;\n        };\n        fw: (value: Stitches.PropertyValue<'flexWrap'>) => {\n            flexWrap: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexWrap\">;\n        };\n        ai: (value: Stitches.PropertyValue<'alignItems'>) => {\n            alignItems: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignItems\">;\n        };\n        ac: (value: Stitches.PropertyValue<'alignContent'>) => {\n            alignContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignContent\">;\n        };\n        jc: (value: Stitches.PropertyValue<'justifyContent'>) => {\n            justifyContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"justifyContent\">;\n        };\n        as: (value: Stitches.PropertyValue<'alignSelf'>) => {\n            alignSelf: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignSelf\">;\n        };\n        fg: (value: Stitches.PropertyValue<'flexGrow'>) => {\n            flexGrow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexGrow\">;\n        };\n        fs: (value: Stitches.PropertyValue<'flexShrink'>) => {\n            flexShrink: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexShrink\">;\n        };\n        fb: (value: Stitches.PropertyValue<'flexBasis'>) => {\n            flexBasis: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexBasis\">;\n        };\n        bc: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            backgroundColor: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        br: (value: Stitches.PropertyValue<'borderRadius'>) => {\n            borderRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderRadius\">;\n        };\n        btrr: (value: Stitches.PropertyValue<'borderTopRightRadius'>) => {\n            borderTopRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopRightRadius\">;\n        };\n        bbrr: (value: Stitches.PropertyValue<'borderBottomRightRadius'>) => {\n            borderBottomRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomRightRadius\">;\n        };\n        bblr: (value: Stitches.PropertyValue<'borderBottomLeftRadius'>) => {\n            borderBottomLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomLeftRadius\">;\n        };\n        btlr: (value: Stitches.PropertyValue<'borderTopLeftRadius'>) => {\n            borderTopLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopLeftRadius\">;\n        };\n        bs: (value: Stitches.PropertyValue<'boxShadow'>) => {\n            boxShadow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"boxShadow\">;\n        };\n        lh: (value: Stitches.PropertyValue<'lineHeight'>) => {\n            lineHeight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"lineHeight\">;\n        };\n        ox: (value: Stitches.PropertyValue<'overflowX'>) => {\n            overflowX: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowX\">;\n        };\n        oy: (value: Stitches.PropertyValue<'overflowY'>) => {\n            overflowY: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowY\">;\n        };\n        pe: (value: Stitches.PropertyValue<'pointerEvents'>) => {\n            pointerEvents: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"pointerEvents\">;\n        };\n        us: (value: Stitches.PropertyValue<'userSelect'>) => {\n            WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n            userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        };\n        userSelect: (value: Stitches.PropertyValue<'userSelect'>) => {\n            WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n            userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        };\n        size: (value: Stitches.PropertyValue<'width'>) => {\n            width: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n            height: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n        };\n        appearance: (value: Stitches.PropertyValue<'appearance'>) => {\n            WebkitAppearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n            appearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n        };\n        backgroundClip: (value: Stitches.PropertyValue<'backgroundClip'>) => {\n            WebkitBackgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n            backgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n        };\n    }>;\n}) => {\n    (): string;\n    name: string;\n}, config: {\n    prefix: \"\";\n    media: {\n        bp1: \"(min-width: 520px)\";\n        bp2: \"(min-width: 900px)\";\n        bp3: \"(min-width: 1200px)\";\n        bp4: \"(min-width: 1800px)\";\n        motion: \"(prefers-reduced-motion)\";\n        hover: \"(any-hover: hover)\";\n        dark: \"(prefers-color-scheme: dark)\";\n        light: \"(prefers-color-scheme: light)\";\n    };\n    theme: {\n        colors: {\n            hiContrast: string;\n            loContrast: string;\n            canvas: string;\n            panel: string;\n            transparentPanel: string;\n            shadowLight: string;\n            shadowDark: string;\n            blackA1: string;\n            blackA2: string;\n            blackA3: string;\n            blackA4: string;\n            blackA5: string;\n            blackA6: string;\n            blackA7: string;\n            blackA8: string;\n            blackA9: string;\n            blackA10: string;\n            blackA11: string;\n            blackA12: string;\n            whiteA1: string;\n            whiteA2: string;\n            whiteA3: string;\n            whiteA4: string;\n            whiteA5: string;\n            whiteA6: string;\n            whiteA7: string;\n            whiteA8: string;\n            whiteA9: string;\n            whiteA10: string;\n            whiteA11: string;\n            whiteA12: string;\n            goldA1: string;\n            goldA2: string;\n            goldA3: string;\n            goldA4: string;\n            goldA5: string;\n            goldA6: string;\n            goldA7: string;\n            goldA8: string;\n            goldA9: string;\n            goldA10: string;\n            goldA11: string;\n            goldA12: string;\n            bronzeA1: string;\n            bronzeA2: string;\n            bronzeA3: string;\n            bronzeA4: string;\n            bronzeA5: string;\n            bronzeA6: string;\n            bronzeA7: string;\n            bronzeA8: string;\n            bronzeA9: string;\n            bronzeA10: string;\n            bronzeA11: string;\n            bronzeA12: string;\n            brownA1: string;\n            brownA2: string;\n            brownA3: string;\n            brownA4: string;\n            brownA5: string;\n            brownA6: string;\n            brownA7: string;\n            brownA8: string;\n            brownA9: string;\n            brownA10: string;\n            brownA11: string;\n            brownA12: string;\n            orangeA1: string;\n            orangeA2: string;\n            orangeA3: string;\n            orangeA4: string;\n            orangeA5: string;\n            orangeA6: string;\n            orangeA7: string;\n            orangeA8: string;\n            orangeA9: string;\n            orangeA10: string;\n            orangeA11: string;\n            orangeA12: string;\n            amberA1: string;\n            amberA2: string;\n            amberA3: string;\n            amberA4: string;\n            amberA5: string;\n            amberA6: string;\n            amberA7: string;\n            amberA8: string;\n            amberA9: string;\n            amberA10: string;\n            amberA11: string;\n            amberA12: string;\n            yellowA1: string;\n            yellowA2: string;\n            yellowA3: string;\n            yellowA4: string;\n            yellowA5: string;\n            yellowA6: string;\n            yellowA7: string;\n            yellowA8: string;\n            yellowA9: string;\n            yellowA10: string;\n            yellowA11: string;\n            yellowA12: string;\n            limeA1: string;\n            limeA2: string;\n            limeA3: string;\n            limeA4: string;\n            limeA5: string;\n            limeA6: string;\n            limeA7: string;\n            limeA8: string;\n            limeA9: string;\n            limeA10: string;\n            limeA11: string;\n            limeA12: string;\n            grassA1: string;\n            grassA2: string;\n            grassA3: string;\n            grassA4: string;\n            grassA5: string;\n            grassA6: string;\n            grassA7: string;\n            grassA8: string;\n            grassA9: string;\n            grassA10: string;\n            grassA11: string;\n            grassA12: string;\n            greenA1: string;\n            greenA2: string;\n            greenA3: string;\n            greenA4: string;\n            greenA5: string;\n            greenA6: string;\n            greenA7: string;\n            greenA8: string;\n            greenA9: string;\n            greenA10: string;\n            greenA11: string;\n            greenA12: string;\n            tealA1: string;\n            tealA2: string;\n            tealA3: string;\n            tealA4: string;\n            tealA5: string;\n            tealA6: string;\n            tealA7: string;\n            tealA8: string;\n            tealA9: string;\n            tealA10: string;\n            tealA11: string;\n            tealA12: string;\n            cyanA1: string;\n            cyanA2: string;\n            cyanA3: string;\n            cyanA4: string;\n            cyanA5: string;\n            cyanA6: string;\n            cyanA7: string;\n            cyanA8: string;\n            cyanA9: string;\n            cyanA10: string;\n            cyanA11: string;\n            cyanA12: string;\n            mintA1: string;\n            mintA2: string;\n            mintA3: string;\n            mintA4: string;\n            mintA5: string;\n            mintA6: string;\n            mintA7: string;\n            mintA8: string;\n            mintA9: string;\n            mintA10: string;\n            mintA11: string;\n            mintA12: string;\n            skyA1: string;\n            skyA2: string;\n            skyA3: string;\n            skyA4: string;\n            skyA5: string;\n            skyA6: string;\n            skyA7: string;\n            skyA8: string;\n            skyA9: string;\n            skyA10: string;\n            skyA11: string;\n            skyA12: string;\n            blueA1: string;\n            blueA2: string;\n            blueA3: string;\n            blueA4: string;\n            blueA5: string;\n            blueA6: string;\n            blueA7: string;\n            blueA8: string;\n            blueA9: string;\n            blueA10: string;\n            blueA11: string;\n            blueA12: string;\n            indigoA1: string;\n            indigoA2: string;\n            indigoA3: string;\n            indigoA4: string;\n            indigoA5: string;\n            indigoA6: string;\n            indigoA7: string;\n            indigoA8: string;\n            indigoA9: string;\n            indigoA10: string;\n            indigoA11: string;\n            indigoA12: string;\n            violetA1: string;\n            violetA2: string;\n            violetA3: string;\n            violetA4: string;\n            violetA5: string;\n            violetA6: string;\n            violetA7: string;\n            violetA8: string;\n            violetA9: string;\n            violetA10: string;\n            violetA11: string;\n            violetA12: string;\n            purpleA1: string;\n            purpleA2: string;\n            purpleA3: string;\n            purpleA4: string;\n            purpleA5: string;\n            purpleA6: string;\n            purpleA7: string;\n            purpleA8: string;\n            purpleA9: string;\n            purpleA10: string;\n            purpleA11: string;\n            purpleA12: string;\n            plumA1: string;\n            plumA2: string;\n            plumA3: string;\n            plumA4: string;\n            plumA5: string;\n            plumA6: string;\n            plumA7: string;\n            plumA8: string;\n            plumA9: string;\n            plumA10: string;\n            plumA11: string;\n            plumA12: string;\n            pinkA1: string;\n            pinkA2: string;\n            pinkA3: string;\n            pinkA4: string;\n            pinkA5: string;\n            pinkA6: string;\n            pinkA7: string;\n            pinkA8: string;\n            pinkA9: string;\n            pinkA10: string;\n            pinkA11: string;\n            pinkA12: string;\n            crimsonA1: string;\n            crimsonA2: string;\n            crimsonA3: string;\n            crimsonA4: string;\n            crimsonA5: string;\n            crimsonA6: string;\n            crimsonA7: string;\n            crimsonA8: string;\n            crimsonA9: string;\n            crimsonA10: string;\n            crimsonA11: string;\n            crimsonA12: string;\n            redA1: string;\n            redA2: string;\n            redA3: string;\n            redA4: string;\n            redA5: string;\n            redA6: string;\n            redA7: string;\n            redA8: string;\n            redA9: string;\n            redA10: string;\n            redA11: string;\n            redA12: string;\n            tomatoA1: string;\n            tomatoA2: string;\n            tomatoA3: string;\n            tomatoA4: string;\n            tomatoA5: string;\n            tomatoA6: string;\n            tomatoA7: string;\n            tomatoA8: string;\n            tomatoA9: string;\n            tomatoA10: string;\n            tomatoA11: string;\n            tomatoA12: string;\n            sandA1: string;\n            sandA2: string;\n            sandA3: string;\n            sandA4: string;\n            sandA5: string;\n            sandA6: string;\n            sandA7: string;\n            sandA8: string;\n            sandA9: string;\n            sandA10: string;\n            sandA11: string;\n            sandA12: string;\n            oliveA1: string;\n            oliveA2: string;\n            oliveA3: string;\n            oliveA4: string;\n            oliveA5: string;\n            oliveA6: string;\n            oliveA7: string;\n            oliveA8: string;\n            oliveA9: string;\n            oliveA10: string;\n            oliveA11: string;\n            oliveA12: string;\n            sageA1: string;\n            sageA2: string;\n            sageA3: string;\n            sageA4: string;\n            sageA5: string;\n            sageA6: string;\n            sageA7: string;\n            sageA8: string;\n            sageA9: string;\n            sageA10: string;\n            sageA11: string;\n            sageA12: string;\n            slateA1: string;\n            slateA2: string;\n            slateA3: string;\n            slateA4: string;\n            slateA5: string;\n            slateA6: string;\n            slateA7: string;\n            slateA8: string;\n            slateA9: string;\n            slateA10: string;\n            slateA11: string;\n            slateA12: string;\n            mauveA1: string;\n            mauveA2: string;\n            mauveA3: string;\n            mauveA4: string;\n            mauveA5: string;\n            mauveA6: string;\n            mauveA7: string;\n            mauveA8: string;\n            mauveA9: string;\n            mauveA10: string;\n            mauveA11: string;\n            mauveA12: string;\n            grayA1: string;\n            grayA2: string;\n            grayA3: string;\n            grayA4: string;\n            grayA5: string;\n            grayA6: string;\n            grayA7: string;\n            grayA8: string;\n            grayA9: string;\n            grayA10: string;\n            grayA11: string;\n            grayA12: string;\n            gold1: string;\n            gold2: string;\n            gold3: string;\n            gold4: string;\n            gold5: string;\n            gold6: string;\n            gold7: string;\n            gold8: string;\n            gold9: string;\n            gold10: string;\n            gold11: string;\n            gold12: string;\n            bronze1: string;\n            bronze2: string;\n            bronze3: string;\n            bronze4: string;\n            bronze5: string;\n            bronze6: string;\n            bronze7: string;\n            bronze8: string;\n            bronze9: string;\n            bronze10: string;\n            bronze11: string;\n            bronze12: string;\n            brown1: string;\n            brown2: string;\n            brown3: string;\n            brown4: string;\n            brown5: string;\n            brown6: string;\n            brown7: string;\n            brown8: string;\n            brown9: string;\n            brown10: string;\n            brown11: string;\n            brown12: string;\n            orange1: string;\n            orange2: string;\n            orange3: string;\n            orange4: string;\n            orange5: string;\n            orange6: string;\n            orange7: string;\n            orange8: string;\n            orange9: string;\n            orange10: string;\n            orange11: string;\n            orange12: string;\n            amber1: string;\n            amber2: string;\n            amber3: string;\n            amber4: string;\n            amber5: string;\n            amber6: string;\n            amber7: string;\n            amber8: string;\n            amber9: string;\n            amber10: string;\n            amber11: string;\n            amber12: string;\n            yellow1: string;\n            yellow2: string;\n            yellow3: string;\n            yellow4: string;\n            yellow5: string;\n            yellow6: string;\n            yellow7: string;\n            yellow8: string;\n            yellow9: string;\n            yellow10: string;\n            yellow11: string;\n            yellow12: string;\n            lime1: string;\n            lime2: string;\n            lime3: string;\n            lime4: string;\n            lime5: string;\n            lime6: string;\n            lime7: string;\n            lime8: string;\n            lime9: string;\n            lime10: string;\n            lime11: string;\n            lime12: string;\n            grass1: string;\n            grass2: string;\n            grass3: string;\n            grass4: string;\n            grass5: string;\n            grass6: string;\n            grass7: string;\n            grass8: string;\n            grass9: string;\n            grass10: string;\n            grass11: string;\n            grass12: string;\n            green1: string;\n            green2: string;\n            green3: string;\n            green4: string;\n            green5: string;\n            green6: string;\n            green7: string;\n            green8: string;\n            green9: string;\n            green10: string;\n            green11: string;\n            green12: string;\n            teal1: string;\n            teal2: string;\n            teal3: string;\n            teal4: string;\n            teal5: string;\n            teal6: string;\n            teal7: string;\n            teal8: string;\n            teal9: string;\n            teal10: string;\n            teal11: string;\n            teal12: string;\n            cyan1: string;\n            cyan2: string;\n            cyan3: string;\n            cyan4: string;\n            cyan5: string;\n            cyan6: string;\n            cyan7: string;\n            cyan8: string;\n            cyan9: string;\n            cyan10: string;\n            cyan11: string;\n            cyan12: string;\n            mint1: string;\n            mint2: string;\n            mint3: string;\n            mint4: string;\n            mint5: string;\n            mint6: string;\n            mint7: string;\n            mint8: string;\n            mint9: string;\n            mint10: string;\n            mint11: string;\n            mint12: string;\n            sky1: string;\n            sky2: string;\n            sky3: string;\n            sky4: string;\n            sky5: string;\n            sky6: string;\n            sky7: string;\n            sky8: string;\n            sky9: string;\n            sky10: string;\n            sky11: string;\n            sky12: string;\n            blue1: string;\n            blue2: string;\n            blue3: string;\n            blue4: string;\n            blue5: string;\n            blue6: string;\n            blue7: string;\n            blue8: string;\n            blue9: string;\n            blue10: string;\n            blue11: string;\n            blue12: string;\n            indigo1: string;\n            indigo2: string;\n            indigo3: string;\n            indigo4: string;\n            indigo5: string;\n            indigo6: string;\n            indigo7: string;\n            indigo8: string;\n            indigo9: string;\n            indigo10: string;\n            indigo11: string;\n            indigo12: string;\n            violet1: string;\n            violet2: string;\n            violet3: string;\n            violet4: string;\n            violet5: string;\n            violet6: string;\n            violet7: string;\n            violet8: string;\n            violet9: string;\n            violet10: string;\n            violet11: string;\n            violet12: string;\n            purple1: string;\n            purple2: string;\n            purple3: string;\n            purple4: string;\n            purple5: string;\n            purple6: string;\n            purple7: string;\n            purple8: string;\n            purple9: string;\n            purple10: string;\n            purple11: string;\n            purple12: string;\n            plum1: string;\n            plum2: string;\n            plum3: string;\n            plum4: string;\n            plum5: string;\n            plum6: string;\n            plum7: string;\n            plum8: string;\n            plum9: string;\n            plum10: string;\n            plum11: string;\n            plum12: string;\n            pink1: string;\n            pink2: string;\n            pink3: string;\n            pink4: string;\n            pink5: string;\n            pink6: string;\n            pink7: string;\n            pink8: string;\n            pink9: string;\n            pink10: string;\n            pink11: string;\n            pink12: string;\n            crimson1: string;\n            crimson2: string;\n            crimson3: string;\n            crimson4: string;\n            crimson5: string;\n            crimson6: string;\n            crimson7: string;\n            crimson8: string;\n            crimson9: string;\n            crimson10: string;\n            crimson11: string;\n            crimson12: string;\n            red1: string;\n            red2: string;\n            red3: string;\n            red4: string;\n            red5: string;\n            red6: string;\n            red7: string;\n            red8: string;\n            red9: string;\n            red10: string;\n            red11: string;\n            red12: string;\n            tomato1: string;\n            tomato2: string;\n            tomato3: string;\n            tomato4: string;\n            tomato5: string;\n            tomato6: string;\n            tomato7: string;\n            tomato8: string;\n            tomato9: string;\n            tomato10: string;\n            tomato11: string;\n            tomato12: string;\n            sand1: string;\n            sand2: string;\n            sand3: string;\n            sand4: string;\n            sand5: string;\n            sand6: string;\n            sand7: string;\n            sand8: string;\n            sand9: string;\n            sand10: string;\n            sand11: string;\n            sand12: string;\n            olive1: string;\n            olive2: string;\n            olive3: string;\n            olive4: string;\n            olive5: string;\n            olive6: string;\n            olive7: string;\n            olive8: string;\n            olive9: string;\n            olive10: string;\n            olive11: string;\n            olive12: string;\n            sage1: string;\n            sage2: string;\n            sage3: string;\n            sage4: string;\n            sage5: string;\n            sage6: string;\n            sage7: string;\n            sage8: string;\n            sage9: string;\n            sage10: string;\n            sage11: string;\n            sage12: string;\n            slate1: string;\n            slate2: string;\n            slate3: string;\n            slate4: string;\n            slate5: string;\n            slate6: string;\n            slate7: string;\n            slate8: string;\n            slate9: string;\n            slate10: string;\n            slate11: string;\n            slate12: string;\n            mauve1: string;\n            mauve2: string;\n            mauve3: string;\n            mauve4: string;\n            mauve5: string;\n            mauve6: string;\n            mauve7: string;\n            mauve8: string;\n            mauve9: string;\n            mauve10: string;\n            mauve11: string;\n            mauve12: string;\n            gray1: string;\n            gray2: string;\n            gray3: string;\n            gray4: string;\n            gray5: string;\n            gray6: string;\n            gray7: string;\n            gray8: string;\n            gray9: string;\n            gray10: string;\n            gray11: string;\n            gray12: string;\n        };\n        fonts: {\n            untitled: string;\n            mono: string;\n        };\n        space: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        sizes: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        fontSizes: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            5: string;\n            6: string;\n            7: string;\n            8: string;\n            9: string;\n        };\n        radii: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            round: string;\n            pill: string;\n        };\n        zIndices: {\n            1: string;\n            2: string;\n            3: string;\n            4: string;\n            max: string;\n        };\n    };\n    themeMap: import(\"@stitches/react/types/config\").DefaultThemeMap;\n    utils: {\n        p: (value: Stitches.PropertyValue<'padding'>) => {\n            padding: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"padding\">;\n        };\n        pt: (value: Stitches.PropertyValue<'paddingTop'>) => {\n            paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        };\n        pr: (value: Stitches.PropertyValue<'paddingRight'>) => {\n            paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingRight\">;\n        };\n        pb: (value: Stitches.PropertyValue<'paddingBottom'>) => {\n            paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingBottom\">;\n        };\n        pl: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n            paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        };\n        px: (value: Stitches.PropertyValue<'paddingLeft'>) => {\n            paddingLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n            paddingRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingLeft\">;\n        };\n        py: (value: Stitches.PropertyValue<'paddingTop'>) => {\n            paddingTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n            paddingBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"paddingTop\">;\n        };\n        m: (value: Stitches.PropertyValue<'margin'>) => {\n            margin: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"margin\">;\n        };\n        mt: (value: Stitches.PropertyValue<'marginTop'>) => {\n            marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        };\n        mr: (value: Stitches.PropertyValue<'marginRight'>) => {\n            marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginRight\">;\n        };\n        mb: (value: Stitches.PropertyValue<'marginBottom'>) => {\n            marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginBottom\">;\n        };\n        ml: (value: Stitches.PropertyValue<'marginLeft'>) => {\n            marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        };\n        mx: (value: Stitches.PropertyValue<'marginLeft'>) => {\n            marginLeft: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n            marginRight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginLeft\">;\n        };\n        my: (value: Stitches.PropertyValue<'marginTop'>) => {\n            marginTop: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n            marginBottom: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"marginTop\">;\n        };\n        ta: (value: Stitches.PropertyValue<'textAlign'>) => {\n            textAlign: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"textAlign\">;\n        };\n        fd: (value: Stitches.PropertyValue<'flexDirection'>) => {\n            flexDirection: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexDirection\">;\n        };\n        fw: (value: Stitches.PropertyValue<'flexWrap'>) => {\n            flexWrap: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexWrap\">;\n        };\n        ai: (value: Stitches.PropertyValue<'alignItems'>) => {\n            alignItems: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignItems\">;\n        };\n        ac: (value: Stitches.PropertyValue<'alignContent'>) => {\n            alignContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignContent\">;\n        };\n        jc: (value: Stitches.PropertyValue<'justifyContent'>) => {\n            justifyContent: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"justifyContent\">;\n        };\n        as: (value: Stitches.PropertyValue<'alignSelf'>) => {\n            alignSelf: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"alignSelf\">;\n        };\n        fg: (value: Stitches.PropertyValue<'flexGrow'>) => {\n            flexGrow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexGrow\">;\n        };\n        fs: (value: Stitches.PropertyValue<'flexShrink'>) => {\n            flexShrink: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexShrink\">;\n        };\n        fb: (value: Stitches.PropertyValue<'flexBasis'>) => {\n            flexBasis: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"flexBasis\">;\n        };\n        bc: (value: Stitches.PropertyValue<'backgroundColor'>) => {\n            backgroundColor: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundColor\">;\n        };\n        br: (value: Stitches.PropertyValue<'borderRadius'>) => {\n            borderRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderRadius\">;\n        };\n        btrr: (value: Stitches.PropertyValue<'borderTopRightRadius'>) => {\n            borderTopRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopRightRadius\">;\n        };\n        bbrr: (value: Stitches.PropertyValue<'borderBottomRightRadius'>) => {\n            borderBottomRightRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomRightRadius\">;\n        };\n        bblr: (value: Stitches.PropertyValue<'borderBottomLeftRadius'>) => {\n            borderBottomLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderBottomLeftRadius\">;\n        };\n        btlr: (value: Stitches.PropertyValue<'borderTopLeftRadius'>) => {\n            borderTopLeftRadius: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"borderTopLeftRadius\">;\n        };\n        bs: (value: Stitches.PropertyValue<'boxShadow'>) => {\n            boxShadow: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"boxShadow\">;\n        };\n        lh: (value: Stitches.PropertyValue<'lineHeight'>) => {\n            lineHeight: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"lineHeight\">;\n        };\n        ox: (value: Stitches.PropertyValue<'overflowX'>) => {\n            overflowX: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowX\">;\n        };\n        oy: (value: Stitches.PropertyValue<'overflowY'>) => {\n            overflowY: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"overflowY\">;\n        };\n        pe: (value: Stitches.PropertyValue<'pointerEvents'>) => {\n            pointerEvents: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"pointerEvents\">;\n        };\n        us: (value: Stitches.PropertyValue<'userSelect'>) => {\n            WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n            userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        };\n        userSelect: (value: Stitches.PropertyValue<'userSelect'>) => {\n            WebkitUserSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n            userSelect: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"userSelect\">;\n        };\n        size: (value: Stitches.PropertyValue<'width'>) => {\n            width: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n            height: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"width\">;\n        };\n        appearance: (value: Stitches.PropertyValue<'appearance'>) => {\n            WebkitAppearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n            appearance: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"appearance\">;\n        };\n        backgroundClip: (value: Stitches.PropertyValue<'backgroundClip'>) => {\n            WebkitBackgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n            backgroundClip: import(\"@stitches/react/types/css-util\").WithPropertyValue<\"backgroundClip\">;\n        };\n    };\n};\nexport declare type CSS = Stitches.CSS<typeof config>;\nexport declare const darkTheme: string & {\n    className: string;\n    selector: string;\n} & import(\"@stitches/react/types/stitches\").ThemeTokens<{\n    colors: {\n        hiContrast: string;\n        loContrast: string;\n        canvas: string;\n        panel: string;\n        transparentPanel: string;\n        shadowLight: string;\n        shadowDark: string;\n        goldA1: string;\n        goldA2: string;\n        goldA3: string;\n        goldA4: string;\n        goldA5: string;\n        goldA6: string;\n        goldA7: string;\n        goldA8: string;\n        goldA9: string;\n        goldA10: string;\n        goldA11: string;\n        goldA12: string;\n        bronzeA1: string;\n        bronzeA2: string;\n        bronzeA3: string;\n        bronzeA4: string;\n        bronzeA5: string;\n        bronzeA6: string;\n        bronzeA7: string;\n        bronzeA8: string;\n        bronzeA9: string;\n        bronzeA10: string;\n        bronzeA11: string;\n        bronzeA12: string;\n        brownA1: string;\n        brownA2: string;\n        brownA3: string;\n        brownA4: string;\n        brownA5: string;\n        brownA6: string;\n        brownA7: string;\n        brownA8: string;\n        brownA9: string;\n        brownA10: string;\n        brownA11: string;\n        brownA12: string;\n        orangeA1: string;\n        orangeA2: string;\n        orangeA3: string;\n        orangeA4: string;\n        orangeA5: string;\n        orangeA6: string;\n        orangeA7: string;\n        orangeA8: string;\n        orangeA9: string;\n        orangeA10: string;\n        orangeA11: string;\n        orangeA12: string;\n        amberA1: string;\n        amberA2: string;\n        amberA3: string;\n        amberA4: string;\n        amberA5: string;\n        amberA6: string;\n        amberA7: string;\n        amberA8: string;\n        amberA9: string;\n        amberA10: string;\n        amberA11: string;\n        amberA12: string;\n        yellowA1: string;\n        yellowA2: string;\n        yellowA3: string;\n        yellowA4: string;\n        yellowA5: string;\n        yellowA6: string;\n        yellowA7: string;\n        yellowA8: string;\n        yellowA9: string;\n        yellowA10: string;\n        yellowA11: string;\n        yellowA12: string;\n        limeA1: string;\n        limeA2: string;\n        limeA3: string;\n        limeA4: string;\n        limeA5: string;\n        limeA6: string;\n        limeA7: string;\n        limeA8: string;\n        limeA9: string;\n        limeA10: string;\n        limeA11: string;\n        limeA12: string;\n        grassA1: string;\n        grassA2: string;\n        grassA3: string;\n        grassA4: string;\n        grassA5: string;\n        grassA6: string;\n        grassA7: string;\n        grassA8: string;\n        grassA9: string;\n        grassA10: string;\n        grassA11: string;\n        grassA12: string;\n        greenA1: string;\n        greenA2: string;\n        greenA3: string;\n        greenA4: string;\n        greenA5: string;\n        greenA6: string;\n        greenA7: string;\n        greenA8: string;\n        greenA9: string;\n        greenA10: string;\n        greenA11: string;\n        greenA12: string;\n        tealA1: string;\n        tealA2: string;\n        tealA3: string;\n        tealA4: string;\n        tealA5: string;\n        tealA6: string;\n        tealA7: string;\n        tealA8: string;\n        tealA9: string;\n        tealA10: string;\n        tealA11: string;\n        tealA12: string;\n        cyanA1: string;\n        cyanA2: string;\n        cyanA3: string;\n        cyanA4: string;\n        cyanA5: string;\n        cyanA6: string;\n        cyanA7: string;\n        cyanA8: string;\n        cyanA9: string;\n        cyanA10: string;\n        cyanA11: string;\n        cyanA12: string;\n        mintA1: string;\n        mintA2: string;\n        mintA3: string;\n        mintA4: string;\n        mintA5: string;\n        mintA6: string;\n        mintA7: string;\n        mintA8: string;\n        mintA9: string;\n        mintA10: string;\n        mintA11: string;\n        mintA12: string;\n        skyA1: string;\n        skyA2: string;\n        skyA3: string;\n        skyA4: string;\n        skyA5: string;\n        skyA6: string;\n        skyA7: string;\n        skyA8: string;\n        skyA9: string;\n        skyA10: string;\n        skyA11: string;\n        skyA12: string;\n        blueA1: string;\n        blueA2: string;\n        blueA3: string;\n        blueA4: string;\n        blueA5: string;\n        blueA6: string;\n        blueA7: string;\n        blueA8: string;\n        blueA9: string;\n        blueA10: string;\n        blueA11: string;\n        blueA12: string;\n        indigoA1: string;\n        indigoA2: string;\n        indigoA3: string;\n        indigoA4: string;\n        indigoA5: string;\n        indigoA6: string;\n        indigoA7: string;\n        indigoA8: string;\n        indigoA9: string;\n        indigoA10: string;\n        indigoA11: string;\n        indigoA12: string;\n        violetA1: string;\n        violetA2: string;\n        violetA3: string;\n        violetA4: string;\n        violetA5: string;\n        violetA6: string;\n        violetA7: string;\n        violetA8: string;\n        violetA9: string;\n        violetA10: string;\n        violetA11: string;\n        violetA12: string;\n        purpleA1: string;\n        purpleA2: string;\n        purpleA3: string;\n        purpleA4: string;\n        purpleA5: string;\n        purpleA6: string;\n        purpleA7: string;\n        purpleA8: string;\n        purpleA9: string;\n        purpleA10: string;\n        purpleA11: string;\n        purpleA12: string;\n        plumA1: string;\n        plumA2: string;\n        plumA3: string;\n        plumA4: string;\n        plumA5: string;\n        plumA6: string;\n        plumA7: string;\n        plumA8: string;\n        plumA9: string;\n        plumA10: string;\n        plumA11: string;\n        plumA12: string;\n        pinkA1: string;\n        pinkA2: string;\n        pinkA3: string;\n        pinkA4: string;\n        pinkA5: string;\n        pinkA6: string;\n        pinkA7: string;\n        pinkA8: string;\n        pinkA9: string;\n        pinkA10: string;\n        pinkA11: string;\n        pinkA12: string;\n        crimsonA1: string;\n        crimsonA2: string;\n        crimsonA3: string;\n        crimsonA4: string;\n        crimsonA5: string;\n        crimsonA6: string;\n        crimsonA7: string;\n        crimsonA8: string;\n        crimsonA9: string;\n        crimsonA10: string;\n        crimsonA11: string;\n        crimsonA12: string;\n        redA1: string;\n        redA2: string;\n        redA3: string;\n        redA4: string;\n        redA5: string;\n        redA6: string;\n        redA7: string;\n        redA8: string;\n        redA9: string;\n        redA10: string;\n        redA11: string;\n        redA12: string;\n        tomatoA1: string;\n        tomatoA2: string;\n        tomatoA3: string;\n        tomatoA4: string;\n        tomatoA5: string;\n        tomatoA6: string;\n        tomatoA7: string;\n        tomatoA8: string;\n        tomatoA9: string;\n        tomatoA10: string;\n        tomatoA11: string;\n        tomatoA12: string;\n        sandA1: string;\n        sandA2: string;\n        sandA3: string;\n        sandA4: string;\n        sandA5: string;\n        sandA6: string;\n        sandA7: string;\n        sandA8: string;\n        sandA9: string;\n        sandA10: string;\n        sandA11: string;\n        sandA12: string;\n        oliveA1: string;\n        oliveA2: string;\n        oliveA3: string;\n        oliveA4: string;\n        oliveA5: string;\n        oliveA6: string;\n        oliveA7: string;\n        oliveA8: string;\n        oliveA9: string;\n        oliveA10: string;\n        oliveA11: string;\n        oliveA12: string;\n        sageA1: string;\n        sageA2: string;\n        sageA3: string;\n        sageA4: string;\n        sageA5: string;\n        sageA6: string;\n        sageA7: string;\n        sageA8: string;\n        sageA9: string;\n        sageA10: string;\n        sageA11: string;\n        sageA12: string;\n        slateA1: string;\n        slateA2: string;\n        slateA3: string;\n        slateA4: string;\n        slateA5: string;\n        slateA6: string;\n        slateA7: string;\n        slateA8: string;\n        slateA9: string;\n        slateA10: string;\n        slateA11: string;\n        slateA12: string;\n        mauveA1: string;\n        mauveA2: string;\n        mauveA3: string;\n        mauveA4: string;\n        mauveA5: string;\n        mauveA6: string;\n        mauveA7: string;\n        mauveA8: string;\n        mauveA9: string;\n        mauveA10: string;\n        mauveA11: string;\n        mauveA12: string;\n        grayA1: string;\n        grayA2: string;\n        grayA3: string;\n        grayA4: string;\n        grayA5: string;\n        grayA6: string;\n        grayA7: string;\n        grayA8: string;\n        grayA9: string;\n        grayA10: string;\n        grayA11: string;\n        grayA12: string;\n        gold1: string;\n        gold2: string;\n        gold3: string;\n        gold4: string;\n        gold5: string;\n        gold6: string;\n        gold7: string;\n        gold8: string;\n        gold9: string;\n        gold10: string;\n        gold11: string;\n        gold12: string;\n        bronze1: string;\n        bronze2: string;\n        bronze3: string;\n        bronze4: string;\n        bronze5: string;\n        bronze6: string;\n        bronze7: string;\n        bronze8: string;\n        bronze9: string;\n        bronze10: string;\n        bronze11: string;\n        bronze12: string;\n        brown1: string;\n        brown2: string;\n        brown3: string;\n        brown4: string;\n        brown5: string;\n        brown6: string;\n        brown7: string;\n        brown8: string;\n        brown9: string;\n        brown10: string;\n        brown11: string;\n        brown12: string;\n        orange1: string;\n        orange2: string;\n        orange3: string;\n        orange4: string;\n        orange5: string;\n        orange6: string;\n        orange7: string;\n        orange8: string;\n        orange9: string;\n        orange10: string;\n        orange11: string;\n        orange12: string;\n        amber1: string;\n        amber2: string;\n        amber3: string;\n        amber4: string;\n        amber5: string;\n        amber6: string;\n        amber7: string;\n        amber8: string;\n        amber9: string;\n        amber10: string;\n        amber11: string;\n        amber12: string;\n        yellow1: string;\n        yellow2: string;\n        yellow3: string;\n        yellow4: string;\n        yellow5: string;\n        yellow6: string;\n        yellow7: string;\n        yellow8: string;\n        yellow9: string;\n        yellow10: string;\n        yellow11: string;\n        yellow12: string;\n        lime1: string;\n        lime2: string;\n        lime3: string;\n        lime4: string;\n        lime5: string;\n        lime6: string;\n        lime7: string;\n        lime8: string;\n        lime9: string;\n        lime10: string;\n        lime11: string;\n        lime12: string;\n        grass1: string;\n        grass2: string;\n        grass3: string;\n        grass4: string;\n        grass5: string;\n        grass6: string;\n        grass7: string;\n        grass8: string;\n        grass9: string;\n        grass10: string;\n        grass11: string;\n        grass12: string;\n        green1: string;\n        green2: string;\n        green3: string;\n        green4: string;\n        green5: string;\n        green6: string;\n        green7: string;\n        green8: string;\n        green9: string;\n        green10: string;\n        green11: string;\n        green12: string;\n        teal1: string;\n        teal2: string;\n        teal3: string;\n        teal4: string;\n        teal5: string;\n        teal6: string;\n        teal7: string;\n        teal8: string;\n        teal9: string;\n        teal10: string;\n        teal11: string;\n        teal12: string;\n        cyan1: string;\n        cyan2: string;\n        cyan3: string;\n        cyan4: string;\n        cyan5: string;\n        cyan6: string;\n        cyan7: string;\n        cyan8: string;\n        cyan9: string;\n        cyan10: string;\n        cyan11: string;\n        cyan12: string;\n        mint1: string;\n        mint2: string;\n        mint3: string;\n        mint4: string;\n        mint5: string;\n        mint6: string;\n        mint7: string;\n        mint8: string;\n        mint9: string;\n        mint10: string;\n        mint11: string;\n        mint12: string;\n        sky1: string;\n        sky2: string;\n        sky3: string;\n        sky4: string;\n        sky5: string;\n        sky6: string;\n        sky7: string;\n        sky8: string;\n        sky9: string;\n        sky10: string;\n        sky11: string;\n        sky12: string;\n        blue1: string;\n        blue2: string;\n        blue3: string;\n        blue4: string;\n        blue5: string;\n        blue6: string;\n        blue7: string;\n        blue8: string;\n        blue9: string;\n        blue10: string;\n        blue11: string;\n        blue12: string;\n        indigo1: string;\n        indigo2: string;\n        indigo3: string;\n        indigo4: string;\n        indigo5: string;\n        indigo6: string;\n        indigo7: string;\n        indigo8: string;\n        indigo9: string;\n        indigo10: string;\n        indigo11: string;\n        indigo12: string;\n        violet1: string;\n        violet2: string;\n        violet3: string;\n        violet4: string;\n        violet5: string;\n        violet6: string;\n        violet7: string;\n        violet8: string;\n        violet9: string;\n        violet10: string;\n        violet11: string;\n        violet12: string;\n        purple1: string;\n        purple2: string;\n        purple3: string;\n        purple4: string;\n        purple5: string;\n        purple6: string;\n        purple7: string;\n        purple8: string;\n        purple9: string;\n        purple10: string;\n        purple11: string;\n        purple12: string;\n        plum1: string;\n        plum2: string;\n        plum3: string;\n        plum4: string;\n        plum5: string;\n        plum6: string;\n        plum7: string;\n        plum8: string;\n        plum9: string;\n        plum10: string;\n        plum11: string;\n        plum12: string;\n        pink1: string;\n        pink2: string;\n        pink3: string;\n        pink4: string;\n        pink5: string;\n        pink6: string;\n        pink7: string;\n        pink8: string;\n        pink9: string;\n        pink10: string;\n        pink11: string;\n        pink12: string;\n        crimson1: string;\n        crimson2: string;\n        crimson3: string;\n        crimson4: string;\n        crimson5: string;\n        crimson6: string;\n        crimson7: string;\n        crimson8: string;\n        crimson9: string;\n        crimson10: string;\n        crimson11: string;\n        crimson12: string;\n        red1: string;\n        red2: string;\n        red3: string;\n        red4: string;\n        red5: string;\n        red6: string;\n        red7: string;\n        red8: string;\n        red9: string;\n        red10: string;\n        red11: string;\n        red12: string;\n        tomato1: string;\n        tomato2: string;\n        tomato3: string;\n        tomato4: string;\n        tomato5: string;\n        tomato6: string;\n        tomato7: string;\n        tomato8: string;\n        tomato9: string;\n        tomato10: string;\n        tomato11: string;\n        tomato12: string;\n        sand1: string;\n        sand2: string;\n        sand3: string;\n        sand4: string;\n        sand5: string;\n        sand6: string;\n        sand7: string;\n        sand8: string;\n        sand9: string;\n        sand10: string;\n        sand11: string;\n        sand12: string;\n        olive1: string;\n        olive2: string;\n        olive3: string;\n        olive4: string;\n        olive5: string;\n        olive6: string;\n        olive7: string;\n        olive8: string;\n        olive9: string;\n        olive10: string;\n        olive11: string;\n        olive12: string;\n        sage1: string;\n        sage2: string;\n        sage3: string;\n        sage4: string;\n        sage5: string;\n        sage6: string;\n        sage7: string;\n        sage8: string;\n        sage9: string;\n        sage10: string;\n        sage11: string;\n        sage12: string;\n        slate1: string;\n        slate2: string;\n        slate3: string;\n        slate4: string;\n        slate5: string;\n        slate6: string;\n        slate7: string;\n        slate8: string;\n        slate9: string;\n        slate10: string;\n        slate11: string;\n        slate12: string;\n        mauve1: string;\n        mauve2: string;\n        mauve3: string;\n        mauve4: string;\n        mauve5: string;\n        mauve6: string;\n        mauve7: string;\n        mauve8: string;\n        mauve9: string;\n        mauve10: string;\n        mauve11: string;\n        mauve12: string;\n        gray1: string;\n        gray2: string;\n        gray3: string;\n        gray4: string;\n        gray5: string;\n        gray6: string;\n        gray7: string;\n        gray8: string;\n        gray9: string;\n        gray10: string;\n        gray11: string;\n        gray12: string;\n    };\n}, \"\">;\n"
  },
  {
    "path": "packages/test/index.tsx",
    "content": "import * as React from 'react'\nimport { styled, CSS } from './stitches.config'\n\nexport const Text = styled('span', {\n\tbackground: '$red100',\n\tpaddingBlock: '$2',\n\tcolor: 'AliceBlue',\n\tvariants: {\n\t\tvariant: {\n\t\t\tred: {\n\t\t\t\tbackgroundColor: '$red100',\n\t\t\t}\n\t\t}\n\t},\n})\n\nconst DEFAULT_TAG = 'h1'\nconst bla: CSS = {\n\tbackground: '$amber1',\n}\n const Test = styled('div', bla)\nexport type HeadingProps = React.ComponentProps<typeof DEFAULT_TAG> & { css?: CSS }\n\n// ref should be span element\ntype ref = React.ElementRef<typeof Text>\n\nconst Heading = React.forwardRef<React.ElementRef<typeof DEFAULT_TAG>, HeadingProps>((props, forwardedRef) => {\n\treturn (\n\t\t<>\n\t\t\t<Text onClick={(e) => { console.log(e.altKey) }} css={{backgroundClip: 'content-box', \"@bp10\": { backgroundClip: 'content-box' }}} />\n\t\t\t<Text as={DEFAULT_TAG} onClick={(e: any) => { console.log(e.altKey) }} ref={forwardedRef} css={{ borderTopColor: 'AliceBlue', backgroundColor: 'ActiveText', backgroundAttachment: 'inherit', backgroundOrigin: 'border-box', colorAdjust: 'economy' }} />\n\t\t\t<Text onClick={(e) => { console.log(e.altKey) }} ref={forwardedRef} css={{ 'backgroundClip': 'border-box', 'ml': 'auto', '@bp1': { backgroundAttachment: 'fixed', }, hello: { backgroundClip: 'border-box' } }} />\n\t\t\t<Text onClick={(e) => { console.log(e.altKey) }} ref={forwardedRef} css={{ backgroundColor: '$red100', backgroundAttachment: 'inherit', backgroundOrigin: 'border-box' }} />\n\t\t\t<Text as=\"b\" onClick={(e: any) => { console.log(e.altKey) }} ref={forwardedRef} css={{ ...props.css, 'backgroundColor': '$red100', 'padding': 'initial', '@bp3': { paddingBlock: 'inherit', }, }} />\n\t\t\t<Text as=\"div\" onClick={(e: any) => { console.log(e.altKey) }} css={{ ...props.css, backgroundColor: '$red100', background: 'red', paddingLeft: 'initial'}} />\n\t\t\t<Text as=\"div\" onClick={(e: any) => { console.log(e.altKey) }} css={props.css} />\n\t\t\t<Text as={DEFAULT_TAG} {...props} onClick={(e: any) => { console.log(e.altKey) }} ref={forwardedRef} />\n\t\t</>\n\t)\n})\n\nconst App = () => {\n\t// when consuming the component it should be very fast too\n\treturn <Heading css={{ backgroundColor: '$red100', padding: 'inherit', colorScheme: 'dark' }} />\n}\n"
  },
  {
    "path": "packages/test/issue-749-react.tsx",
    "content": "import * as React from 'react'\nimport { styled } from './stitches.config'\n\nconst Box = styled('div', {\n\tvariants: {\n\t\tsize: {\n\t\t\tsmall: {},\n\t\t},\n\t},\n})\n\nconst Flex = styled(Box, {\n\tvariants: {\n\t\tvariant: {\n\t\t\tred: {},\n\t\t},\n\t},\n})\n\nexport default function App() {\n\treturn (\n\t\t<>\n\t\t\t<Flex as=\"a\" variant=\"red\" size=\"small\" />\n\t\t\t<Flex as=\"a\" variant=\"red\" />\n\t\t\t<Flex as=\"a\" size=\"small\" />\n\t\t\t<Flex variant=\"red\" size=\"small\" />\n\t\t\t<Flex variant=\"red\" />\n\t\t\t<Flex size=\"small\" />\n\t\t</>\n\t)\n}\n"
  },
  {
    "path": "packages/test/package.json",
    "content": "{\n  \"name\": \"@stitches/test\",\n  \"version\": \"1.3.1-1\",\n  \"type\": \"module\",\n  \"files\": [\n    \"dist/*.cjs\",\n    \"dist/*.js\",\n    \"dist/*.map\",\n    \"dist/*.mjs\",\n    \"types/*.d.ts\"\n  ],\n  \"scripts\": {\n    \"build\": \"tsc --generateTrace traces --incremental false\"\n  },\n  \"devDependencies\": {\n    \"@stitches/react\": \"1.3.1-0\",\n    \"@typescript-eslint/eslint-plugin\": \"^1.6.0\",\n    \"@typescript-eslint/parser\": \"^1.6.0\",\n    \"eslint-config-prettier\": \"^4.1.0\",\n    \"eslint-config-react\": \"^1.1.7\",\n    \"eslint-plugin-prettier\": \"^3.0.1\",\n    \"prettier\": \"^1.16.4\"\n  },\n  \"private\": true,\n  \"dependencies\": {\n    \"@radix-ui/colors\": \"0.1.7\",\n    \"@radix-ui/react-dialog\": \"0.0.20\",\n    \"@radix-ui/react-polymorphic\": \"0.0.13\",\n    \"@types/lodash.merge\": \"4.6.6\"\n  }\n}\n"
  },
  {
    "path": "packages/test/stitches.config.ts",
    "content": "import { createStitches } from '@stitches/react';\nimport {\n  gray,\n  mauve,\n  slate,\n  sage,\n  olive,\n  sand,\n  tomato,\n  red,\n  crimson,\n  pink,\n  plum,\n  purple,\n  violet,\n  indigo,\n  blue,\n  sky,\n  mint,\n  cyan,\n  teal,\n  green,\n  grass,\n  lime,\n  yellow,\n  amber,\n  orange,\n  brown,\n  bronze,\n  gold,\n  grayA,\n  mauveA,\n  slateA,\n  sageA,\n  oliveA,\n  sandA,\n  tomatoA,\n  redA,\n  crimsonA,\n  pinkA,\n  plumA,\n  purpleA,\n  violetA,\n  indigoA,\n  blueA,\n  skyA,\n  mintA,\n  cyanA,\n  tealA,\n  greenA,\n  grassA,\n  limeA,\n  yellowA,\n  amberA,\n  orangeA,\n  brownA,\n  bronzeA,\n  goldA,\n  whiteA,\n  blackA,\n  grayDark,\n  mauveDark,\n  slateDark,\n  sageDark,\n  oliveDark,\n  sandDark,\n  tomatoDark,\n  redDark,\n  crimsonDark,\n  pinkDark,\n  plumDark,\n  purpleDark,\n  violetDark,\n  indigoDark,\n  blueDark,\n  skyDark,\n  mintDark,\n  cyanDark,\n  tealDark,\n  greenDark,\n  grassDark,\n  limeDark,\n  yellowDark,\n  amberDark,\n  orangeDark,\n  brownDark,\n  bronzeDark,\n  goldDark,\n  grayDarkA,\n  mauveDarkA,\n  slateDarkA,\n  sageDarkA,\n  oliveDarkA,\n  sandDarkA,\n  tomatoDarkA,\n  redDarkA,\n  crimsonDarkA,\n  pinkDarkA,\n  plumDarkA,\n  purpleDarkA,\n  violetDarkA,\n  indigoDarkA,\n  blueDarkA,\n  skyDarkA,\n  mintDarkA,\n  cyanDarkA,\n  tealDarkA,\n  greenDarkA,\n  grassDarkA,\n  limeDarkA,\n  yellowDarkA,\n  amberDarkA,\n  orangeDarkA,\n  brownDarkA,\n  bronzeDarkA,\n  goldDarkA,\n} from '@radix-ui/colors';\nimport type * as Stitches from '@stitches/react';\nexport type { VariantProps } from '@stitches/react';\n\nexport const {\n  styled,\n\n  createTheme,\n  getCssText,\n\n  keyframes,\n  config,\n} = createStitches({\n  theme: {\n    colors: {\n      ...gray,\n      ...mauve,\n      ...slate,\n      ...sage,\n      ...olive,\n      ...sand,\n      ...tomato,\n      ...red,\n      ...crimson,\n      ...pink,\n      ...plum,\n      ...purple,\n      ...violet,\n      ...indigo,\n      ...blue,\n      ...sky,\n      ...mint,\n      ...cyan,\n      ...teal,\n      ...green,\n      ...grass,\n      ...lime,\n      ...yellow,\n      ...amber,\n      ...orange,\n      ...brown,\n      ...bronze,\n      ...gold,\n\n      ...grayA,\n      ...mauveA,\n      ...slateA,\n      ...sageA,\n      ...oliveA,\n      ...sandA,\n      ...tomatoA,\n      ...redA,\n      ...crimsonA,\n      ...pinkA,\n      ...plumA,\n      ...purpleA,\n      ...violetA,\n      ...indigoA,\n      ...blueA,\n      ...skyA,\n      ...mintA,\n      ...cyanA,\n      ...tealA,\n      ...greenA,\n      ...grassA,\n      ...limeA,\n      ...yellowA,\n      ...amberA,\n      ...orangeA,\n      ...brownA,\n      ...bronzeA,\n      ...goldA,\n\n      ...whiteA,\n      ...blackA,\n\n      // Semantic colors\n      hiContrast: '$slate12',\n      // loContrast: '$slate1',\n      loContrast: 'white',\n      canvas: 'hsl(0 0% 93%)',\n      panel: 'white',\n      transparentPanel: 'hsl(0 0% 0% / 97%)',\n      shadowLight: 'hsl(206 22% 7% / 35%)',\n      shadowDark: 'hsl(206 22% 7% / 20%)',\n    },\n    fonts: {\n      untitled: 'Untitled Sans, -apple-system, system-ui, sans-serif',\n      mono: 'Söhne Mono, menlo, monospace',\n    },\n    space: {\n      1: '5px',\n      2: '10px',\n      3: '15px',\n      4: '20px',\n      5: '25px',\n      6: '35px',\n      7: '45px',\n      8: '65px',\n      9: '80px',\n    },\n    sizes: {\n      1: '5px',\n      2: '10px',\n      3: '15px',\n      4: '20px',\n      5: '25px',\n      6: '35px',\n      7: '45px',\n      8: '65px',\n      9: '80px',\n    },\n    // space: {\n    //   1: '4px',\n    //   2: '8px',\n    //   3: '16px',\n    //   4: '20px',\n    //   5: '24px',\n    //   6: '32px',\n    //   7: '48px',\n    //   8: '64px',\n    //   9: '80px',\n    // },\n    // sizes: {\n    //   1: '4px',\n    //   2: '8px',\n    //   3: '16px',\n    //   4: '20px',\n    //   5: '24px',\n    //   6: '32px',\n    //   7: '48px',\n    //   8: '64px',\n    //   9: '80px',\n    // },\n    fontSizes: {\n      1: '12px',\n      2: '13px',\n      3: '15px',\n      4: '17px',\n      5: '19px',\n      6: '21px',\n      7: '27px',\n      8: '35px',\n      9: '59px',\n    },\n    // fontSizes: {\n    //   1: '11px',\n    //   2: '12px',\n    //   3: '15px',\n    //   4: '17px',\n    //   5: '20px',\n    //   6: '22px',\n    //   7: '28px',\n    //   8: '36px',\n    //   9: '60px',\n    // },\n    radii: {\n      1: '4px',\n      2: '6px',\n      3: '8px',\n      4: '12px',\n      round: '50%',\n      pill: '9999px',\n    },\n    zIndices: {\n      1: '100',\n      2: '200',\n      3: '300',\n      4: '400',\n      max: '999',\n    },\n  },\n  media: {\n    bp1: '(min-width: 520px)',\n    bp2: '(min-width: 900px)',\n    bp3: '(min-width: 1200px)',\n    bp4: '(min-width: 1800px)',\n    motion: '(prefers-reduced-motion)',\n    hover: '(any-hover: hover)',\n    dark: '(prefers-color-scheme: dark)',\n    light: '(prefers-color-scheme: light)',\n  },\n  utils: {\n    p: (value: Stitches.PropertyValue<'padding'>) => ({\n      padding: value,\n    }),\n    pt: (value: Stitches.PropertyValue<'paddingTop'>) => ({\n      paddingTop: value,\n    }),\n    pr: (value: Stitches.PropertyValue<'paddingRight'>) => ({\n      paddingRight: value,\n    }),\n    pb: (value: Stitches.PropertyValue<'paddingBottom'>) => ({\n      paddingBottom: value,\n    }),\n    pl: (value: Stitches.PropertyValue<'paddingLeft'>) => ({\n      paddingLeft: value,\n    }),\n    px: (value: Stitches.PropertyValue<'paddingLeft'>) => ({\n      paddingLeft: value,\n      paddingRight: value,\n    }),\n    py: (value: Stitches.PropertyValue<'paddingTop'>) => ({\n      paddingTop: value,\n      paddingBottom: value,\n    }),\n\n    m: (value: Stitches.PropertyValue<'margin'>) => ({\n      margin: value,\n    }),\n    mt: (value: Stitches.PropertyValue<'marginTop'>) => ({\n      marginTop: value,\n    }),\n    mr: (value: Stitches.PropertyValue<'marginRight'>) => ({\n      marginRight: value,\n    }),\n    mb: (value: Stitches.PropertyValue<'marginBottom'>) => ({\n      marginBottom: value,\n    }),\n    ml: (value: Stitches.PropertyValue<'marginLeft'>) => ({\n      marginLeft: value,\n    }),\n    mx: (value: Stitches.PropertyValue<'marginLeft'>) => ({\n      marginLeft: value,\n      marginRight: value,\n    }),\n    my: (value: Stitches.PropertyValue<'marginTop'>) => ({\n      marginTop: value,\n      marginBottom: value,\n    }),\n\n    ta: (value: Stitches.PropertyValue<'textAlign'>) => ({ textAlign: value }),\n\n    fd: (value: Stitches.PropertyValue<'flexDirection'>) => ({ flexDirection: value }),\n    fw: (value: Stitches.PropertyValue<'flexWrap'>) => ({ flexWrap: value }),\n\n    ai: (value: Stitches.PropertyValue<'alignItems'>) => ({ alignItems: value }),\n    ac: (value: Stitches.PropertyValue<'alignContent'>) => ({ alignContent: value }),\n    jc: (value: Stitches.PropertyValue<'justifyContent'>) => ({ justifyContent: value }),\n    as: (value: Stitches.PropertyValue<'alignSelf'>) => ({ alignSelf: value }),\n    fg: (value: Stitches.PropertyValue<'flexGrow'>) => ({ flexGrow: value }),\n    fs: (value: Stitches.PropertyValue<'flexShrink'>) => ({ flexShrink: value }),\n    fb: (value: Stitches.PropertyValue<'flexBasis'>) => ({ flexBasis: value }),\n\n    bc: (value: Stitches.PropertyValue<'backgroundColor'>) => ({\n      backgroundColor: value,\n    }),\n\n    br: (value: Stitches.PropertyValue<'borderRadius'>) => ({\n      borderRadius: value,\n    }),\n    btrr: (value: Stitches.PropertyValue<'borderTopRightRadius'>) => ({\n      borderTopRightRadius: value,\n    }),\n    bbrr: (value: Stitches.PropertyValue<'borderBottomRightRadius'>) => ({\n      borderBottomRightRadius: value,\n    }),\n    bblr: (value: Stitches.PropertyValue<'borderBottomLeftRadius'>) => ({\n      borderBottomLeftRadius: value,\n    }),\n    btlr: (value: Stitches.PropertyValue<'borderTopLeftRadius'>) => ({\n      borderTopLeftRadius: value,\n    }),\n\n    bs: (value: Stitches.PropertyValue<'boxShadow'>) => ({ boxShadow: value }),\n\n    lh: (value: Stitches.PropertyValue<'lineHeight'>) => ({ lineHeight: value }),\n\n    ox: (value: Stitches.PropertyValue<'overflowX'>) => ({ overflowX: value }),\n    oy: (value: Stitches.PropertyValue<'overflowY'>) => ({ overflowY: value }),\n\n    pe: (value: Stitches.PropertyValue<'pointerEvents'>) => ({ pointerEvents: value }),\n    us: (value: Stitches.PropertyValue<'userSelect'>) => ({\n      WebkitUserSelect: value,\n      userSelect: value,\n    }),\n\n    userSelect: (value: Stitches.PropertyValue<'userSelect'>) => ({\n      WebkitUserSelect: value,\n      userSelect: value,\n    }),\n\n    size: (value: Stitches.PropertyValue<'width'>) => ({\n      width: value,\n      height: value,\n    }),\n\n    appearance: (value: Stitches.PropertyValue<'appearance'>) => ({\n      WebkitAppearance: value,\n      appearance: value,\n    }),\n    backgroundClip: (value: Stitches.PropertyValue<'backgroundClip'>) => ({\n      WebkitBackgroundClip: value,\n      backgroundClip: value,\n    }),\n  },\n});\n\nexport type CSS = Stitches.CSS<typeof config>;\n\nexport const darkTheme = createTheme('dark-theme', {\n  colors: {\n    ...grayDark,\n    ...mauveDark,\n    ...slateDark,\n    ...sageDark,\n    ...oliveDark,\n    ...sandDark,\n    ...tomatoDark,\n    ...redDark,\n    ...crimsonDark,\n    ...pinkDark,\n    ...plumDark,\n    ...purpleDark,\n    ...violetDark,\n    ...indigoDark,\n    ...blueDark,\n    ...skyDark,\n    ...mintDark,\n    ...cyanDark,\n    ...tealDark,\n    ...greenDark,\n    ...grassDark,\n    ...limeDark,\n    ...yellowDark,\n    ...amberDark,\n    ...orangeDark,\n    ...brownDark,\n    ...bronzeDark,\n    ...goldDark,\n\n    ...grayDarkA,\n    ...mauveDarkA,\n    ...slateDarkA,\n    ...sageDarkA,\n    ...oliveDarkA,\n    ...sandDarkA,\n    ...tomatoDarkA,\n    ...redDarkA,\n    ...crimsonDarkA,\n    ...pinkDarkA,\n    ...plumDarkA,\n    ...purpleDarkA,\n    ...violetDarkA,\n    ...indigoDarkA,\n    ...blueDarkA,\n    ...skyDarkA,\n    ...mintDarkA,\n    ...cyanDarkA,\n    ...tealDarkA,\n    ...greenDarkA,\n    ...grassDarkA,\n    ...limeDarkA,\n    ...yellowDarkA,\n    ...amberDarkA,\n    ...orangeDarkA,\n    ...brownDarkA,\n    ...bronzeDarkA,\n    ...goldDarkA,\n\n    // Semantic colors\n    hiContrast: '$slate12',\n    loContrast: '$slate1',\n    canvas: 'hsl(0 0% 15%)',\n    panel: '$slate3',\n    transparentPanel: 'hsl(0 100% 100% / 97%)',\n    shadowLight: 'hsl(206 22% 7% / 35%)',\n    shadowDark: 'hsl(206 22% 7% / 20%)',\n  },\n});"
  },
  {
    "path": "packages/test/traces/trace.json",
    "content": "[\n{\"name\":\"process_name\",\"args\":{\"name\":\"tsc\"},\"cat\":\"__metadata\",\"ph\":\"M\",\"ts\":104372.70903587341,\"pid\":1,\"tid\":1},\n{\"name\":\"thread_name\",\"args\":{\"name\":\"Main\"},\"cat\":\"__metadata\",\"ph\":\"M\",\"ts\":104372.70903587341,\"pid\":1,\"tid\":1},\n{\"name\":\"TracingStartedInBrowser\",\"cat\":\"disabled-by-default-devtools.timeline\",\"ph\":\"M\",\"ts\":104372.70903587341,\"pid\":1,\"tid\":1},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"program\",\"ts\":104841.70913696289,\"name\":\"createProgram\",\"args\":{\"configFilePath\":\"/Users/abdul/work/stitches/packages/test/tsconfig.json\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":106094.95902061462,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":107817.50011444092,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":108780.04193305969,\"name\":\"resolveModuleNamesWorker\",\"dur\":2498.9171028137207,\"args\":{\"containingFileName\":\"/Users/abdul/work/stitches/packages/test/Issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":111630.95903396606,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":115691.79201126099,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":116487.04195022583,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":119662.08410263062,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":120217.41700172424,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":123158.12492370605,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":124313.9591217041,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":162691.75004959106,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":123359.83395576477,\"name\":\"findSourceFile\",\"dur\":39538.16604614258,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/core/types/css.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":163369.4999217987,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":164154.5000076294,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":164577.41713523865,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":165104.33411598206,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":165465.50011634827,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":165749.33409690857,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":119950.16694068909,\"name\":\"findSourceFile\",\"dur\":45825.66714286804,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/core/types/css-util.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":166016.91699028015,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":167750.99992752075,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/core/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":116416.00012779236,\"name\":\"findSourceFile\",\"dur\":51518.99981498718,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/core/types/stitches.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":111407.9999923706,\"name\":\"findSourceFile\",\"dur\":56649.45912361145,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/core/types/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":105451.41696929932,\"name\":\"findSourceFile\",\"dur\":62620.83315849304,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/test/Issue-803-core.ts\",\"fileIncludeKind\":\"RootFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":168427.83403396606,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":169293.87497901917,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":169339.95914459229,\"name\":\"resolveModuleNamesWorker\",\"dur\":810.8329772949219,\"args\":{\"containingFileName\":\"/Users/abdul/work/stitches/packages/test/Issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":170385.66708564758,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":171298.583984375,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":171716.91703796387,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":172681.87499046326,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":173068.70913505554,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":173591.4590358734,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":174611.1249923706,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":199193.41707229614,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":173730.20911216736,\"name\":\"findSourceFile\",\"dur\":25544.16584968567,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/react/types/css.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":199686.95902824402,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":200246.8340396881,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":199299.4999885559,\"name\":\"findSourceFile\",\"dur\":1049.9589443206787,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/react/types/config.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":200600.04210472107,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":200813.6670589447,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":200987.16711997986,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":201131.41703605652,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":172882.66706466675,\"name\":\"findSourceFile\",\"dur\":28283.249855041504,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/react/types/css-util.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":201377.54201889038,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":201993.99995803833,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/react/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":204739.16697502136,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":230448.499917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":231022.66693115234,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":231822.49999046326,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":236201.9169330597,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":290266.58391952515,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":234575.08397102356,\"name\":\"findSourceFile\",\"dur\":55792.70815849304,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":291449.45907592773,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/prop-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":292352.4589538574,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/prop-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":292812.8750324249,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/scheduler/tracing.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":293430.3750991821,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/scheduler/tracing.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":204177.0839691162,\"name\":\"findSourceFile\",\"dur\":89285.70795059204,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":201181.49995803833,\"name\":\"findSourceFile\",\"dur\":92310.95910072327,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/react/types/styled-component.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":171625.49996376038,\"name\":\"findSourceFile\",\"dur\":121887.83407211304,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/react/types/stitches.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":170188.45891952515,\"name\":\"findSourceFile\",\"dur\":123493.91603469849,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/react/types/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":168096.20904922485,\"name\":\"findSourceFile\",\"dur\":125603.25002670288,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/test/Issue-803-react.ts\",\"fileIncludeKind\":\"RootFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":293980.79204559326,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":295636.12508773804,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":296041.6250228882,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":296312.33406066895,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/Issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":296595.4170227051,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":298236.0420227051,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":298559.79204177856,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":300546.16713523865,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":301691.4999485016,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":301758.00013542175,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":302459.41710472107,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":302878.33404541016,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":304744.2090511322,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":304823.2090473175,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":305002.0000934601,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":305060.91713905334,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":305170.7921028137,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":305226.16696357727,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":305406.37493133545,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":305463.4590148926,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":305660.41707992554,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":305733.0000400543,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":305837.3339176178,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":305924.00002479553,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":306046.12493515015,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":306114.95900154114,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":306198.37498664856,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":306259.91702079773,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":306345.33405303955,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":306427.25014686584,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":306524.542093277,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":306588.75012397766,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":306763.5841369629,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":306828.1669616699,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307029.08396720886,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":307091.00008010864,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307231.7500114441,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":307277.83393859863,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307344.8750972748,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":307381.0420036316,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307440.9589767456,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":307479.29215431213,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307534.79194641113,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":307569.7090625763,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307790.5840873718,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":307824.79214668274,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":307989.9170398712,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":308041.20898246765,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":308113.7499809265,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":308169.7919368744,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":308246.2921142578,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":308287.25004196167,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":308352.3750305176,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":308393.12505722046,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":308451.6670703888,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":308488.29197883606,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":310403.2919406891,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":310618.9169883728,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":308502.50005722046,\"name\":\"findSourceFile\",\"dur\":2136.2500190734863,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":310718.58406066895,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":310765.625,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":310839.1671180725,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":310877.0840167999,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":310940.3750896454,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":310998.2500076294,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":311072.8340148926,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":311586.12513542175,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":311656.2089920044,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":311705.0840854645,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":311877.249956131,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amberA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":311914.0839576721,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amberA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312018.8341140747,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blueA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312053.66706848145,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blueA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312117.58399009705,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronzeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312152.2090435028,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronzeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312210.1249694824,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brownA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312243.7090873718,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brownA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312302.20913887024,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimsonA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312336.2920284271,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimsonA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312391.1249637604,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyanA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312424.124956131,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyanA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312475.1250743866,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/goldA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312508.1250667572,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/goldA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312562.08395957947,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grassA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312595.0839519501,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grassA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312661.2501144409,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grayA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312698.29201698303,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grayA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312758.0420970917,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/greenA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312790.5840873718,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/greenA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312849.8749732971,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312882.7500343323,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":312936.50007247925,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/limeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":312969.20895576477,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/limeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313020.4589366913,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mintA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313052.7501106262,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mintA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313105.0419807434,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/oliveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313138.45896720886,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/oliveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313188.7090206146,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orangeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313221.3339805603,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orangeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313272.0420360565,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pinkA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313307.50012397766,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pinkA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313369.87495422363,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plumA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313404.62493896484,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plumA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313459.66696739197,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purpleA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313493.124961853,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purpleA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313548.583984375,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313581.16698265076,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313632.6251029968,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/redA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313762.87508010864,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/redA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313829.2090892792,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sageA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313863.04211616516,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sageA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":313935.62507629395,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sandA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":313984.6251010895,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sandA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":314055.75013160706,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/skyA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":314093.33395957947,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/skyA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":314151.6671180725,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slateA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":314273.4999656677,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slateA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":314452.8341293335,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tealA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":314507.8749656677,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tealA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":314578.0420303345,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomatoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":314613.0840778351,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomatoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":314688.1670951843,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violetA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":314729.0840148926,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violetA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":314821.084022522,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellowA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":314870.9590435028,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellowA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":302118.8750267029,\"name\":\"findSourceFile\",\"dur\":12770.37501335144,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":315139.91713523865,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":315311.6669654846,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":317602.1671295166,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":317659.58404541016,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":317722.7921485901,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":317760.0419521332,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":317837.5840187073,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":317873.16703796387,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":317937.33406066895,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":317970.1669216156,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318122.45893478394,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318157.958984375,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318210.1249694824,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318241.75000190735,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318292.41704940796,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318323.5421180725,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318375.3340244293,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318409.3749523163,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318466.0840034485,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318497.1251487732,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318546.75006866455,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318577.584028244,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318720.1249599457,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":318756.5839290619,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":318811.1250400543,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319289.7090911865,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":319360.2089881897,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319393.29195022583,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":319464.45894241333,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319505.37514686584,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":319703.87506484985,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319737.7920150757,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":319791.79215431213,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319824.00012016296,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":319876.9590854645,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319908.41698646545,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":319959.91706848145,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":319993.8340187073,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":319922.6670265198,\"name\":\"findSourceFile\",\"dur\":85.12496948242188,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":320064.7919178009,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":320206.2499523163,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":320271.4591026306,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":320327.0001411438,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":320512.6669406891,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":320553.70903015137,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":320766.04199409485,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":320803.8749694824,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":320969.3751335144,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321003.87501716614,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321061.2919330597,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321092.8750038147,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321144.3340778351,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321175.3749847412,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321225.83413124084,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321259.2499256134,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321310.7919692993,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321342.5419330597,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321401.99995040894,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321433.24995040894,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321512.87508010864,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amberA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321549.04198646545,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amberA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321613.04211616516,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blueA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321646.87514305115,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blueA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321701.49993896484,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronzeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321732.54203796387,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronzeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321782.3340892792,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brownA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321813.1251335144,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brownA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321869.91715431213,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimsonA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321900.7091522217,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimsonA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":321949.4171142578,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyanA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":321978.74999046326,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyanA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322039.4170284271,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/goldA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322071.249961853,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/goldA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322125.8749961853,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grassA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322321.5000629425,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grassA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322375.2090930939,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grayA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322407.0839881897,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grayA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322465.9171104431,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/greenA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322516.8340206146,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/greenA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322602.9999256134,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322640.70892333984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322699.0420818329,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/limeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322732.9590320587,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/limeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322787.0841026306,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mintA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322820.3749656677,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mintA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322874.04203414917,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/oliveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322905.79199790955,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/oliveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":322957.54194259644,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orangeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":322988.91711235046,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orangeA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323051.95903778076,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pinkA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323082.7920436859,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pinkA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323136.74998283386,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plumA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323175.1251220703,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plumA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323225.79193115234,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purpleA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323256.79206848145,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purpleA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323319.2090988159,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323350.5001068115,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauveA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323406.5001010895,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/redA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323438.0419254303,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/redA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323487.70904541016,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sageA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323518.2089805603,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sageA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323569.9999332428,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sandA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323600.20899772644,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sandA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323650.91705322266,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/skyA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323682.0840835571,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/skyA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323732.3341369629,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slateA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323763.041973114,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slateA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323811.83409690857,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tealA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323842.8339958191,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tealA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323895.91693878174,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomatoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":323929.0840625763,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomatoA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":323981.08410835266,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violetA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":324011.50012016296,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violetA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":324060.62507629395,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellowA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":324097.41711616516,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellowA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":314907.83405303955,\"name\":\"findSourceFile\",\"dur\":9202.540874481201,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":324292.249917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/blackA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":324328.83405685425,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/blackA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":324495.5840110779,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/whiteA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":324526.75008773804,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/whiteA.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":301453.3751010895,\"name\":\"findSourceFile\",\"dur\":23086.041927337646,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":298462.9170894623,\"name\":\"findSourceFile\",\"dur\":26098.999977111816,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/test/stitches.config.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":296376.7499923706,\"name\":\"findSourceFile\",\"dur\":28196.58398628235,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/packages/test/index.tsx\",\"fileIncludeKind\":\"RootFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":324751.87492370605,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":325082.91697502136,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":105335.87503433228,\"name\":\"processRootFiles\",\"dur\":219829.66709136963,\"args\":{\"count\":7}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":334206.50005340576,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/eslint-visitor-keys/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":334334.7089290619,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/eslint-visitor-keys/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":334564.5840167999,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/json-schema/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":336793.0841445923,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/json-schema/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":337079.6251296997,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":337506.334066391,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":337739.16697502136,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":340956.75015449524,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":337540.4589176178,\"name\":\"findSourceFile\",\"dur\":3588.541030883789,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":341665.7090187073,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":349755.95903396606,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":350275.1669883728,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":359945.9590911865,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":349874.9170303345,\"name\":\"findSourceFile\",\"dur\":10277.832984924316,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":360513.6251449585,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":360612.95914649963,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":360992.04206466675,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/function.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":366749.04203414917,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/function.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":367184.41700935364,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":371674.4589805603,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":366845.87502479553,\"name\":\"findSourceFile\",\"dur\":4909.625053405762,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":372027.58407592773,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/math.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":373478.3339500427,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/math.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":373735.7919216156,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":374211.2090587616,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":374592.45896339417,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":385089.3340110779,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":374273.33402633667,\"name\":\"findSourceFile\",\"dur\":10969.290971755981,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":385621.95897102356,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/seq.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":386159.4171524048,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/seq.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":386401.2920856476,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":388043.9169406891,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":388399.6670246124,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":392170.1669692993,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":388113.58404159546,\"name\":\"findSourceFile\",\"dur\":4128.124952316284,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":336845.0839519501,\"name\":\"findSourceFile\",\"dur\":55476.66597366333,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\",\"fileIncludeKind\":\"AutomaticTypeDirectiveFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":336836.2090587616,\"name\":\"processTypeReferenceDirective\",\"dur\":55502.583026885986,\"args\":{\"directive\":\"lodash\",\"hasResolved\":true,\"refKind\":8}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":392635.0419521332,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash.merge/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":392699.45907592773,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/lodash.merge/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":393174.9589443207,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":393711.7919921875,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":393966.00008010864,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/assert.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":397964.45894241333,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/assert.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":398445.45912742615,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/assert/strict.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":398504.20904159546,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/assert/strict.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":399146.1670398712,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":401634.75012779236,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":398877.375125885,\"name\":\"findSourceFile\",\"dur\":2825.4168033599854,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":402025.5000591278,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/async_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":403498.45910072327,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/async_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":403971.6250896454,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":413837.3749256134,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":403555.41706085205,\"name\":\"findSourceFile\",\"dur\":10599.87497329712,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":414588.41705322266,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":419635.83397865295,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":419724.70903396606,\"name\":\"resolveModuleNamesWorker\",\"dur\":775.4158973693848,\"args\":{\"containingFileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":414288.2499694824,\"name\":\"findSourceFile\",\"dur\":6253.709077835083,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":420870.374917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/cluster.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":422217.2501087189,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/cluster.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":422761.9171142578,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/console.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":423424.33404922485,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/console.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":423694.62513923645,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/constants.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":423781.41713142395,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/constants.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":424309.8750114441,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":431457.7090740204,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":423987.12491989136,\"name\":\"findSourceFile\",\"dur\":7819.167137145996,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":431957.66711235046,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/dgram.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":434874.3751049042,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/dgram.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":435447.99995422363,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/diagnostics_channel.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":435704.08391952515,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/diagnostics_channel.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":436013.8750076294,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/dns.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":438228.74999046326,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/dns.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":438709.95903015137,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/dns/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":439330.500125885,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/dns/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":439490.58413505554,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/domain.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":439870.6669807434,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/domain.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":440137.58397102356,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":441032.6249599457,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":439919.95906829834,\"name\":\"findSourceFile\",\"dur\":1139.1658782958984,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/events.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":441566.16711616516,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":451708.9171409607,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":441080.1250934601,\"name\":\"findSourceFile\",\"dur\":11007.958889007568,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":452420.6669330597,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/fs/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":455481.7500114441,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/fs/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":455933.9590072632,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/http.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":461517.54212379456,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/http.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":455646.79193496704,\"name\":\"findSourceFile\",\"dur\":5995.958089828491,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/http.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":462023.4589576721,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/http2.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":466926.7499446869,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/http2.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":467603.6250591278,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/https.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":468582.66711235046,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/https.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":468930.8340549469,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":474016.4170265198,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":468657.0839881897,\"name\":\"findSourceFile\",\"dur\":5476.083040237427,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":474521.4171409607,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/module.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":474857.9590320587,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/module.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":475256.667137146,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/net.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":477252.0000934601,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/net.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":477506.7090988159,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/os.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":479861.9999885559,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/os.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":480307.45911598206,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/path.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":480616.50013923645,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/path.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":479970.8340167999,\"name\":\"findSourceFile\",\"dur\":675.9579181671143,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/path.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":480905.1671028137,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/perf_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":481691.5421485901,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/perf_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":482119.91715431213,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":484110.2919578552,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":484631.29210472107,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/punycode.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":484906.1670303345,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/punycode.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":485008.79192352295,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/querystring.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":485338.91701698303,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/querystring.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":485589.3750190735,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/readline.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":486663.62500190735,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/readline.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":486931.79202079773,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/repl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":487738.7089729309,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/repl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":489050.45914649963,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":492148.33402633667,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":488193.0420398712,\"name\":\"findSourceFile\",\"dur\":4570.791959762573,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":493002.74991989136,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":493155.0841331482,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":493375.6670951843,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream/consumers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":493462.50009536743,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream/consumers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":493562.08395957947,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream/web.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":493608.5000038147,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/stream/web.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":493814.875125885,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/string_decoder.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":494019.6671485901,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/string_decoder.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":494250.12493133545,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/timers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":494525.4170894623,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/timers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":494837.4171257019,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/timers/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":494996.12498283386,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/timers/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":495463.12499046326,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/tls.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":498003.66711616516,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/tls.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":498181.4589500427,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/trace_events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":498464.124917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/trace_events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":498683.87508392334,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/tty.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":499149.374961853,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/tty.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":499472.2499847412,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/url.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":502099.4589328766,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/url.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":499242.04206466675,\"name\":\"findSourceFile\",\"dur\":3338.0000591278076,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/url.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":502918.20907592773,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":505462.6250267029,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":505804.79192733765,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/v8.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":506424.250125885,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/v8.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":506671.8339920044,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/vm.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":507417.249917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/vm.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":507595.2091217041,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/wasi.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":507866.8339252472,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/wasi.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":508128.2091140747,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/worker_threads.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":509454.70905303955,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/worker_threads.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":509899.2500305176,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":510952.5001049042,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":509679.9590587616,\"name\":\"findSourceFile\",\"dur\":1323.625087738037,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\",\"fileIncludeKind\":\"ReferenceFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":511217.08393096924,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/globals.global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":511241.3749694824,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/node/globals.global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":511802.79207229614,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":511961.1670970917,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":512272.0420360565,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":512361.083984375,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":512702.791929245,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":512792.66715049744,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":513050.6670475006,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":513137.91704177856,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":513323.04215431213,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":513678.33399772644,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":513987.4999523163,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":514116.8339252472,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":514704.9169540405,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":528954.2090892792,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":514281.37493133545,\"name\":\"findSourceFile\",\"dur\":14750.959157943726,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":529630.2089691162,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":530621.9170093536,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":529269.5419788361,\"name\":\"findSourceFile\",\"dur\":1387.95804977417,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":531031.7089557648,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":531334.8751068115,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":531670.1250076294,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.iterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":532469.0420627594,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.iterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":532711.709022522,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":532794.7499752045,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":533011.8751525879,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.generator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":533148.9589214325,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.generator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":533365.541934967,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":533517.6250934601,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":533719.7089195251,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.proxy.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":533972.0001220703,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.proxy.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":534164.0419960022,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.reflect.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":534422.7089881897,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.reflect.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":534812.5419616699,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":535604.0000915527,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":513809.5841407776,\"name\":\"findSourceFile\",\"dur\":21834.95783805847,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":535854.334115982,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.array.include.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":536065.5000209808,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.array.include.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":513259.2499256134,\"name\":\"findSourceFile\",\"dur\":22823.042154312134,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":536273.8749980927,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":536390.291929245,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":536629.1670799255,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":536883.6250305176,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":537183.6669445038,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":537274.7919559479,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":537465.1250839233,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":537522.5419998169,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":537719.5839881897,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":538207.4999809265,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":512919.2090034485,\"name\":\"findSourceFile\",\"dur\":25305.583000183105,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":538605.2091121674,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":538708.3339691162,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":538927.7091026306,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":539088.5000228882,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":539541.9170856476,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":539613.0421161652,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":539815.0420188904,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.regexp.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":539870.500087738,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.regexp.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":540128.0000209808,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":540237.3750209808,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":512500.3340244293,\"name\":\"findSourceFile\",\"dur\":27753.833055496216,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":540469.8340892792,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":540717.2091007233,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":540966.0840034485,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":541084.7499370575,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":541334.3341350555,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":541411.5841388702,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":541757.9169273376,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":541798.91705513,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":512110.66699028015,\"name\":\"findSourceFile\",\"dur\":29704.708099365234,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":542153.4171104431,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.bigint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":544388.9169692993,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.bigint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":544726.1250019073,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":545612.0841503143,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":546263.0000114441,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":546385.3340148926,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":546605.0839424133,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":546664.6671295166,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":546883.749961853,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":547009.0839862823,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":547274.4591236115,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":547459.7089290619,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":547671.709060669,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":547722.6669788361,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":548017.7090167999,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":548089.4589424133,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":511566.12515449524,\"name\":\"findSourceFile\",\"dur\":36564.91684913635,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibReferenceDirective\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":548347.7499485016,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.esnext.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":548417.249917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.esnext.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":392962.00013160706,\"name\":\"findSourceFile\",\"dur\":155490.87500572205,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/node/index.d.ts\",\"fileIncludeKind\":\"AutomaticTypeDirectiveFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":392943.16697120667,\"name\":\"processTypeReferenceDirective\",\"dur\":155529.08301353455,\"args\":{\"directive\":\"node\",\"hasResolved\":true,\"refKind\":8}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":548631.6249370575,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":548870.374917984,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":550338.2091522217,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":558084.666967392,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":558454.0839195251,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":558852.541923523,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":561540.2500629425,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":593338.2499217987,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":559791.5420532227,\"name\":\"findSourceFile\",\"dur\":33780.99989891052,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/csstype/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":549828.292131424,\"name\":\"findSourceFile\",\"dur\":43778.666973114014,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":548564.875125885,\"name\":\"findSourceFile\",\"dur\":45055.29189109802,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\",\"fileIncludeKind\":\"AutomaticTypeDirectiveFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":548562.7501010895,\"name\":\"processTypeReferenceDirective\",\"dur\":45092.8750038147,\"args\":{\"directive\":\"react-dom\",\"hasResolved\":true,\"refKind\":8}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":593882.5840950012,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":594147.2499370575,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":596070.7919597626,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":603718.6670303345,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":595549.9589443207,\"name\":\"findSourceFile\",\"dur\":8265.416145324707,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts\",\"fileIncludeKind\":\"Import\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":593688.3339881897,\"name\":\"findSourceFile\",\"dur\":10143.66602897644,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\",\"fileIncludeKind\":\"AutomaticTypeDirectiveFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":593674.4170188904,\"name\":\"processTypeReferenceDirective\",\"dur\":10172.70803451538,\"args\":{\"directive\":\"react-test-renderer\",\"hasResolved\":true,\"refKind\":8}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":604057.9590797424,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/scheduler/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":604201.4169692993,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/@types/scheduler/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":331125.95891952515,\"name\":\"processTypeReferences\",\"dur\":273107.20801353455,\"args\":{\"count\":10}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"parse\",\"ts\":606004.7919750214,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"parse\",\"ts\":644840.1250839233,\"name\":\"createSourceFile\",\"args\":{\"path\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"program\",\"ts\":604509.7091197968,\"name\":\"findSourceFile\",\"dur\":40655.624866485596,\"args\":{\"fileName\":\"/Users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\",\"isDefaultLib\":true,\"fileIncludeKind\":\"LibFile\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"program\",\"ts\":647937.0000362396,\"name\":\"createProgram\",\"args\":{\"configFilePath\":\"/Users/abdul/work/stitches/packages/test/tsconfig.json\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":651472.3341464996,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":664837.4171257019,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":664994.2090511322,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":665039.9589538574,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":665056.5419197083,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":665069.5841312408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":665082.9169750214,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":665094.4590568542,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":665106.959104538,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":665118.0839538574,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":665129.5840740204,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":665140.1669979095,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":665150.5000591278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":665160.6249809265,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":665172.4169254303,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":703749.5000362396,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":703831.7501544952,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":704167.7920818329,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":704268.000125885,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":704432.2500228882,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":704453.7501335144,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.generator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":704788.8340950012,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.generator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":704805.083990097,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.iterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":705482.125043869,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.iterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":705495.5840110779,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":705586.4169597626,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":705598.0839729309,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.proxy.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":706231.6670417786,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.proxy.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":706246.4590072632,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.reflect.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":706495.167016983,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.reflect.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":706507.4999332428,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":706540.7500267029,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":706551.6250133514,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":707261.3749504089,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":707278.5420417786,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.array.include.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":707376.6250610352,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.array.include.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":707387.7501487732,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":707516.5419578552,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":707527.9171466827,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":707896.8341350555,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":707909.3749523163,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":707934.7500801086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":707945.6250667572,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708019.0420150757,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708030.5840969086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708070.2500343323,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708080.5420875549,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708162.0421409607,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708172.8749275208,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708233.3750724792,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708244.8749542236,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708420.5420017242,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708432.333946228,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708456.2499523163,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708467.2501087189,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.regexp.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708522.6669311523,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.regexp.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708533.7920188904,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708718.75,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708730.9169769287,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708759.7501277924,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708771.959066391,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708796.2501049042,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708806.4169883728,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":708820.6670284271,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":708830.4169178009,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.bigint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":709855.0419807434,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.bigint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":709877.1669864655,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":709917.375087738,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":709928.6670684814,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":709972.0420837402,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":709982.7921390533,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":710052.3340702057,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":710063.1251335144,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":710079.6670913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":710089.9591445923,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":710110.3749275208,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":710120.6250190735,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":710532.4170589447,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":710552.1249771118,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":710573.3749866486,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":710583.6670398712,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.esnext.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":710625.9589195251,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.esnext.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":710636.8751525879,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":722591.0000801086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":722666.7499542236,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":723220.79205513,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":723235.7089519501,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":723798.1669902802,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":723815.8340454102,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":723894.2501544952,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":723905.6670665741,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":724335.1669311523,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":724348.6249446869,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":724548.4170913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":724560.1251125336,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":725258.0420970917,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":725271.5840339661,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":725525.8340835571,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":725538.0420684814,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":725905.4169654846,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":725922.0840930939,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":731849.1251468658,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":731886.7499828339,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":732327.0001411438,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":732346.0419178009,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":732431.4589500427,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":732442.9590702057,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":732494.0841197968,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":732505.5000782013,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":732862.9169464111,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":732877.0000934601,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":733087.9170894623,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":733108.7090969086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":748609.6670627594,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":748672.3749637604,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/prop-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":748970.2920913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/prop-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":748985.9170913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/tracing.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":749106.1251163483,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/tracing.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":749118.5419559479,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":760127.8340816498,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":760178.6251068115,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":760466.7091369629,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":760480.250120163,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":760906.7499637604,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":760918.2920455933,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761089.292049408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761100.8341312408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761203.0839920044,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761214.4169807434,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761584.0420722961,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761597.708940506,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761709.792137146,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761721.2920188904,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761758.3749294281,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761768.9590454102,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761802.1249771118,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761829.4589519501,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761867.2919273376,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761877.6669502258,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761910.8340740204,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761921.0000038147,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761954.4589519501,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":761964.4999504089,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":761998.7089633942,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762009.4170570374,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762043.6251163483,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762053.7090301514,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762086.4169597626,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762253.4999847412,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762291.834115982,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762302.2921085358,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762335.5419635773,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762346.125125885,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762430.5000305176,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762442.3749446869,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762473.7920761108,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762483.7501049042,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762515.8751010895,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762535.8340740204,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762572.2501277924,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762588.0420207977,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762631.2921047211,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762641.5419578552,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762673.0000972748,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762682.7919483185,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762714.2090797424,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762723.5839366913,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762753.5841464996,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762763.4589672089,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762792.8750514984,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762802.2091388702,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762832.2920799255,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762841.9170379639,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762922.1251010895,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762933.5000514984,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":762964.5421504974,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":762976.9999980927,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763011.4591121674,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763021.7499732971,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763054.0421009064,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763064.0840530396,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763108.7090969086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763118.7920570374,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763149.0840911865,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763158.4169864655,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763188.5840892792,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763198.4169483185,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763228.7089824677,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763237.8339767456,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763269.1249847412,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763278.6250114441,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763313.1670951843,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763322.7920532227,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763353.3339500427,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763362.8339767456,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763392.5840854645,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763401.9169807434,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763459.5420360565,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763469.5000648499,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763493.499994278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763503.2501220703,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763527.6670455933,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763545.6249713898,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763569.375038147,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763578.5419940948,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763603.6670207977,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763613.5840415955,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763637.3341083527,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763647.7921009064,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763673.3341217041,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763682.874917984,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763707.083940506,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763716.0420417786,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763743.499994278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763752.7499198914,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763777.6250839233,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763786.5419387817,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763811.4590644836,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763820.6670284271,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763844.3751335144,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763853.2500267029,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763877.375125885,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763889.5421028137,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763913.1669998169,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763922.1251010895,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763948.667049408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763957.7920436859,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":763981.7090034485,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":763990.9999370575,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764014.9590969086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764024.374961853,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764049.0419864655,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764058.042049408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764391.1669254303,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764404.8340320587,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764430.459022522,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764439.7089481354,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764513.0000114441,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764523.9999294281,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764549.4170188904,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764558.8340759277,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764583.2090377808,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764592.8339958191,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":764618.6671257019,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":764628.4999847412,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766217.6671028137,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766234.8749637604,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766265.792131424,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766276.750087738,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766303.9591312408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766313.5840892792,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766338.8750553131,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766348.9170074463,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766374.5839595795,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766384.1669559479,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766509.3750953674,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766520.8749771118,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766547.1670627594,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766556.8749904633,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766581.7921161652,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766591.5420055389,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766616.2090301514,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766625.6670951843,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766650.8750915527,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766661.4589691162,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766715.9171104431,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766725.8751392365,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766748.8341331482,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766758.4171295166,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766781.2089920044,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766790.7919883728,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766813.4999275208,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766823.1251239777,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766845.7500934601,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":766966.4590358734,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":766992.0420646667,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767002.0840167999,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767040.7919883728,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767050.7919788361,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767073.7500190735,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767082.7920436859,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767105.2091121674,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767114.4590377808,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767142.1670913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767151.792049408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767176.6250133514,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767186.1250400543,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767315.9999847412,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767327.0001411438,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767350.7919311523,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767359.9591255188,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767387.834072113,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767398.2090950012,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767421.2920665741,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767430.5000305176,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767453.0420303345,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767462.249994278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767485.7919216156,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767495.334148407,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767517.5421237946,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767527.0841121674,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767552.3340702057,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767562.292098999,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767585.000038147,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767594.7089195251,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767618.3340549469,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767628.3750534058,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767665.4169559479,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767675.6250858307,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767697.9999542236,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767707.1249485016,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767729.0420532227,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767738.0001544952,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767766.0000324249,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767775.5420207977,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767797.2500324249,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767806.5419197083,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767827.8341293335,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767837.249994278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767866.8339252472,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767876.3339519501,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767899.542093277,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767920.9170341492,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767946.5000629425,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767955.5840492249,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":767975.9590625763,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":767984.8749637604,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768005.7921409607,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768014.6670341492,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768035.0000858307,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768044.8751449585,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768070.4591274261,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768079.4589519501,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768101.1669635773,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768110.0840568542,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768130.7089328766,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768139.5421028137,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768160.0840091705,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768169.417142868,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768190.1669502258,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768199.1250514984,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768219.5000648499,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768228.6670207977,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768578.3340930939,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768593.2919979095,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768615.4170036316,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768624.7091293335,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768646.5420722961,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768655.709028244,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768678.1251430511,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768687.1249675751,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768708.8749408722,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768718.0421352386,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768739.7091388702,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768748.6670017242,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768771.959066391,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768781.1250686646,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768802.8340339661,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768812.334060669,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768951.7500400543,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768962.4171257019,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/blacka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":768989.3341064453,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/blacka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":768999.1250038147,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/whitea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":769023.9589214325,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/whitea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":769033.9591503143,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":769058.9170455933,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":769068.8750743866,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":770202.8341293335,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":770216.7091369629,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":770891.0419940948,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":770907.0839881897,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":771071.1669921875,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":771084.7499370575,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/eslint-visitor-keys/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":771128.8750171661,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/eslint-visitor-keys/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":771138.7920379639,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/json-schema/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":772365.2091026306,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/json-schema/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":772383.0001354218,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":774198.667049408,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":774219.5000648499,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":779510.999917984,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":779554.5001029968,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":784123.3749389648,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":784161.0000133514,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":784215.959072113,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":784226.7920970917,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/function.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":790919.3749427795,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/function.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":790987.1249198914,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":794054.2500019073,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":794076.7920017242,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/math.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":794436.3751411438,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/math.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":794447.6671218872,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":794573.333978653,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":794584.5000743866,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":799331.7501544952,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":799384.8750591278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/seq.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":799677.4590015411,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/seq.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":799693.2499408722,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":800627.8750896454,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":800644.583940506,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":802877.1669864655,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":802916.834115982,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":803153.9590358734,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":803171.5841293335,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash.merge/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":803189.875125885,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash.merge/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":803199.5000839233,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":803755.7921409607,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":803770.6251144409,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert/strict.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":803990.2920722961,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert/strict.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":804007.4169635773,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":804424.0419864655,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":804436.1670017242,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/async_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":804613.5840415955,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/async_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":804624.0420341492,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":805986.0420227051,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":806010.3750228882,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":807689.334154129,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":807709.459066391,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/cluster.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":809060.9591007233,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/cluster.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":809080.3339481354,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/console.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":809339.4999504089,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/console.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":809352.4589538574,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/constants.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":809404.0839672089,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/constants.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":809414.834022522,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":812290.6250953674,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":812329.1671276093,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dgram.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":812694.7500705719,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dgram.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":812709.5420360565,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/diagnostics_channel.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":812758.6250305176,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/diagnostics_channel.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":812769.5419788361,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":813567.4591064453,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":813582.9589366913,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":813770.1671123505,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":813780.2920341492,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/domain.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":813833.3749771118,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/domain.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":813843.2500362396,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":816704.6670913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":816748.7919330597,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":819827.5420665741,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":819849.2500782013,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":820279.1669368744,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":820290.374994278,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":821283.1671237946,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":821294.5420742035,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http2.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":824231.8339347839,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http2.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":824249.0420341492,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/https.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":824834.8340988159,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/https.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":824846.4169502258,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":827363.0840778351,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":827381.875038147,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/module.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":827642.1251296997,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/module.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":827769.70911026,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/net.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":828537.9590988159,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/net.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":828550.1251220703,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/os.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":829036.9999408722,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/os.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":829047.2919940948,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/path.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":829145.4589366913,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/path.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":829155.1671028137,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/perf_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":829361.6669178009,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/perf_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":829371.5419769287,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":830091.166973114,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":830101.3340950012,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/punycode.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":830704.6251296997,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/punycode.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":830716.875076294,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/querystring.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":830776.083946228,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/querystring.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":830788.0001068115,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/readline.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":831135.1671218872,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/readline.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":831145.8339691162,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/repl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":831491.5001392365,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/repl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":831501.5420913696,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":833642.7500247955,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":833664.4170284271,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":833774.9590873718,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":833785.542011261,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/consumers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":833855.6251525879,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/consumers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":833875.2090930939,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/web.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":833894.0839767456,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/web.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":833903.2919406891,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/string_decoder.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":833934.2920780182,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/string_decoder.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":833944.0839290619,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":834108.834028244,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":834119.4999217987,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":834161.1671447754,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":834171.1249351501,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tls.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":834875.2090930939,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tls.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":834886.500120163,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/trace_events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":834952.0840644836,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/trace_events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":834962.042093277,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tty.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":835082.6251506805,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tty.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":835093.1251049042,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/url.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":835351.5839576721,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/url.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":835362.0419502258,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":835996.9170093536,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":836006.9999694824,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/v8.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":836203.125,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/v8.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":836213.9999866486,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/vm.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":836341.7091369629,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/vm.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":836351.0420322418,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/wasi.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":836384.8340511322,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/wasi.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":836412.6250743866,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/worker_threads.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":836850.9171009064,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/worker_threads.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":836861.2921237946,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":837414.1249656677,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":837423.749923706,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":837437.0419979095,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":837448.084115982,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":837461.4169597626,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":837470.624923706,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":837622.2500801086,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":837645.7500457764,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":844536.4170074463,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":844591.0420417786,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":844760.7090473175,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":844777.8749465942,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":844890.7499313354,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"bind\",\"ts\":844901.5419483185,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"bind\",\"ts\":844960.5839252472,\"name\":\"bindSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":851006.9169998169,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":852532.4590206146,\"name\":\"checkExpression\",\"dur\":13930.707931518555,\"args\":{\"kind\":79,\"pos\":48,\"end\":58,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":869187.7090930939,\"name\":\"checkExpression\",\"dur\":7366.291046142578,\"args\":{\"kind\":205,\"pos\":75,\"end\":200,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":876657.9999923706,\"name\":\"checkExpression\",\"dur\":8988.584041595459,\"args\":{\"kind\":205,\"pos\":208,\"end\":236,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":868598.1669425964,\"name\":\"checkExpression\",\"dur\":17118.333101272583,\"args\":{\"kind\":205,\"pos\":59,\"end\":239,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":889900.6249904633,\"name\":\"structuredTypeRelatedTo\",\"dur\":542.7501201629639,\"args\":{\"sourceId\":1762,\"targetId\":804}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":889882.0419311523,\"name\":\"structuredTypeRelatedTo\",\"dur\":2765.958070755005,\"args\":{\"sourceId\":1762,\"targetId\":811}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":889313.9591217041,\"name\":\"structuredTypeRelatedTo\",\"dur\":3371.415853500366,\"args\":{\"sourceId\":1763,\"targetId\":1624}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":889164.7090911865,\"name\":\"structuredTypeRelatedTo\",\"dur\":3536.6249084472656,\"args\":{\"sourceId\":1763,\"targetId\":1626}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":852357.0420742035,\"name\":\"checkExpression\",\"dur\":41570.74999809265,\"args\":{\"kind\":208,\"pos\":48,\"end\":240,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":852262.0420455933,\"name\":\"checkExpression\",\"dur\":41685.874938964844,\"args\":{\"kind\":217,\"pos\":42,\"end\":240,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":897861.1669540405,\"name\":\"structuredTypeRelatedTo\",\"dur\":8741.458177566528,\"args\":{\"sourceId\":1831,\"targetId\":1845}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":896885.792016983,\"name\":\"checkExpression\",\"dur\":11827.29196548462,\"args\":{\"kind\":208,\"pos\":458,\"end\":984,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":896885.0841522217,\"name\":\"checkExpression\",\"dur\":11852.374792098999,\"args\":{\"kind\":217,\"pos\":452,\"end\":984,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":909964.5841121674,\"name\":\"checkExpression\",\"dur\":44.83294486999512,\"args\":{\"kind\":204,\"pos\":1160,\"end\":1198,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":909959.1250419617,\"name\":\"checkExpression\",\"dur\":114.24994468688965,\"args\":{\"kind\":205,\"pos\":1146,\"end\":1237,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":909783.8749885559,\"name\":\"checkExpression\",\"dur\":4822.709083557129,\"args\":{\"kind\":208,\"pos\":1071,\"end\":1238,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":909783.3750247955,\"name\":\"checkExpression\",\"dur\":4857.917070388794,\"args\":{\"kind\":217,\"pos\":1065,\"end\":1238,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":914819.6671009064,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":914933.042049408,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":917989.5000457764,\"name\":\"checkExpression\",\"dur\":5367.500066757202,\"args\":{\"kind\":205,\"pos\":76,\"end\":201,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":923407.958984375,\"name\":\"checkExpression\",\"dur\":7712.875127792358,\"args\":{\"kind\":205,\"pos\":209,\"end\":237,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":917878.8750171661,\"name\":\"checkExpression\",\"dur\":13300.374984741211,\"args\":{\"kind\":205,\"pos\":60,\"end\":240,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":915034.2090129852,\"name\":\"checkExpression\",\"dur\":18698.874950408936,\"args\":{\"kind\":208,\"pos\":49,\"end\":241,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":915033.29205513,\"name\":\"checkExpression\",\"dur\":18733.54196548462,\"args\":{\"kind\":217,\"pos\":43,\"end\":241,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":935275.6669521332,\"name\":\"structuredTypeRelatedTo\",\"dur\":4945.2080726623535,\"args\":{\"sourceId\":2611,\"targetId\":2620}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":934856.584072113,\"name\":\"checkExpression\",\"dur\":7181.082963943481,\"args\":{\"kind\":208,\"pos\":459,\"end\":985,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":934856.0421466827,\"name\":\"checkExpression\",\"dur\":7210.0830078125,\"args\":{\"kind\":217,\"pos\":453,\"end\":985,\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":945837.0840549469,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":945891.5419578552,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":949408.2500934601,\"name\":\"checkExpression\",\"dur\":19930.749893188477,\"args\":{\"kind\":205,\"pos\":320,\"end\":341,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":949395.7500457764,\"name\":\"checkExpression\",\"dur\":20008.83388519287,\"args\":{\"kind\":212,\"pos\":318,\"end\":342,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":947720.2920913696,\"name\":\"checkExpression\",\"dur\":22659.99984741211,\"args\":{\"kind\":214,\"pos\":264,\"end\":342,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":947606.7090034485,\"name\":\"checkExpression\",\"dur\":23697.540998458862,\"args\":{\"kind\":205,\"pos\":256,\"end\":418,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":947092.9589271545,\"name\":\"checkExpression\",\"dur\":24243.666172027588,\"args\":{\"kind\":205,\"pos\":191,\"end\":420,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":946935.8339309692,\"name\":\"checkExpression\",\"dur\":29027.833223342896,\"args\":{\"kind\":208,\"pos\":175,\"end\":421,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":946246.3340759277,\"name\":\"checkVariableDeclaration\",\"dur\":30477.874994277954,\"args\":{\"kind\":254,\"pos\":157,\"end\":421,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":976758.584022522,\"name\":\"checkVariableDeclaration\",\"dur\":9689.87512588501,\"args\":{\"kind\":254,\"pos\":487,\"end\":575,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":999487.2500896454,\"name\":\"checkExpression\",\"dur\":116414.3340587616,\"args\":{\"kind\":205,\"pos\":873,\"end\":1057,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":987419.084072113,\"name\":\"checkExpression\",\"dur\":132499.74989891052,\"args\":{\"kind\":208,\"pos\":868,\"end\":1058,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":987265.9170627594,\"name\":\"checkVariableDeclaration\",\"dur\":132722.5000858307,\"args\":{\"kind\":254,\"pos\":862,\"end\":1058,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1127255.3341388702,\"name\":\"checkExpression\",\"dur\":5370.332956314087,\"args\":{\"kind\":205,\"pos\":392,\"end\":413,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1127253.709077835,\"name\":\"checkExpression\",\"dur\":5428.874969482422,\"args\":{\"kind\":212,\"pos\":390,\"end\":414,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1127240.875005722,\"name\":\"checkDeferredNode\",\"dur\":5454.541921615601,\"args\":{\"kind\":214,\"pos\":348,\"end\":414,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":1132870.4171180725,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":1132958.6250782013,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1134696.9590187073,\"name\":\"checkExpression\",\"dur\":15279.207944869995,\"args\":{\"kind\":205,\"pos\":325,\"end\":346,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1134695.7919597626,\"name\":\"checkExpression\",\"dur\":15491.832971572876,\"args\":{\"kind\":212,\"pos\":323,\"end\":347,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1133859.6670627594,\"name\":\"checkExpression\",\"dur\":16598.166942596436,\"args\":{\"kind\":214,\"pos\":269,\"end\":347,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1133813.2090568542,\"name\":\"checkExpression\",\"dur\":17125.79107284546,\"args\":{\"kind\":205,\"pos\":261,\"end\":422,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1133545.7501411438,\"name\":\"checkExpression\",\"dur\":17421.04196548462,\"args\":{\"kind\":205,\"pos\":196,\"end\":424,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1133471.374988556,\"name\":\"checkExpression\",\"dur\":20368.916988372803,\"args\":{\"kind\":208,\"pos\":180,\"end\":425,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1133290.7090187073,\"name\":\"checkVariableDeclaration\",\"dur\":21027.49991416931,\"args\":{\"kind\":254,\"pos\":159,\"end\":425,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1159790.9591197968,\"name\":\"checkVariableDeclaration\",\"dur\":274.95789527893066,\"args\":{\"kind\":254,\"pos\":782,\"end\":852,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1164237.4169826508,\"name\":\"checkExpression\",\"dur\":12432.125091552734,\"args\":{\"kind\":205,\"pos\":886,\"end\":1071,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1309999.9170303345,\"name\":\"structuredTypeRelatedTo\",\"dur\":0.4169940948486328,\"args\":{\"sourceId\":691,\"targetId\":2024}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1319539.2091274261,\"name\":\"checkExpression\",\"dur\":1091.583013534546,\"args\":{\"kind\":205,\"pos\":996,\"end\":1015,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1177728.042125702,\"name\":\"checkExpression\",\"dur\":142966.1250114441,\"args\":{\"kind\":205,\"pos\":886,\"end\":1071,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1160284.2090129852,\"name\":\"checkExpression\",\"dur\":162048.00009727478,\"args\":{\"kind\":208,\"pos\":872,\"end\":1072,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1160184.8340034485,\"name\":\"checkVariableDeclaration\",\"dur\":162201.33304595947,\"args\":{\"kind\":254,\"pos\":866,\"end\":1072,\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":1329498.5840320587,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":1329663.0840301514,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1332694.167137146,\"name\":\"checkExpression\",\"dur\":10125.832796096802,\"args\":{\"kind\":205,\"pos\":1596,\"end\":2853,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1332680.624961853,\"name\":\"checkExpression\",\"dur\":11753.417015075684,\"args\":{\"kind\":205,\"pos\":1582,\"end\":4364,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1349972.5420475006,\"name\":\"checkExpression\",\"dur\":28.79190444946289,\"args\":{\"kind\":79,\"pos\":6326,\"end\":6332,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1349955.7919502258,\"name\":\"checkExpression\",\"dur\":182.8751564025879,\"args\":{\"kind\":205,\"pos\":6315,\"end\":6334,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1349955.3339481354,\"name\":\"checkExpression\",\"dur\":201.62510871887207,\"args\":{\"kind\":212,\"pos\":6313,\"end\":6335,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1349886.0421180725,\"name\":\"checkExpression\",\"dur\":343.1668281555176,\"args\":{\"kind\":214,\"pos\":6266,\"end\":6335,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1345572.1669197083,\"name\":\"checkExpression\",\"dur\":9393.29218864441,\"args\":{\"kind\":205,\"pos\":4675,\"end\":8648,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1332664.7090911865,\"name\":\"checkExpression\",\"dur\":22364.37487602234,\"args\":{\"kind\":205,\"pos\":1572,\"end\":8651,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1360042.249917984,\"name\":\"checkExpression\",\"dur\":11019.000053405762,\"args\":{\"kind\":205,\"pos\":1596,\"end\":2853,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1357820.5001354218,\"name\":\"checkExpression\",\"dur\":14400.291919708252,\"args\":{\"kind\":205,\"pos\":1582,\"end\":4364,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1372558.1669807434,\"name\":\"checkExpression\",\"dur\":9024.917125701904,\"args\":{\"kind\":205,\"pos\":4675,\"end\":8648,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1357806.2500953674,\"name\":\"checkExpression\",\"dur\":23841.95899963379,\"args\":{\"kind\":205,\"pos\":1572,\"end\":8651,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1383040.4169559479,\"name\":\"structuredTypeRelatedTo\",\"dur\":11976.875066757202,\"args\":{\"sourceId\":10507,\"targetId\":10417}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1383032.8750610352,\"name\":\"structuredTypeRelatedTo\",\"dur\":12100.916862487793,\"args\":{\"sourceId\":10514,\"targetId\":10410}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1381715.3339385986,\"name\":\"structuredTypeRelatedTo\",\"dur\":13433.041095733643,\"args\":{\"sourceId\":10514,\"targetId\":10412}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1381672.3749637604,\"name\":\"structuredTypeRelatedTo\",\"dur\":15625.041961669922,\"args\":{\"sourceId\":10727,\"targetId\":10408}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1332575.6249427795,\"name\":\"checkExpression\",\"dur\":64753.12519073486,\"args\":{\"kind\":208,\"pos\":1556,\"end\":8652,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1332470.79205513,\"name\":\"checkVariableDeclaration\",\"dur\":65751.08289718628,\"args\":{\"kind\":254,\"pos\":1486,\"end\":8652,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1399945.8339214325,\"name\":\"checkExpression\",\"dur\":7932.500123977661,\"args\":{\"kind\":205,\"pos\":8753,\"end\":10060,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1409479.8340797424,\"name\":\"structuredTypeRelatedTo\",\"dur\":1199.3329524993896,\"args\":{\"sourceId\":10952,\"targetId\":10816}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1409445.1670646667,\"name\":\"structuredTypeRelatedTo\",\"dur\":1269.2079544067383,\"args\":{\"sourceId\":10953,\"targetId\":10802}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1408847.0420837402,\"name\":\"structuredTypeRelatedTo\",\"dur\":1880.7919025421143,\"args\":{\"sourceId\":10953,\"targetId\":10808}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1408838.0420207977,\"name\":\"structuredTypeRelatedTo\",\"dur\":1900.9170532226562,\"args\":{\"sourceId\":10953,\"targetId\":10809}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1399008.1250667572,\"name\":\"checkExpression\",\"dur\":17144.999980926514,\"args\":{\"kind\":208,\"pos\":8727,\"end\":10061,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1398869.9171543121,\"name\":\"checkVariableDeclaration\",\"dur\":17343.75,\"args\":{\"kind\":254,\"pos\":8715,\"end\":10061,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1419697.2501277924,\"name\":\"structuredTypeRelatedTo\",\"dur\":735.374927520752,\"args\":{\"sourceId\":11029,\"targetId\":8773}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1416252.7921199799,\"name\":\"checkExpression\",\"dur\":4322.707891464233,\"args\":{\"kind\":205,\"pos\":4732,\"end\":4761,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1416247.584104538,\"name\":\"checkExpression\",\"dur\":4344.208002090454,\"args\":{\"kind\":212,\"pos\":4730,\"end\":4762,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1416240.7500743866,\"name\":\"checkDeferredNode\",\"dur\":4362.750053405762,\"args\":{\"kind\":214,\"pos\":4684,\"end\":4762,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1428775.3341197968,\"name\":\"checkExpression\",\"dur\":4154.083013534546,\"args\":{\"kind\":205,\"pos\":5015,\"end\":5050,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1428773.1671333313,\"name\":\"checkExpression\",\"dur\":4217.166900634766,\"args\":{\"kind\":212,\"pos\":5013,\"end\":5051,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1428769.66714859,\"name\":\"checkDeferredNode\",\"dur\":4234.041929244995,\"args\":{\"kind\":214,\"pos\":4961,\"end\":5051,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1439446.8750953674,\"name\":\"checkExpression\",\"dur\":2941.208839416504,\"args\":{\"kind\":205,\"pos\":5533,\"end\":5564,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1439446.5000629425,\"name\":\"checkExpression\",\"dur\":3136.125087738037,\"args\":{\"kind\":212,\"pos\":5531,\"end\":5565,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1439444.5841312408,\"name\":\"checkDeferredNode\",\"dur\":3149.7910022735596,\"args\":{\"kind\":214,\"pos\":5483,\"end\":5565,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1448923.7921237946,\"name\":\"checkExpression\",\"dur\":4465.916872024536,\"args\":{\"kind\":205,\"pos\":5817,\"end\":5849,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1448923.3751296997,\"name\":\"checkExpression\",\"dur\":4515.3748989105225,\"args\":{\"kind\":212,\"pos\":5815,\"end\":5850,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1448921.3750362396,\"name\":\"checkDeferredNode\",\"dur\":4610.084056854248,\"args\":{\"kind\":214,\"pos\":5766,\"end\":5850,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1459861.8340492249,\"name\":\"checkExpression\",\"dur\":3104.374885559082,\"args\":{\"kind\":205,\"pos\":6315,\"end\":6334,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1459861.37509346,\"name\":\"checkExpression\",\"dur\":3143.167018890381,\"args\":{\"kind\":212,\"pos\":6313,\"end\":6335,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1459859.5840930939,\"name\":\"checkDeferredNode\",\"dur\":3155.8330059051514,\"args\":{\"kind\":214,\"pos\":6266,\"end\":6335,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1469016.3750648499,\"name\":\"checkExpression\",\"dur\":2995.542049407959,\"args\":{\"kind\":205,\"pos\":6568,\"end\":6593,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1469016.0419940948,\"name\":\"checkExpression\",\"dur\":3023.082971572876,\"args\":{\"kind\":212,\"pos\":6566,\"end\":6594,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1469014.5001411438,\"name\":\"checkDeferredNode\",\"dur\":3035.45880317688,\"args\":{\"kind\":214,\"pos\":6513,\"end\":6594,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1479207.792043686,\"name\":\"checkExpression\",\"dur\":3034.791946411133,\"args\":{\"kind\":205,\"pos\":6812,\"end\":6833,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1479206.7501544952,\"name\":\"checkExpression\",\"dur\":3093.4998989105225,\"args\":{\"kind\":212,\"pos\":6810,\"end\":6834,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1479201.9169330597,\"name\":\"checkDeferredNode\",\"dur\":3110.917091369629,\"args\":{\"kind\":214,\"pos\":6761,\"end\":6834,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1489783.7090492249,\"name\":\"checkExpression\",\"dur\":3038.1250381469727,\"args\":{\"kind\":205,\"pos\":7188,\"end\":7230,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1489783.2090854645,\"name\":\"checkExpression\",\"dur\":3078.541040420532,\"args\":{\"kind\":212,\"pos\":7186,\"end\":7231,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1489780.916929245,\"name\":\"checkDeferredNode\",\"dur\":3094.5000648498535,\"args\":{\"kind\":214,\"pos\":7127,\"end\":7231,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1498807.3749542236,\"name\":\"checkExpression\",\"dur\":2998.500108718872,\"args\":{\"kind\":205,\"pos\":7542,\"end\":7583,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1498806.9591522217,\"name\":\"checkExpression\",\"dur\":3024.249792098999,\"args\":{\"kind\":212,\"pos\":7540,\"end\":7584,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1498805.5000305176,\"name\":\"checkDeferredNode\",\"dur\":3036.250114440918,\"args\":{\"kind\":214,\"pos\":7482,\"end\":7584,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1509101.4170646667,\"name\":\"checkExpression\",\"dur\":3003.9169788360596,\"args\":{\"kind\":205,\"pos\":7808,\"end\":7828,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1509101.000070572,\"name\":\"checkExpression\",\"dur\":3057.4588775634766,\"args\":{\"kind\":212,\"pos\":7806,\"end\":7829,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1509098.7091064453,\"name\":\"checkDeferredNode\",\"dur\":3072.415828704834,\"args\":{\"kind\":214,\"pos\":7758,\"end\":7829,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1518099.5421409607,\"name\":\"checkExpression\",\"dur\":2915.6248569488525,\"args\":{\"kind\":205,\"pos\":8058,\"end\":8121,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1518099.1671085358,\"name\":\"checkExpression\",\"dur\":2950.291872024536,\"args\":{\"kind\":212,\"pos\":8056,\"end\":8122,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1518097.3341464996,\"name\":\"checkDeferredNode\",\"dur\":2962.207794189453,\"args\":{\"kind\":214,\"pos\":8007,\"end\":8122,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1527075.4590034485,\"name\":\"checkExpression\",\"dur\":4147.249937057495,\"args\":{\"kind\":205,\"pos\":8571,\"end\":8642,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1527075.0420093536,\"name\":\"checkExpression\",\"dur\":4195.791959762573,\"args\":{\"kind\":212,\"pos\":8569,\"end\":8643,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1527073.459148407,\"name\":\"checkDeferredNode\",\"dur\":4207.624912261963,\"args\":{\"kind\":214,\"pos\":8516,\"end\":8643,\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":1531403.0420780182,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":1531440.2499198914,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1538151.8340110779,\"name\":\"checkExpression\",\"dur\":62783.20813179016,\"args\":{\"kind\":205,\"pos\":114,\"end\":265,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1531900.7921218872,\"name\":\"checkExpression\",\"dur\":71074.99980926514,\"args\":{\"kind\":208,\"pos\":99,\"end\":266,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1531791.6250228882,\"name\":\"checkVariableDeclaration\",\"dur\":71226.70912742615,\"args\":{\"kind\":254,\"pos\":92,\"end\":266,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1604077.0421028137,\"name\":\"checkExpression\",\"dur\":162723.58298301697,\"args\":{\"kind\":208,\"pos\":351,\"end\":370,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":1604020.250082016,\"name\":\"checkVariableDeclaration\",\"dur\":162876.37495994568,\"args\":{\"kind\":254,\"pos\":344,\"end\":370,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1786882.7919960022,\"name\":\"structuredTypeRelatedTo\",\"dur\":4497.833013534546,\"args\":{\"sourceId\":24233,\"targetId\":24231}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1786850.459098816,\"name\":\"structuredTypeRelatedTo\",\"dur\":4587.040901184082,\"args\":{\"sourceId\":24233,\"targetId\":24588}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1798613.45911026,\"name\":\"structuredTypeRelatedTo\",\"dur\":4770.8330154418945,\"args\":{\"sourceId\":23261,\"targetId\":25010}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1798606.542110443,\"name\":\"structuredTypeRelatedTo\",\"dur\":4837.332963943481,\"args\":{\"sourceId\":23261,\"targetId\":25012}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1819042.624950409,\"name\":\"structuredTypeRelatedTo\",\"dur\":1901.9169807434082,\"args\":{\"sourceId\":25507,\"targetId\":25505}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1819023.2090950012,\"name\":\"structuredTypeRelatedTo\",\"dur\":1985.2910041809082,\"args\":{\"sourceId\":25507,\"targetId\":25533}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1829631.709098816,\"name\":\"structuredTypeRelatedTo\",\"dur\":668.9579486846924,\"args\":{\"sourceId\":25668,\"targetId\":25666}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1829613.45911026,\"name\":\"structuredTypeRelatedTo\",\"dur\":734.3330383300781,\"args\":{\"sourceId\":25668,\"targetId\":25697}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1849969.7499275208,\"name\":\"structuredTypeRelatedTo\",\"dur\":380.66720962524414,\"args\":{\"sourceId\":26057,\"targetId\":26055}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1849950.8340358734,\"name\":\"structuredTypeRelatedTo\",\"dur\":454.62489128112793,\"args\":{\"sourceId\":26057,\"targetId\":26076}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1879617.1250343323,\"name\":\"structuredTypeRelatedTo\",\"dur\":817.5420761108398,\"args\":{\"sourceId\":26770,\"targetId\":26787}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1889679.4171333313,\"name\":\"structuredTypeRelatedTo\",\"dur\":377.1669864654541,\"args\":{\"sourceId\":27002,\"targetId\":27001}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1889665.4589176178,\"name\":\"structuredTypeRelatedTo\",\"dur\":447.00002670288086,\"args\":{\"sourceId\":27002,\"targetId\":27015}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":1899598.9589691162,\"name\":\"structuredTypeRelatedTo\",\"dur\":532.3750972747803,\"args\":{\"sourceId\":27203,\"targetId\":27229}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2009792.9589748383,\"name\":\"structuredTypeRelatedTo\",\"dur\":371.4580535888672,\"args\":{\"sourceId\":29740,\"targetId\":29738}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2009779.2501449585,\"name\":\"structuredTypeRelatedTo\",\"dur\":450.41680335998535,\"args\":{\"sourceId\":29740,\"targetId\":29763}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2049719.0001010895,\"name\":\"structuredTypeRelatedTo\",\"dur\":382.7090263366699,\"args\":{\"sourceId\":30673,\"targetId\":30671}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2049704.3750286102,\"name\":\"structuredTypeRelatedTo\",\"dur\":461.58409118652344,\"args\":{\"sourceId\":30673,\"targetId\":30692}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2099497.0841407776,\"name\":\"structuredTypeRelatedTo\",\"dur\":796.6248989105225,\"args\":{\"sourceId\":31802,\"targetId\":31819}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2149548.500061035,\"name\":\"structuredTypeRelatedTo\",\"dur\":822.9169845581055,\"args\":{\"sourceId\":33010,\"targetId\":33027}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2179929.2500019073,\"name\":\"structuredTypeRelatedTo\",\"dur\":809.7090721130371,\"args\":{\"sourceId\":33721,\"targetId\":33738}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2189228.917121887,\"name\":\"structuredTypeRelatedTo\",\"dur\":792.1669483184814,\"args\":{\"sourceId\":33935,\"targetId\":33952}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2209945.5840587616,\"name\":\"structuredTypeRelatedTo\",\"dur\":801.7499446868896,\"args\":{\"sourceId\":34432,\"targetId\":34449}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2218397.2499370575,\"name\":\"checkDeferredNode\",\"dur\":24552.20913887024,\"args\":{\"kind\":279,\"pos\":658,\"end\":791,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2265341.125011444,\"name\":\"checkExpression\",\"dur\":6091.709136962891,\"args\":{\"kind\":205,\"pos\":890,\"end\":1041,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2265340.1250839233,\"name\":\"checkExpression\",\"dur\":6159.416913986206,\"args\":{\"kind\":288,\"pos\":889,\"end\":1042,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2247016.541957855,\"name\":\"checkExpression\",\"dur\":24513.916969299316,\"args\":{\"kind\":286,\"pos\":800,\"end\":1042,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2272247.167110443,\"name\":\"structuredTypeRelatedTo\",\"dur\":45253.45802307129,\"args\":{\"sourceId\":36922,\"targetId\":10774}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2272228.4169197083,\"name\":\"structuredTypeRelatedTo\",\"dur\":45341.00008010864,\"args\":{\"sourceId\":36922,\"targetId\":22327}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2243004.7500133514,\"name\":\"checkDeferredNode\",\"dur\":80820.45912742615,\"args\":{\"kind\":279,\"pos\":795,\"end\":1045,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2328084.5420360565,\"name\":\"checkExpression\",\"dur\":9841.37511253357,\"args\":{\"kind\":205,\"pos\":1524,\"end\":1631,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2328084.084033966,\"name\":\"checkExpression\",\"dur\":9894.875049591064,\"args\":{\"kind\":288,\"pos\":1523,\"end\":1632,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2327995.6669807434,\"name\":\"checkExpression\",\"dur\":10012.249946594238,\"args\":{\"kind\":286,\"pos\":1444,\"end\":1632,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2338291.834115982,\"name\":\"checkExpression\",\"dur\":9683.54082107544,\"args\":{\"kind\":205,\"pos\":1524,\"end\":1631,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2338291.417121887,\"name\":\"checkExpression\",\"dur\":9730.957984924316,\"args\":{\"kind\":288,\"pos\":1523,\"end\":1632,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2338235.5840206146,\"name\":\"checkExpression\",\"dur\":9953.707933425903,\"args\":{\"kind\":286,\"pos\":1444,\"end\":1632,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2354355.7090759277,\"name\":\"checkExpression\",\"dur\":9088.207960128784,\"args\":{\"kind\":205,\"pos\":1524,\"end\":1631,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2354354.6669483185,\"name\":\"checkExpression\",\"dur\":9142.87519454956,\"args\":{\"kind\":288,\"pos\":1523,\"end\":1632,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2352299.250125885,\"name\":\"checkExpression\",\"dur\":11229.95901107788,\"args\":{\"kind\":286,\"pos\":1444,\"end\":1632,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2509995.125055313,\"name\":\"structuredTypeRelatedTo\",\"dur\":126.87492370605469,\"args\":{\"sourceId\":1725,\"targetId\":35}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2509944.3340301514,\"name\":\"structuredTypeRelatedTo\",\"dur\":314.58306312561035,\"args\":{\"sourceId\":41148,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2511095.75009346,\"name\":\"structuredTypeRelatedTo\",\"dur\":9437.916994094849,\"args\":{\"sourceId\":41161,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2527888.2501125336,\"name\":\"structuredTypeRelatedTo\",\"dur\":8300.166845321655,\"args\":{\"sourceId\":41189,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2539998.708963394,\"name\":\"structuredTypeRelatedTo\",\"dur\":4.708051681518555,\"args\":{\"sourceId\":41293,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2549994.6670532227,\"name\":\"structuredTypeRelatedTo\",\"dur\":6.000041961669922,\"args\":{\"sourceId\":41350,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2558462.7919197083,\"name\":\"structuredTypeRelatedTo\",\"dur\":1572.4170207977295,\"args\":{\"sourceId\":41458,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2364829.209089279,\"name\":\"structuredTypeRelatedTo\",\"dur\":201483.5000038147,\"args\":{\"sourceId\":41114,\"targetId\":41035}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2364818.1669712067,\"name\":\"structuredTypeRelatedTo\",\"dur\":201513.37504386902,\"args\":{\"sourceId\":41116,\"targetId\":41097}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2363927.6671409607,\"name\":\"structuredTypeRelatedTo\",\"dur\":202415.41695594788,\"args\":{\"sourceId\":41116,\"targetId\":41103}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2567909.58404541,\"name\":\"structuredTypeRelatedTo\",\"dur\":7552.999973297119,\"args\":{\"sourceId\":41161,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2579646.917104721,\"name\":\"structuredTypeRelatedTo\",\"dur\":432.2078227996826,\"args\":{\"sourceId\":22896,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2579133.0001354218,\"name\":\"structuredTypeRelatedTo\",\"dur\":1099.2088317871094,\"args\":{\"sourceId\":41173,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2582608.6671352386,\"name\":\"structuredTypeRelatedTo\",\"dur\":7937.374830245972,\"args\":{\"sourceId\":41189,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2595776.000022888,\"name\":\"structuredTypeRelatedTo\",\"dur\":7945.625066757202,\"args\":{\"sourceId\":41312,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2609753.8340091705,\"name\":\"structuredTypeRelatedTo\",\"dur\":266.16597175598145,\"args\":{\"sourceId\":41419,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2619853.6670207977,\"name\":\"structuredTypeRelatedTo\",\"dur\":270.95794677734375,\"args\":{\"sourceId\":41492,\"targetId\":22329}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2566647.0839977264,\"name\":\"structuredTypeRelatedTo\",\"dur\":53677.29115486145,\"args\":{\"sourceId\":41114,\"targetId\":41035}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2566359.125137329,\"name\":\"structuredTypeRelatedTo\",\"dur\":53981.791973114014,\"args\":{\"sourceId\":41116,\"targetId\":41103}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2327937.2091293335,\"name\":\"checkDeferredNode\",\"dur\":292534.4159603119,\"args\":{\"kind\":279,\"pos\":1439,\"end\":1635,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2620855.250120163,\"name\":\"checkExpression\",\"dur\":9532.874822616577,\"args\":{\"kind\":205,\"pos\":1707,\"end\":1793,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2620854.292154312,\"name\":\"checkExpression\",\"dur\":9574.541807174683,\"args\":{\"kind\":288,\"pos\":1706,\"end\":1794,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2620703.91702652,\"name\":\"checkExpression\",\"dur\":9746.37508392334,\"args\":{\"kind\":286,\"pos\":1644,\"end\":1794,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2630714.1671180725,\"name\":\"checkExpression\",\"dur\":9828.082799911499,\"args\":{\"kind\":205,\"pos\":1707,\"end\":1793,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2630713.7501239777,\"name\":\"checkExpression\",\"dur\":9871.166944503784,\"args\":{\"kind\":288,\"pos\":1706,\"end\":1794,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2630681.5841197968,\"name\":\"checkExpression\",\"dur\":9922.83296585083,\"args\":{\"kind\":286,\"pos\":1644,\"end\":1794,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2643415.7090187073,\"name\":\"checkExpression\",\"dur\":9955.291032791138,\"args\":{\"kind\":205,\"pos\":1707,\"end\":1793,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2643414.9589538574,\"name\":\"checkExpression\",\"dur\":10014.291048049927,\"args\":{\"kind\":288,\"pos\":1706,\"end\":1794,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2642981.416940689,\"name\":\"checkExpression\",\"dur\":10470.583200454712,\"args\":{\"kind\":286,\"pos\":1644,\"end\":1794,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2620486.5839481354,\"name\":\"checkDeferredNode\",\"dur\":38341.50004386902,\"args\":{\"kind\":279,\"pos\":1639,\"end\":1797,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2658871.834039688,\"name\":\"checkDeferredNode\",\"dur\":1973.7908840179443,\"args\":{\"kind\":279,\"pos\":1801,\"end\":1882,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2668628.167152405,\"name\":\"checkDeferredNode\",\"dur\":2970.4999923706055,\"args\":{\"kind\":279,\"pos\":2090,\"end\":2180,\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":2671667.1249866486,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":2671694.375038147,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2679935.8339309692,\"name\":\"structuredTypeRelatedTo\",\"dur\":302.6251792907715,\"args\":{\"sourceId\":42181,\"targetId\":7315}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2679926.208972931,\"name\":\"structuredTypeRelatedTo\",\"dur\":641.8750286102295,\"args\":{\"sourceId\":42181,\"targetId\":23541}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2689828.4590244293,\"name\":\"structuredTypeRelatedTo\",\"dur\":212.45789527893066,\"args\":{\"sourceId\":42175,\"targetId\":23743}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2755276.167154312,\"name\":\"structuredTypeRelatedTo\",\"dur\":52523.29182624817,\"args\":{\"sourceId\":44048,\"targetId\":44045}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2755248.708963394,\"name\":\"structuredTypeRelatedTo\",\"dur\":59623.33297729492,\"args\":{\"sourceId\":44036,\"targetId\":44035}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2755237.5841140747,\"name\":\"structuredTypeRelatedTo\",\"dur\":59676.87487602234,\"args\":{\"sourceId\":43935,\"targetId\":43930}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2754238.9590740204,\"name\":\"getVariancesWorker\",\"dur\":60698.12488555908,\"args\":{\"arity\":1,\"id\":23297,\"results\":{\"variances\":[\"out\"]}}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2754237.7920150757,\"name\":\"structuredTypeRelatedTo\",\"dur\":60731.250047683716,\"args\":{\"sourceId\":43930,\"targetId\":43935}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2754142.7919864655,\"name\":\"structuredTypeRelatedTo\",\"dur\":60848.166942596436,\"args\":{\"sourceId\":43932,\"targetId\":43937}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2753119.3749904633,\"name\":\"structuredTypeRelatedTo\",\"dur\":62000.916957855225,\"args\":{\"sourceId\":43927,\"targetId\":43926}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2753079.083919525,\"name\":\"getVariancesWorker\",\"dur\":62261.70802116394,\"args\":{\"arity\":1,\"id\":23521,\"results\":{\"variances\":[\"in out\"]}}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2753074.7921466827,\"name\":\"structuredTypeRelatedTo\",\"dur\":62993.6249256134,\"args\":{\"sourceId\":43863,\"targetId\":43646}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2839589.2090797424,\"name\":\"structuredTypeRelatedTo\",\"dur\":684.5409870147705,\"args\":{\"sourceId\":44081,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2859995.125055313,\"name\":\"structuredTypeRelatedTo\",\"dur\":4.999876022338867,\"args\":{\"sourceId\":44115,\"targetId\":44108}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2859751.084089279,\"name\":\"structuredTypeRelatedTo\",\"dur\":320.5828666687012,\"args\":{\"sourceId\":44115,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2869803.8749694824,\"name\":\"structuredTypeRelatedTo\",\"dur\":277.6670455932617,\"args\":{\"sourceId\":44140,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2879693.5420036316,\"name\":\"structuredTypeRelatedTo\",\"dur\":979.8750877380371,\"args\":{\"sourceId\":6924,\"targetId\":44079}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2879690.83404541,\"name\":\"structuredTypeRelatedTo\",\"dur\":1039.9160385131836,\"args\":{\"sourceId\":44168,\"targetId\":44079}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2879645.334005356,\"name\":\"structuredTypeRelatedTo\",\"dur\":1473.8330841064453,\"args\":{\"sourceId\":44168,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2889999.2921352386,\"name\":\"structuredTypeRelatedTo\",\"dur\":0.8327960968017578,\"args\":{\"sourceId\":44189,\"targetId\":6898}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2889998.5840320587,\"name\":\"structuredTypeRelatedTo\",\"dur\":47.625064849853516,\"args\":{\"sourceId\":44189,\"targetId\":44142}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2889727.3750305176,\"name\":\"structuredTypeRelatedTo\",\"dur\":502.37488746643066,\"args\":{\"sourceId\":44189,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2899997.2500801086,\"name\":\"structuredTypeRelatedTo\",\"dur\":2.833843231201172,\"args\":{\"sourceId\":44206,\"targetId\":44074}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2899976.583957672,\"name\":\"structuredTypeRelatedTo\",\"dur\":558.5830211639404,\"args\":{\"sourceId\":44206,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2909570.7499980927,\"name\":\"structuredTypeRelatedTo\",\"dur\":566.9591426849365,\"args\":{\"sourceId\":44222,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2919997.959136963,\"name\":\"structuredTypeRelatedTo\",\"dur\":2.5827884674072266,\"args\":{\"sourceId\":44237,\"targetId\":44172}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2919612.6251220703,\"name\":\"structuredTypeRelatedTo\",\"dur\":689.708948135376,\"args\":{\"sourceId\":44237,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2924229.8340797424,\"name\":\"structuredTypeRelatedTo\",\"dur\":44176.33295059204,\"args\":{\"sourceId\":44250,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2838993.0839538574,\"name\":\"structuredTypeRelatedTo\",\"dur\":129485.33296585083,\"args\":{\"sourceId\":44246,\"targetId\":44796}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2832328.20892334,\"name\":\"structuredTypeRelatedTo\",\"dur\":136588.45806121826,\"args\":{\"sourceId\":43923,\"targetId\":43431}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2832272.208929062,\"name\":\"structuredTypeRelatedTo\",\"dur\":136659.79099273682,\"args\":{\"sourceId\":43925,\"targetId\":43431}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2816098.042011261,\"name\":\"structuredTypeRelatedTo\",\"dur\":152850.04210472107,\"args\":{\"sourceId\":43863,\"targetId\":43431}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2751677.999973297,\"name\":\"structuredTypeRelatedTo\",\"dur\":217284.41715240479,\"args\":{\"sourceId\":43442,\"targetId\":43431}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2989998.6250400543,\"name\":\"structuredTypeRelatedTo\",\"dur\":75.45900344848633,\"args\":{\"sourceId\":53057,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2999997.6251125336,\"name\":\"structuredTypeRelatedTo\",\"dur\":3.6668777465820312,\"args\":{\"sourceId\":53102,\"targetId\":53093}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2999734.041929245,\"name\":\"structuredTypeRelatedTo\",\"dur\":360.87512969970703,\"args\":{\"sourceId\":53102,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3009999.7091293335,\"name\":\"structuredTypeRelatedTo\",\"dur\":0.29087066650390625,\"args\":{\"sourceId\":6905,\"targetId\":53117}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3009997.4999427795,\"name\":\"structuredTypeRelatedTo\",\"dur\":57.7089786529541,\"args\":{\"sourceId\":53124,\"targetId\":53117}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3009715.2919769287,\"name\":\"structuredTypeRelatedTo\",\"dur\":380.79214096069336,\"args\":{\"sourceId\":53124,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3019999.042034149,\"name\":\"structuredTypeRelatedTo\",\"dur\":3.3330917358398438,\"args\":{\"sourceId\":53147,\"targetId\":53098}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3019761.9590759277,\"name\":\"structuredTypeRelatedTo\",\"dur\":517.7910327911377,\"args\":{\"sourceId\":53147,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3029998.0840682983,\"name\":\"structuredTypeRelatedTo\",\"dur\":2.624988555908203,\"args\":{\"sourceId\":53168,\"targetId\":53093}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3029801.917076111,\"name\":\"structuredTypeRelatedTo\",\"dur\":1801.6250133514404,\"args\":{\"sourceId\":53168,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3039779.2921066284,\"name\":\"structuredTypeRelatedTo\",\"dur\":554.4168949127197,\"args\":{\"sourceId\":53184,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3049999.9170303345,\"name\":\"structuredTypeRelatedTo\",\"dur\":0.7500648498535156,\"args\":{\"sourceId\":53199,\"targetId\":6955}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3049999.1669654846,\"name\":\"structuredTypeRelatedTo\",\"dur\":44.41714286804199,\"args\":{\"sourceId\":53199,\"targetId\":53173}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3049477.499961853,\"name\":\"structuredTypeRelatedTo\",\"dur\":679.1670322418213,\"args\":{\"sourceId\":53199,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3059480.3750514984,\"name\":\"structuredTypeRelatedTo\",\"dur\":697.0000267028809,\"args\":{\"sourceId\":53213,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2989435.333967209,\"name\":\"structuredTypeRelatedTo\",\"dur\":76190.00005722046,\"args\":{\"sourceId\":53221,\"targetId\":53768}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2980883.125066757,\"name\":\"structuredTypeRelatedTo\",\"dur\":84915.2500629425,\"args\":{\"sourceId\":43651,\"targetId\":43442}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2980838.709115982,\"name\":\"structuredTypeRelatedTo\",\"dur\":84974.04098510742,\"args\":{\"sourceId\":43653,\"targetId\":43442}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2969065.667152405,\"name\":\"structuredTypeRelatedTo\",\"dur\":96757.2078704834,\"args\":{\"sourceId\":43646,\"targetId\":43442}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2969000.75006485,\"name\":\"structuredTypeRelatedTo\",\"dur\":96831.2919139862,\"args\":{\"sourceId\":43431,\"targetId\":43442}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2750658.29205513,\"name\":\"structuredTypeRelatedTo\",\"dur\":317054.3329715729,\"args\":{\"sourceId\":43443,\"targetId\":43432}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2750647.709131241,\"name\":\"structuredTypeRelatedTo\",\"dur\":317434.9160194397,\"args\":{\"sourceId\":43453,\"targetId\":43450}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2702327.4590969086,\"name\":\"structuredTypeRelatedTo\",\"dur\":365776.0000228882,\"args\":{\"sourceId\":43455,\"targetId\":43452}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3068194.6671009064,\"name\":\"structuredTypeRelatedTo\",\"dur\":5886.374950408936,\"args\":{\"sourceId\":53849,\"targetId\":53843}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3068163.9590263367,\"name\":\"structuredTypeRelatedTo\",\"dur\":5960.207939147949,\"args\":{\"sourceId\":53838,\"targetId\":53835}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3068134.166955948,\"name\":\"structuredTypeRelatedTo\",\"dur\":6013.957977294922,\"args\":{\"sourceId\":53840,\"targetId\":53837}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2702247.7090358734,\"name\":\"structuredTypeRelatedTo\",\"dur\":371922.1251010895,\"args\":{\"sourceId\":43427,\"targetId\":43426}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3077756.6249370575,\"name\":\"structuredTypeRelatedTo\",\"dur\":5520.792007446289,\"args\":{\"sourceId\":54258,\"targetId\":25041}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3077752.959012985,\"name\":\"structuredTypeRelatedTo\",\"dur\":5562.916040420532,\"args\":{\"sourceId\":54258,\"targetId\":54065}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3075248.5840320587,\"name\":\"structuredTypeRelatedTo\",\"dur\":8936.832904815674,\"args\":{\"sourceId\":54005,\"targetId\":53992}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3099999.624967575,\"name\":\"structuredTypeRelatedTo\",\"dur\":73.50015640258789,\"args\":{\"sourceId\":54270,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3109999.9589920044,\"name\":\"structuredTypeRelatedTo\",\"dur\":0.2911090850830078,\"args\":{\"sourceId\":6880,\"targetId\":54266}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3109997.167110443,\"name\":\"structuredTypeRelatedTo\",\"dur\":60.957908630371094,\"args\":{\"sourceId\":54314,\"targetId\":54266}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3109955.791950226,\"name\":\"structuredTypeRelatedTo\",\"dur\":369.54212188720703,\"args\":{\"sourceId\":54314,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3119791.5420532227,\"name\":\"structuredTypeRelatedTo\",\"dur\":351.6669273376465,\"args\":{\"sourceId\":54336,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3129997.792005539,\"name\":\"structuredTypeRelatedTo\",\"dur\":2.958059310913086,\"args\":{\"sourceId\":54357,\"targetId\":54320}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3129698.7919807434,\"name\":\"structuredTypeRelatedTo\",\"dur\":783.1251621246338,\"args\":{\"sourceId\":54357,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3139702.0421028137,\"name\":\"structuredTypeRelatedTo\",\"dur\":503.7498474121094,\"args\":{\"sourceId\":54376,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3149999.417066574,\"name\":\"structuredTypeRelatedTo\",\"dur\":3.1669139862060547,\"args\":{\"sourceId\":54393,\"targetId\":54283}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3149890.1669979095,\"name\":\"structuredTypeRelatedTo\",\"dur\":644.9999809265137,\"args\":{\"sourceId\":54393,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3159999.834060669,\"name\":\"structuredTypeRelatedTo\",\"dur\":0.2079010009765625,\"args\":{\"sourceId\":6973,\"targetId\":54307}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3159997.7090358734,\"name\":\"structuredTypeRelatedTo\",\"dur\":44.04091835021973,\"args\":{\"sourceId\":54406,\"targetId\":54307}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3159812.2091293335,\"name\":\"structuredTypeRelatedTo\",\"dur\":619.3749904632568,\"args\":{\"sourceId\":54406,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3169205.0840854645,\"name\":\"structuredTypeRelatedTo\",\"dur\":1105.0410270690918,\"args\":{\"sourceId\":54421,\"targetId\":6866}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3169204.250097275,\"name\":\"structuredTypeRelatedTo\",\"dur\":1151.2088775634766,\"args\":{\"sourceId\":54421,\"targetId\":54300}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3169024.3339538574,\"name\":\"structuredTypeRelatedTo\",\"dur\":1900.7081985473633,\"args\":{\"sourceId\":54421,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3179538.4171009064,\"name\":\"structuredTypeRelatedTo\",\"dur\":1868.2079315185547,\"args\":{\"sourceId\":54459,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3098990.2091026306,\"name\":\"structuredTypeRelatedTo\",\"dur\":82450.87504386902,\"args\":{\"sourceId\":54436,\"targetId\":55003}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3091597.3341464996,\"name\":\"structuredTypeRelatedTo\",\"dur\":90015.74993133545,\"args\":{\"sourceId\":54029,\"targetId\":23542}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3091555.000066757,\"name\":\"structuredTypeRelatedTo\",\"dur\":90073.49991798401,\"args\":{\"sourceId\":54031,\"targetId\":23542}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3084236.8750572205,\"name\":\"structuredTypeRelatedTo\",\"dur\":97405.79199790955,\"args\":{\"sourceId\":24217,\"targetId\":23542}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3084234.2500686646,\"name\":\"structuredTypeRelatedTo\",\"dur\":99633.9590549469,\"args\":{\"sourceId\":54053,\"targetId\":53992}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3084232.2499752045,\"name\":\"structuredTypeRelatedTo\",\"dur\":99765.75016975403,\"args\":{\"sourceId\":54018,\"targetId\":54453}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3084224.0841388702,\"name\":\"structuredTypeRelatedTo\",\"dur\":99792.24991798401,\"args\":{\"sourceId\":54018,\"targetId\":54047}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3075244.7090148926,\"name\":\"structuredTypeRelatedTo\",\"dur\":108782.7501296997,\"args\":{\"sourceId\":54015,\"targetId\":54012}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3074280.4169654846,\"name\":\"structuredTypeRelatedTo\",\"dur\":109775.29215812683,\"args\":{\"sourceId\":54017,\"targetId\":54014}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":3074248.4591007233,\"name\":\"structuredTypeRelatedTo\",\"dur\":109818.2909488678,\"args\":{\"sourceId\":53985,\"targetId\":53984}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"checkTypes\",\"ts\":2702174.4589805603,\"name\":\"getVariancesWorker\",\"dur\":485128.7910938263,\"args\":{\"arity\":4,\"id\":7699,\"results\":{\"variances\":[\"in out (unreliable)\",\"in out (unreliable)\",\"out\",\"in out (unreliable)\"]}}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"check\",\"ts\":2679442.749977112,\"name\":\"checkDeferredNode\",\"dur\":512504.625082016,\"args\":{\"kind\":279,\"pos\":281,\"end\":323,\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194568.084001541,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"emit\",\"ts\":3194716.875076294,\"name\":\"emit\",\"args\":{}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194808.2921504974,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194820.1670646667,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es5.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194828.91702652,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194843.6670303345,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194854.4590473175,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194863.41714859,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194871.292114258,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194878.667116165,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194885.542154312,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194892.62509346,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194899.374961853,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194906.1250686646,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194912.542104721,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194919.291973114,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194926.875114441,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194933.8750839233,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.dom.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194940.459012985,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194947.2501277924,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194953.87506485,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194960.624933243,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194967.458963394,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.generator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194974.2090702057,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.generator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194980.875015259,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.iterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3194987.6251220703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.iterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3194993.9589500427,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195022.0420360565,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195028.7499427795,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.proxy.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195035.4170799255,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.proxy.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195043.916940689,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.reflect.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195051.500082016,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.reflect.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195058.3341121674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195065.0839805603,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195071.5839862823,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195078.583955765,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195085.209131241,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.array.include.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195091.875076294,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2016.array.include.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195098.5000133514,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195105.334043503,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195111.8750572205,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195118.541955948,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195124.9170303345,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195131.667137146,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195138.041973114,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195144.7501182556,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195151.209115982,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195157.917022705,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195164.4999980927,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195171.250104904,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195177.6671409607,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195184.3750476837,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195191.041946411,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195197.709083557,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195204.209089279,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195210.8340263367,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195217.250108719,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.regexp.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195223.958969116,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2018.regexp.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195230.2091121674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195236.9170188904,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195243.499994278,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195250.209093094,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195256.875038147,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195263.584136963,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195270.250082016,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195277.0841121674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2019.symbol.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195284.209012985,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.bigint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195291.417121887,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.bigint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195298.2919216156,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195305.1249980927,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195311.583995819,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195318.1669712067,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.promise.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195324.917078018,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195400.0000953674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195409.6250534058,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195421.0419654846,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195427.999973297,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195435.1251125336,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195441.7090415955,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195448.292016983,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195454.8749923706,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195461.5421295166,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.es2020.number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195468.209028244,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.esnext.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195475.1670360565,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/typescript/lib/lib.esnext.intl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195483.0000400543,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195490.124940872,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195496.834039688,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195503.3750534058,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195510.750055313,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195517.9591178894,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195524.6250629425,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195531.7919254303,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195538.542032242,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195547.5840568542,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195558.417081833,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195565.7091140747,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195572.2501277924,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195578.7920951843,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195585.1669311523,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195591.875076294,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/core/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195598.624944687,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195605.3750514984,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195611.999988556,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195618.541955948,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195624.8750686646,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195631.500005722,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195637.9170417786,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195644.3750858307,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/theme.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195650.5839824677,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195657.4590206146,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195664.041996002,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195670.4590320587,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/css-util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195676.9590377808,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195684.334039688,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195692.2919750214,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195701.7500400543,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195708.5840702057,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/prop-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195715.3339385986,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/prop-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195722.0001220703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/tracing.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195728.584051132,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/tracing.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195735.291957855,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195741.959095001,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195748.5840320587,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195755.249977112,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/styled-component.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195761.584043503,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195768.084049225,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/stitches.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195774.3339538574,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195780.7500362396,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/react/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195787.209033966,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195793.7920093536,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195802.083969116,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195810.1670742035,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195816.58411026,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195823.9591121674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-react.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195830.2090168,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195836.874961853,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195843.4591293335,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195850.1670360565,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195856.7090034485,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195863.5420799255,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195869.917154312,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195876.5001296997,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195882.584095001,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195889.0841007233,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195895.4169750214,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195901.9169807434,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195907.9999923706,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195914.4999980927,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195920.62497139,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195927.124977112,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195933.2921504974,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195939.875125885,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195946.417093277,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195952.959060669,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195959.249973297,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195966.0000801086,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195972.666978836,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195979.2499542236,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195985.5420589447,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3195991.959095001,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3195998.208999634,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196005.1250457764,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196011.4171504974,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196017.8339481354,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196023.999929428,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196030.4169654846,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196036.5841388702,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196043.0841445923,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196049.4589805603,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196055.9170246124,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196062.250137329,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196069.458961487,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196487.2920513153,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196494.6670532227,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196504.08411026,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196511.0840797424,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196517.7090168,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196525.0840187073,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196532.04202652,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196538.6669635773,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196545.000076294,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196551.584005356,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196558.2089424133,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196564.917087555,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196576.0419368744,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196582.8750133514,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196589.2090797424,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196595.8340168,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196602.499961853,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196609.125137329,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196615.334033966,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196621.8750476837,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196628.2091140747,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196635.416984558,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196641.750097275,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196648.3750343323,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196654.9170017242,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196661.3750457764,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196667.6671504974,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196674.4589805603,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196680.834054947,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196687.250137329,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196693.624973297,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196700.334072113,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196706.666946411,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196713.2091522217,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196719.54202652,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196726.208925247,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196732.542037964,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196739.249944687,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196745.6250190735,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196752.375125885,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196758.6669921875,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196765.291929245,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196771.749973297,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196778.417110443,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196784.791946411,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196791.417121887,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196797.62506485,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196804.4171333313,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196810.667037964,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196817.0840740204,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196823.5421180725,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196830.16705513,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196836.7919921875,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196843.4591293335,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196849.8339653015,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196856.416940689,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196862.6251220703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196869.3749904633,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196875.79202652,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196882.625102997,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196888.750076294,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196895.334005356,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196901.6671180725,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196908.3750247955,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196914.7090911865,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196921.1671352386,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196927.5419712067,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196934.1249465942,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196940.500020981,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196947.000026703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196953.4590244293,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196960.041999817,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196966.4590358734,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196973.083972931,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196979.583978653,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3196987.2920513153,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/dark/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3196994.0419197083,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197001.25002861,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/amber.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197008.0840587616,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197014.7919654846,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/blue.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197021.2500095367,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197028.249979019,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronze.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197034.749984741,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197041.3749217987,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/brown.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197047.833919525,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197054.5420646667,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimson.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197060.9591007233,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197067.749977112,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyan.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197073.9591121674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197080.542087555,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gold.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197086.9591236115,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197097.0001220703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grass.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197103.584051132,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197110.4171276093,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/gray.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197117.1250343323,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197123.875141144,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/green.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197130.208969116,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197136.749982834,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigo.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197143.1250572205,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197151.2501239777,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/lime.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197157.58395195,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197164.3340587616,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mint.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197170.8340644836,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197177.5419712067,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olive.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197184.000015259,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197190.7501220703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orange.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197197.000026703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197203.709125519,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pink.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197210.041999817,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197216.709136963,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/plum.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197222.8751182556,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197229.500055313,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purple.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197235.8751296997,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197242.4590587616,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauve.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197248.9590644836,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197255.6250095367,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/red.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197262.2499465942,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197268.9170837402,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sage.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197275.2919197083,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197282.166957855,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sand.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197288.4590625763,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197295.3341007233,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sky.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197301.6669750214,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197308.249950409,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slate.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197314.5840168,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197321.5420246124,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teal.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197327.917098999,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197334.5839977264,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomato.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197341.0000801086,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197347.459077835,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violet.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197353.6670207977,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197360.3749275208,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellow.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197366.7500019073,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197373.4591007233,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/ambera.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197379.9591064453,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197386.584043503,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bluea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197393.249988556,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197399.959087372,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/bronzea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197406.5420627594,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197413.4171009064,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/browna.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197420.2921390533,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197426.917076111,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/crimsona.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197433.7091445923,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197440.7501220703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/cyana.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197447.1669197083,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197453.91702652,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/golda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197460.4589939117,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197467.2091007233,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/grassa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197473.8750457764,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197480.7920455933,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/graya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197487.334012985,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197496.792078018,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/greena.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197503.167152405,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197509.9999904633,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/indigoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197516.2920951843,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197523.1671333313,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/limea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197531.459093094,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197538.166999817,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/minta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197544.5420742035,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197551.167011261,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/olivea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197557.7499866486,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197564.54205513,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/orangea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197571.084022522,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197577.6669979095,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pinka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197584.249973297,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197591.0420417786,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/pluma.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197597.5000858307,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197604.208946228,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/purplea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197610.5420589447,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197617.2919273376,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/mauvea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197623.542070389,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197630.0840377808,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/reda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197636.3339424133,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197642.7919864655,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sagea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197649.167060852,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197655.7919979095,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/sanda.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197662.4591350555,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197669.1250801086,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/skya.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197675.791978836,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197682.3749542236,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/slatea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197689.0001296997,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197695.5001354218,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/teala.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197701.87497139,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197708.4169387817,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/tomatoa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197714.8339748383,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197721.4999198914,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/violeta.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197729.542016983,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197736.37509346,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/yellowa.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197743.0419921875,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197749.624967575,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/light/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197756.0839653015,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/blacka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197762.8750801086,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/blacka.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197769.3750858307,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/whitea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197776.5419483185,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/whitea.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197782.875061035,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197791.708946228,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@radix-ui/colors/types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197798.334121704,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197805.5419921875,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197812.0419979095,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197819.209098816,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197825.583934784,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197832.584142685,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-749-react.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197839.334011078,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/eslint-visitor-keys/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197846.0841178894,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/eslint-visitor-keys/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197852.5841236115,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/json-schema/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197860.500097275,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/json-schema/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197866.959095001,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197873.74997139,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/common.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197880.208969116,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197893.584012985,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/array.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197900.166988373,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197907.166957855,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/collection.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197913.4171009064,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197920.042037964,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/date.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197926.4590740204,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/function.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197933.375120163,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/function.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197939.8341178894,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197946.624994278,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/lang.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197953.125,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/math.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197960.1249694824,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/math.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197966.709136963,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197973.5000133514,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/number.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197980.0000190735,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197986.666917801,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/object.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3197992.8340911865,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/seq.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3197999.5000362396,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/seq.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198006.0839653015,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198012.792110443,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/string.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198019.0420150757,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198025.7499217987,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/common/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198032.2499275208,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198039.5419597626,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198046.0419654846,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash.merge/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198052.7091026306,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/lodash.merge/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198058.9170455933,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198066.2920475006,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198073.084115982,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert/strict.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198079.8749923706,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/assert/strict.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198086.3749980927,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198093.6670303345,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198100.2089977264,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/async_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198106.917142868,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/async_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198113.3749485016,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198120.2499866486,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/buffer.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198126.625061035,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198133.167028427,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/child_process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198140.459060669,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/cluster.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198147.2499370575,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/cluster.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198154.2501449585,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/console.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198161.250114441,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/console.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198167.834043503,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/constants.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198174.66711998,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/constants.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198181.2500953674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198188.0419254303,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/crypto.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198194.458961487,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dgram.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198201.2090682983,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dgram.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198207.4999809265,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/diagnostics_channel.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198214.874982834,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/diagnostics_channel.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198221.416950226,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198228.1670570374,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198234.6670627594,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198241.4169311523,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/dns/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198247.8749752045,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/domain.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198254.8339366913,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/domain.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198261.542081833,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198268.2089805603,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198274.6250629425,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198281.1670303345,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198287.7089977264,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198294.834136963,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/fs/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198301.7921447754,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198308.5839748383,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198315.0420188904,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http2.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198322.334051132,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/http2.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198328.7501335144,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/https.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198335.3340625763,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/https.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198341.917037964,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198349.0841388702,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/inspector.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198355.541944504,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/module.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198366.959095001,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/module.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198373.374938965,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/net.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198380.1250457764,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/net.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198386.9590759277,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/os.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198393.7089443207,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/os.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198400.125026703,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/path.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198407.00006485,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/path.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198413.2499694824,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/perf_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198419.9590682983,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/perf_hooks.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198426.7921447754,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198433.5000514984,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/process.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198439.959049225,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/punycode.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198446.624994278,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/punycode.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198453.500032425,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/querystring.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198460.2501392365,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/querystring.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198467.9169654846,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/readline.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198474.709033966,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/readline.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198481.0841083527,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/repl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198487.7500534058,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/repl.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198494.250059128,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198501.708984375,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198508.125066757,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198514.7919654846,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198521.209001541,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/consumers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198528.5840034485,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/consumers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198535.166978836,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/web.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198541.9170856476,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/stream/web.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198548.91705513,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/string_decoder.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198555.7091236115,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/string_decoder.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198563.0419254303,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198569.9169635773,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198576.3750076294,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198583.2920074463,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/timers/promises.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198589.667081833,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tls.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198596.54211998,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tls.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198603.1250953674,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/trace_events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198609.959125519,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/trace_events.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198616.291999817,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tty.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198623.0001449585,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/tty.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198629.625082016,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/url.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198636.542081833,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/url.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198643.1250572205,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198650.2499580383,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/util.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198656.834125519,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/v8.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198663.7921333313,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/v8.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198670.249938965,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/vm.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198677.250146866,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/vm.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198683.8340759277,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/wasi.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198690.6249523163,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/wasi.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198697.1249580383,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/worker_threads.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198703.8340568542,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/worker_threads.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198710.2501392365,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198717.124938965,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/zlib.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198723.6671447754,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198730.3750514984,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/globals.global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198736.834049225,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198743.667125702,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/node/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198750.1249313354,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198757.584095001,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198764.2500400543,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198783.7920188904,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/csstype/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198792.209148407,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198801.0420799255,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198807.834148407,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198814.6669864655,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-dom/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198821.249961853,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198829.7090530396,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198836.4169597626,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198843.209028244,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/react-test-renderer/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"B\",\"cat\":\"check\",\"ts\":3198849.5841026306,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"check\",\"ts\":3198856.4591407776,\"name\":\"checkSourceFile\",\"args\":{\"path\":\"/users/abdul/work/stitches/node_modules/@types/scheduler/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3199691.6670799255,\"name\":\"transformNodes\",\"dur\":1068.2499408721924,\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-803-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3199382.4169635773,\"name\":\"emitDeclarationFileOrBundle\",\"dur\":2772.9580402374268,\"args\":{\"declarationFilePath\":\"/Users/abdul/work/stitches/packages/test/built-types/Issue-803-core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3202551.2919425964,\"name\":\"transformNodes\",\"dur\":15381.208181381226,\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/issue-813-core.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3202528.249979019,\"name\":\"emitDeclarationFileOrBundle\",\"dur\":18850.87513923645,\"args\":{\"declarationFilePath\":\"/Users/abdul/work/stitches/packages/test/built-types/Issue-813-core.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3229204.792022705,\"name\":\"transformNodes\",\"dur\":49168.49994659424,\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/stitches.config.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3229182.5840473175,\"name\":\"emitDeclarationFileOrBundle\",\"dur\":87017.49992370605,\"args\":{\"declarationFilePath\":\"/Users/abdul/work/stitches/packages/test/built-types/stitches.config.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3316359.041929245,\"name\":\"transformNodes\",\"dur\":12790.542125701904,\"args\":{\"path\":\"/users/abdul/work/stitches/packages/test/index.tsx\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"X\",\"cat\":\"emit\",\"ts\":3316328.91702652,\"name\":\"emitDeclarationFileOrBundle\",\"dur\":16234.750032424927,\"args\":{\"declarationFilePath\":\"/Users/abdul/work/stitches/packages/test/built-types/index.d.ts\"}},\n{\"pid\":1,\"tid\":1,\"ph\":\"E\",\"cat\":\"emit\",\"ts\":3333765.9590244293,\"name\":\"emit\",\"args\":{}}\n]\n"
  },
  {
    "path": "packages/test/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"diagnostics\": true,\n    \"outDir\": \"built-types\",\n    \"emitDeclarationOnly\": true,\n    \"esModuleInterop\": true,\n    \"extendedDiagnostics\": true,\n    \"noEmit\": false,\n    \"skipLibCheck\": true,\n    \"jsx\": \"preserve\",\n    \"declaration\": true,\n    \"lib\": [\n      \"dom\",\n      \"es2020\"\n    ],\n    \"moduleResolution\": \"node\",\n    \"strict\": true,\n    \"strictNullChecks\": true,\n    \"strictFunctionTypes\": true,\n    \"strictPropertyInitialization\": true,\n    \"target\": \"es2020\"\n  },\n  \"exclude\": [\"built-types\"]\n}\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"diagnostics\": true,\n    \"esModuleInterop\": true,\n    \"extendedDiagnostics\": true,\n    \"skipLibCheck\": false,\n    \"jsx\": \"preserve\",\n    \"lib\": [\n      \"dom\",\n      \"es2020\"\n    ],\n    \"moduleResolution\": \"node\",\n    \"strict\": true,\n    \"strictNullChecks\": true,\n    \"strictFunctionTypes\": true,\n    \"strictPropertyInitialization\": true,\n    \"target\": \"es2020\"\n  },\n}\n"
  },
  {
    "path": "tslint.json",
    "content": "{\n  \"extends\": [\"tslint:recommended\"],\n  \"rules\": {\n    \"arrow-return-shorthand\": [true],\n    \"class-name\": true,\n    \"encoding\": true,\n    \"interface-name\": [false],\n    \"interface-over-type-literal\": true,\n    \"max-classes-per-file\": false,\n    \"member-access\": [true, \"no-public\"],\n    \"no-bitwise\": false,\n    \"no-duplicate-imports\": true,\n    \"no-empty-interface\": false,\n    \"no-inferrable-types\": true,\n    \"no-invalid-template-strings\": true,\n    \"no-return-await\": true,\n    \"no-shadowed-variable\": false,\n    \"no-string-throw\": true,\n    \"no-unused-expression\": false,\n    \"no-var-keyword\": true,\n    \"object-literal-sort-keys\": false,\n    \"ordered-imports\": [\n      false,\n      {\n        \"grouped-imports\": true,\n        \"named-imports-order\": \"lowercase-last\"\n      }\n    ],\n    \"prefer-const\": true,\n    \"prefer-for-of\": false,\n    \"prefer-function-over-method\": true,\n    \"prefer-object-spread\": true,\n    \"prefer-template\": true,\n    \"switch-default\": true,\n    \"variable-name\": [true, \"allow-leading-underscore\", \"ban-keywords\", \"check-format\", \"allow-pascal-case\"]\n  }\n}\n"
  }
]