{
  "metadata": {
    "toolPackage": "@microsoft/api-extractor",
    "toolVersion": "7.7.1",
    "schemaVersion": 1003,
    "oldestForwardsCompatibleVersion": 1001
  },
  "kind": "Package",
  "canonicalReference": "@uifabric/styling!",
  "docComment": "",
  "name": "@uifabric/styling",
  "members": [
    {
      "kind": "EntryPoint",
      "canonicalReference": "@uifabric/styling!",
      "name": "",
      "members": [
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!AnimationClassNames:var",
          "docComment": "/**\n * {@docCategory AnimationClassNames}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "AnimationClassNames: "
            },
            {
              "kind": "Content",
              "text": "{\n    [key in keyof "
            },
            {
              "kind": "Reference",
              "text": "IAnimationStyles",
              "canonicalReference": "@uifabric/styling!IAnimationStyles:interface"
            },
            {
              "kind": "Content",
              "text": "]?: string;\n}"
            }
          ],
          "releaseTag": "Public",
          "name": "AnimationClassNames",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 4
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!AnimationStyles:var",
          "docComment": "/**\n * All Fabric standard animations, exposed as json objects referencing predefined keyframes. These objects can be mixed in with other class definitions.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "AnimationStyles: "
            },
            {
              "kind": "Reference",
              "text": "IAnimationStyles",
              "canonicalReference": "@uifabric/styling!IAnimationStyles:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "AnimationStyles",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!AnimationVariables:var",
          "docComment": "/**\n * Exporting raw duraction values and easing functions to be used in custom animations\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "AnimationVariables: "
            },
            {
              "kind": "Reference",
              "text": "IAnimationVariables",
              "canonicalReference": "@uifabric/styling!IAnimationVariables:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "AnimationVariables",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!buildClassMap:function(1)",
          "docComment": "/**\n * Builds a class names object from a given map.\n *\n * @param styles - Map of unprocessed styles.\n *\n * @returns Map of property name to class name.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function buildClassMap<T extends "
            },
            {
              "kind": "Reference",
              "text": "Object",
              "canonicalReference": "!Object:interface"
            },
            {
              "kind": "Content",
              "text": ">(styles: "
            },
            {
              "kind": "Content",
              "text": "T"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "{\n    [key in keyof T]?: string;\n}"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "styles",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            }
          ],
          "typeParameters": [
            {
              "typeParameterName": "T",
              "constraintTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              },
              "defaultTypeTokenRange": {
                "startIndex": 0,
                "endIndex": 0
              }
            }
          ],
          "name": "buildClassMap"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ColorClassNames:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ColorClassNames: "
            },
            {
              "kind": "Reference",
              "text": "IColorClassNames",
              "canonicalReference": "@uifabric/styling!IColorClassNames:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "ColorClassNames",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!createFontStyles:function(1)",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function createFontStyles(localeCode: "
            },
            {
              "kind": "Content",
              "text": "string | null"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IFontStyles",
              "canonicalReference": "@uifabric/styling!IFontStyles:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 4
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "localeCode",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "createFontStyles"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!createTheme:function(1)",
          "docComment": "/**\n * Creates a custom theme definition which can be used with the Customizer.\n *\n * @param theme - Partial theme object.\n *\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function createTheme(theme: "
            },
            {
              "kind": "Reference",
              "text": "IPartialTheme",
              "canonicalReference": "@uifabric/styling!IPartialTheme:type"
            },
            {
              "kind": "Content",
              "text": ", depComments?: "
            },
            {
              "kind": "Content",
              "text": "boolean"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "depComments",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            }
          ],
          "name": "createTheme"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!DefaultEffects:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "DefaultEffects: "
            },
            {
              "kind": "Reference",
              "text": "IEffects",
              "canonicalReference": "@uifabric/styling!IEffects:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "DefaultEffects",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!DefaultFontStyles:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "DefaultFontStyles: "
            },
            {
              "kind": "Reference",
              "text": "IFontStyles",
              "canonicalReference": "@uifabric/styling!IFontStyles:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "DefaultFontStyles",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!DefaultPalette:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "DefaultPalette: "
            },
            {
              "kind": "Reference",
              "text": "IPalette",
              "canonicalReference": "@uifabric/styling!IPalette:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "DefaultPalette",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!EdgeChromiumHighContrastSelector:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "EdgeChromiumHighContrastSelector = \"@media screen and (forced-colors: active)\""
            }
          ],
          "releaseTag": "Public",
          "name": "EdgeChromiumHighContrastSelector",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!focusClear:function(1)",
          "docComment": "/**\n * Generates style to clear browser specific focus styles.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function focusClear(): "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [],
          "name": "focusClear"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!FontClassNames:var",
          "docComment": "/**\n * {@docCategory FontClassNames}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "FontClassNames: "
            },
            {
              "kind": "Content",
              "text": "{\n    [key in keyof "
            },
            {
              "kind": "Reference",
              "text": "IFontStyles",
              "canonicalReference": "@uifabric/styling!IFontStyles:interface"
            },
            {
              "kind": "Content",
              "text": "]?: string;\n}"
            }
          ],
          "releaseTag": "Public",
          "name": "FontClassNames",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 4
          }
        },
        {
          "kind": "Namespace",
          "canonicalReference": "@uifabric/styling!FontSizes:namespace",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare namespace FontSizes "
            }
          ],
          "releaseTag": "Public",
          "name": "FontSizes",
          "members": [
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.icon:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "icon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "icon",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.large:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "large: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "large",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.medium:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "medium: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "medium",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.mediumPlus:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "mediumPlus: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "mediumPlus",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.mega:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "mega: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "mega",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.mini:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "mini: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "mini",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.small:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "small: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "small",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.smallPlus:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "smallPlus: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "smallPlus",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.superLarge:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "superLarge: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "superLarge",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.xLarge:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xLarge: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "xLarge",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.xLargePlus:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xLargePlus: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "xLargePlus",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.xSmall:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xSmall: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "xSmall",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.xxLarge:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xxLarge: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "xxLarge",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontSizes.xxLargePlus:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xxLargePlus: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "xxLargePlus",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ]
        },
        {
          "kind": "Namespace",
          "canonicalReference": "@uifabric/styling!FontWeights:namespace",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare namespace FontWeights "
            }
          ],
          "releaseTag": "Public",
          "name": "FontWeights",
          "members": [
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontWeights.bold:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bold: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontWeight",
                  "canonicalReference": "@uifabric/merge-styles!IFontWeight:type"
                }
              ],
              "releaseTag": "Public",
              "name": "bold",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontWeights.light:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "light: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontWeight",
                  "canonicalReference": "@uifabric/merge-styles!IFontWeight:type"
                }
              ],
              "releaseTag": "Public",
              "name": "light",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontWeights.regular:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "regular: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontWeight",
                  "canonicalReference": "@uifabric/merge-styles!IFontWeight:type"
                }
              ],
              "releaseTag": "Public",
              "name": "regular",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontWeights.semibold:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "semibold: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontWeight",
                  "canonicalReference": "@uifabric/merge-styles!IFontWeight:type"
                }
              ],
              "releaseTag": "Public",
              "name": "semibold",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!FontWeights.semilight:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "semilight: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontWeight",
                  "canonicalReference": "@uifabric/merge-styles!IFontWeight:type"
                }
              ],
              "releaseTag": "Public",
              "name": "semilight",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ]
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getEdgeChromiumNoHighContrastAdjustSelector:function(1)",
          "docComment": "/**\n * The style which turns off high contrast adjustment in (only) Edge Chromium browser.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getEdgeChromiumNoHighContrastAdjustSelector(): "
            },
            {
              "kind": "Content",
              "text": "{\n    ["
            },
            {
              "kind": "Reference",
              "text": "EdgeChromiumHighContrastSelector",
              "canonicalReference": "@uifabric/styling!EdgeChromiumHighContrastSelector"
            },
            {
              "kind": "Content",
              "text": "]: "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";\n}"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [],
          "name": "getEdgeChromiumNoHighContrastAdjustSelector"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getFadedOverflowStyle:function(1)",
          "docComment": "/**\n * - Generates a style used to fade out an overflowing content by defining a style for an :after pseudo element. - Apply it to the :after selector for all combination of states the parent of content might have (normal, hover, selected, focus). - Requires the target to have position set to relative and overflow set to hidden.\n *\n * @param theme - The theme object to use.\n *\n * @param color - The background color to fade out to. Accepts only keys of ISemanticColors or IPalette. Defaults to 'bodyBackground'.\n *\n * @param direction - The direction of the overflow. Defaults to horizontal.\n *\n * @param width - The width of the fading overflow. Vertical direction defaults it to 100% vs 20px when horizontal.\n *\n * @param height - The Height of the fading overflow. Vertical direction defaults it to 50% vs 100% when horizontal.\n *\n * @returns The style object.\n *\n * @example\n * ```tsx\n * // Assuming the following DOM structure and the different background colors coming from\n * // the parent holding the content.\n * <div className={classNames.parent}>\n *   <span className={classNames.content}>Overflown Content</span>\n * </div>\n * ```\n *\n * ```ts\n * // This is how the style set would look in Component.styles.ts\n * const { bodyBackground } = theme.semanticColors;\n * const { neutralLighter } = theme.palette;\n *\n * // The second argument of getFadedOverflowStyle function is a string representing a key of\n * // ISemanticColors or IPalette.\n *\n * const styles = {\n *   parent: [\n *     backgroundColor: bodyBackground,\n *     selectors: {\n *       '&:hover: {\n *         backgroundColor: neutralLighter\n *       },\n *       '$content:after': {\n *         ...getFadedOverflowStyle(theme, 'bodyBackground')\n *       },\n *       '&:hover $content:after': {\n *         ...getFadedOverflowStyle(theme, 'neutralLighter')\n *       }\n *     }\n *   ],\n *   content: [\n *     width: '100%',\n *     display: 'inline-block',\n *     position: 'relative',\n *     overflow: 'hidden'\n *   ]\n * }\n * ```\n *\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getFadedOverflowStyle(theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ", color?: "
            },
            {
              "kind": "Content",
              "text": "keyof "
            },
            {
              "kind": "Reference",
              "text": "ISemanticColors",
              "canonicalReference": "@uifabric/styling!ISemanticColors:interface"
            },
            {
              "kind": "Content",
              "text": " | keyof "
            },
            {
              "kind": "Reference",
              "text": "IPalette",
              "canonicalReference": "@uifabric/styling!IPalette:interface"
            },
            {
              "kind": "Content",
              "text": ", direction?: "
            },
            {
              "kind": "Content",
              "text": "'horizontal' | 'vertical'"
            },
            {
              "kind": "Content",
              "text": ", width?: "
            },
            {
              "kind": "Content",
              "text": "string | number"
            },
            {
              "kind": "Content",
              "text": ", height?: "
            },
            {
              "kind": "Content",
              "text": "string | number"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 14,
            "endIndex": 15
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "color",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 7
              }
            },
            {
              "parameterName": "direction",
              "parameterTypeTokenRange": {
                "startIndex": 8,
                "endIndex": 9
              }
            },
            {
              "parameterName": "width",
              "parameterTypeTokenRange": {
                "startIndex": 10,
                "endIndex": 11
              }
            },
            {
              "parameterName": "height",
              "parameterTypeTokenRange": {
                "startIndex": 12,
                "endIndex": 13
              }
            }
          ],
          "name": "getFadedOverflowStyle"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getFocusOutlineStyle:function(1)",
          "docComment": "/**\n * Generates a style which can be used to set a border on focus.\n *\n * @param theme - The theme object to use.\n *\n * @param inset - The number of pixels to inset the border (default 0)\n *\n * @param width - The border width in pixels (default 1)\n *\n * @param color - Color of the outline (default `theme.palette.neutralSecondary`)\n *\n * @returns The style object.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getFocusOutlineStyle(theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ", inset?: "
            },
            {
              "kind": "Content",
              "text": "number"
            },
            {
              "kind": "Content",
              "text": ", width?: "
            },
            {
              "kind": "Content",
              "text": "number"
            },
            {
              "kind": "Content",
              "text": ", color?: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 9,
            "endIndex": 10
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "inset",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            },
            {
              "parameterName": "width",
              "parameterTypeTokenRange": {
                "startIndex": 5,
                "endIndex": 6
              }
            },
            {
              "parameterName": "color",
              "parameterTypeTokenRange": {
                "startIndex": 7,
                "endIndex": 8
              }
            }
          ],
          "name": "getFocusOutlineStyle"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getFocusStyle:function(1)",
          "docComment": "/**\n * Generates a focus style which can be used to define an :after focus border.\n *\n * @param theme - The theme object to use.\n *\n * @param options - Options to customize the focus border.\n *\n * @returns The style object.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getFocusStyle(theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ", options?: "
            },
            {
              "kind": "Reference",
              "text": "IGetFocusStylesOptions",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions:interface"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "options",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            }
          ],
          "name": "getFocusStyle"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getFocusStyle:function(2)",
          "docComment": "/**\n * Generates a focus style which can be used to define an :after focus border.\n *\n * @deprecated\n *\n * Use the object parameter version instead.\n *\n * @param theme - The theme object to use.\n *\n * @param inset - The number of pixels to inset the border.\n *\n * @param position - The positioning applied to the container. Must be 'relative' or 'absolute' so that the focus border can live around it.\n *\n * @param highContrastStyle - Style for high contrast mode.\n *\n * @param borderColor - Color of the border.\n *\n * @param outlineColor - Color of the outline.\n *\n * @param isFocusedOnly - If the styles should apply on focus or not.\n *\n * @returns The style object.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getFocusStyle(theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ", inset?: "
            },
            {
              "kind": "Content",
              "text": "number"
            },
            {
              "kind": "Content",
              "text": ", position?: "
            },
            {
              "kind": "Content",
              "text": "'relative' | 'absolute'"
            },
            {
              "kind": "Content",
              "text": ", highContrastStyle?: "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": " | undefined"
            },
            {
              "kind": "Content",
              "text": ", borderColor?: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": ", outlineColor?: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": ", isFocusedOnly?: "
            },
            {
              "kind": "Content",
              "text": "boolean"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 16,
            "endIndex": 17
          },
          "releaseTag": "Public",
          "overloadIndex": 2,
          "parameters": [
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "inset",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            },
            {
              "parameterName": "position",
              "parameterTypeTokenRange": {
                "startIndex": 5,
                "endIndex": 6
              }
            },
            {
              "parameterName": "highContrastStyle",
              "parameterTypeTokenRange": {
                "startIndex": 7,
                "endIndex": 9
              }
            },
            {
              "parameterName": "borderColor",
              "parameterTypeTokenRange": {
                "startIndex": 10,
                "endIndex": 11
              }
            },
            {
              "parameterName": "outlineColor",
              "parameterTypeTokenRange": {
                "startIndex": 12,
                "endIndex": 13
              }
            },
            {
              "parameterName": "isFocusedOnly",
              "parameterTypeTokenRange": {
                "startIndex": 14,
                "endIndex": 15
              }
            }
          ],
          "name": "getFocusStyle"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getGlobalClassNames:function(1)",
          "docComment": "/**\n * Checks for the `disableGlobalClassNames` property on the `theme` to determine if it should return `classNames` Note that calls to this function are memoized.\n *\n * @param classNames - The collection of global class names that apply when the flag is false. Make sure to pass in the same instance on each call to benefit from memoization.\n *\n * @param theme - The theme to check the flag on\n *\n * @param disableGlobalClassNames - Optional. Explicitly opt in/out of disabling global classnames. Defaults to false.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getGlobalClassNames<T>(classNames: "
            },
            {
              "kind": "Reference",
              "text": "GlobalClassNames",
              "canonicalReference": "@uifabric/styling!GlobalClassNames:type"
            },
            {
              "kind": "Content",
              "text": "<T>"
            },
            {
              "kind": "Content",
              "text": ", theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ", disableGlobalClassNames?: "
            },
            {
              "kind": "Content",
              "text": "boolean"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "GlobalClassNames",
              "canonicalReference": "@uifabric/styling!GlobalClassNames:type"
            },
            {
              "kind": "Content",
              "text": "<T>"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 8,
            "endIndex": 10
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "classNames",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 3
              }
            },
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 4,
                "endIndex": 5
              }
            },
            {
              "parameterName": "disableGlobalClassNames",
              "parameterTypeTokenRange": {
                "startIndex": 6,
                "endIndex": 7
              }
            }
          ],
          "typeParameters": [
            {
              "typeParameterName": "T",
              "constraintTokenRange": {
                "startIndex": 0,
                "endIndex": 0
              },
              "defaultTypeTokenRange": {
                "startIndex": 0,
                "endIndex": 0
              }
            }
          ],
          "name": "getGlobalClassNames"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getIcon:function(1)",
          "docComment": "/**\n * Gets an icon definition. If an icon is requested but the subset has yet to be registered, it will get registered immediately.\n *\n * @param name - Name of icon.\n *\n * @public\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getIcon(name?: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IIconRecord",
              "canonicalReference": "@uifabric/styling!IIconRecord:interface"
            },
            {
              "kind": "Content",
              "text": " | undefined"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 5
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "name",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "getIcon"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getIconClassName:function(1)",
          "docComment": "/**\n * Gets an icon classname. You should be able to add this classname to an I tag with no additional classnames, and render the icon.\n *\n * @public\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getIconClassName(name: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 4
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "name",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "getIconClassName"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!getInputFocusStyle:var",
          "docComment": "/**\n * Generates text input border styles on focus.\n *\n * @param borderColor - Color of the border.\n *\n * @param borderRadius - Radius of the border.\n *\n * @param borderType - Type of the border.\n *\n * @param borderPosition - Position of the border relative to the input element (default to -1 as it's the most common border width of the input element)\n *\n * @returns The style object.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "getInputFocusStyle: "
            },
            {
              "kind": "Content",
              "text": "(borderColor: string, borderRadius: string | number, borderType?: \"border\" | \"borderBottom\", borderPosition?: number) => "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "getInputFocusStyle",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 3
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getPlaceholderStyles:function(1)",
          "docComment": "/**\n * Generates placeholder style for each of the browsers supported by office-ui-fabric-react.\n *\n * @param styles - The style to use.\n *\n * @returns The placeholder style object for each browser depending on the placeholder directive it uses.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getPlaceholderStyles(styles: "
            },
            {
              "kind": "Reference",
              "text": "IStyle",
              "canonicalReference": "@uifabric/merge-styles!IStyle:type"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "IStyle",
              "canonicalReference": "@uifabric/merge-styles!IStyle:type"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 4
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "styles",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "getPlaceholderStyles"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getScreenSelector:function(1)",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getScreenSelector(min: "
            },
            {
              "kind": "Content",
              "text": "number"
            },
            {
              "kind": "Content",
              "text": ", max: "
            },
            {
              "kind": "Content",
              "text": "number"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "min",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "max",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            }
          ],
          "name": "getScreenSelector"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!getTheme:function(1)",
          "docComment": "/**\n * Gets the theme object\n *\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function getTheme(depComments?: "
            },
            {
              "kind": "Content",
              "text": "boolean"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 4
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "depComments",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "getTheme"
        },
        {
          "kind": "TypeAlias",
          "canonicalReference": "@uifabric/styling!GlobalClassNames:type",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare type GlobalClassNames<IStyles> = "
            },
            {
              "kind": "Reference",
              "text": "Record",
              "canonicalReference": "!Record:type"
            },
            {
              "kind": "Content",
              "text": "<keyof IStyles, string>"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "releaseTag": "Public",
          "name": "GlobalClassNames",
          "typeParameters": [
            {
              "typeParameterName": "IStyles",
              "constraintTokenRange": {
                "startIndex": 0,
                "endIndex": 0
              },
              "defaultTypeTokenRange": {
                "startIndex": 0,
                "endIndex": 0
              }
            }
          ],
          "typeTokenRange": {
            "startIndex": 1,
            "endIndex": 3
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!hiddenContentStyle:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "hiddenContentStyle: "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "hiddenContentStyle",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!HighContrastSelector:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "HighContrastSelector = \"@media screen and (-ms-high-contrast: active)\""
            }
          ],
          "releaseTag": "Public",
          "name": "HighContrastSelector",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!HighContrastSelectorBlack:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "HighContrastSelectorBlack = \"@media screen and (-ms-high-contrast: white-on-black)\""
            }
          ],
          "releaseTag": "Public",
          "name": "HighContrastSelectorBlack",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!HighContrastSelectorWhite:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "HighContrastSelectorWhite = \"@media screen and (-ms-high-contrast: black-on-white)\""
            }
          ],
          "releaseTag": "Public",
          "name": "HighContrastSelectorWhite",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IAnimationStyles:interface",
          "docComment": "/**\n * All Fabric standard animations, exposed as json objects referencing predefined keyframes. These objects can be mixed in with other class definitions. {@docCategory IAnimationStyles}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IAnimationStyles "
            }
          ],
          "releaseTag": "Public",
          "name": "IAnimationStyles",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeIn100:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeIn100: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeIn100",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeIn200:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeIn200: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeIn200",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeIn400:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeIn400: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeIn400",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeIn500:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeIn500: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeIn500",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeOut100:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeOut100: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeOut100",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeOut200:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeOut200: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeOut200",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeOut400:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeOut400: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeOut400",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#fadeOut500:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fadeOut500: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fadeOut500",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#rotate90deg:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "rotate90deg: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "rotate90deg",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#rotateN90deg:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "rotateN90deg: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "rotateN90deg",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#scaleDownIn100:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "scaleDownIn100: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "scaleDownIn100",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#scaleDownOut98:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "scaleDownOut98: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "scaleDownOut98",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#scaleUpIn100:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "scaleUpIn100: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "scaleUpIn100",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#scaleUpOut103:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "scaleUpOut103: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "scaleUpOut103",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideDownIn10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideDownIn10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideDownIn10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideDownIn20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideDownIn20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideDownIn20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideDownOut10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideDownOut10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideDownOut10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideDownOut20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideDownOut20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideDownOut20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftIn10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftIn10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftIn10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftIn20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftIn20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftIn20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftIn40:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftIn40: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftIn40",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftIn400:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftIn400: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftIn400",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftOut10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftOut10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftOut10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftOut20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftOut20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftOut20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftOut40:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftOut40: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftOut40",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideLeftOut400:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideLeftOut400: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideLeftOut400",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightIn10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightIn10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightIn10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightIn20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightIn20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightIn20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightIn40:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightIn40: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightIn40",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightIn400:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightIn400: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightIn400",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightOut10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightOut10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightOut10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightOut20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightOut20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightOut20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightOut40:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightOut40: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightOut40",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideRightOut400:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideRightOut400: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideRightOut400",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideUpIn10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideUpIn10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideUpIn10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideUpIn20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideUpIn20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideUpIn20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideUpOut10:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideUpOut10: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideUpOut10",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationStyles#slideUpOut20:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "slideUpOut20: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "slideUpOut20",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IAnimationVariables:interface",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IAnimationVariables "
            }
          ],
          "releaseTag": "Public",
          "name": "IAnimationVariables",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationVariables#durationValue1:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "durationValue1: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "durationValue1",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationVariables#durationValue2:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "durationValue2: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "durationValue2",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationVariables#durationValue3:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "durationValue3: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "durationValue3",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationVariables#durationValue4:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "durationValue4: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "durationValue4",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationVariables#easeFunction1:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "easeFunction1: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "easeFunction1",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IAnimationVariables#easeFunction2:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "easeFunction2: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "easeFunction2",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Namespace",
          "canonicalReference": "@uifabric/styling!IconFontSizes:namespace",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare namespace IconFontSizes "
            }
          ],
          "releaseTag": "Public",
          "name": "IconFontSizes",
          "members": [
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!IconFontSizes.large:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "large: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "large",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!IconFontSizes.medium:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "medium: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "medium",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!IconFontSizes.small:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "small: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "small",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!IconFontSizes.xSmall:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xSmall: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                }
              ],
              "releaseTag": "Public",
              "name": "xSmall",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ]
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IEffects:interface",
          "docComment": "/**\n * Decorative styles in a theme {@docCategory IEffects}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IEffects "
            }
          ],
          "releaseTag": "Public",
          "name": "IEffects",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#elevation16:member",
              "docComment": "/**\n * Used to provide a visual affordance that this element is elevated above the surface it rests on. This is lower than elevations with a higher value, and higher than elevations with a lower value. The shadow's color should not change with the theme, because colored shadows look unnatural. Used for: search result dropdowns, hover cards, tooltips, help bubbles\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "elevation16: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "elevation16",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#elevation4:member",
              "docComment": "/**\n * Used to provide a visual affordance that this element is elevated above the surface it rests on. This is lower than elevations with a higher value, and higher than elevations with a lower value. The shadow's color should not change with the theme, because colored shadows look unnatural. Used for: cards, grid items\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "elevation4: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "elevation4",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#elevation64:member",
              "docComment": "/**\n * Used to provide a visual affordance that this element is elevated above the surface it rests on. This is lower than elevations with a higher value, and higher than elevations with a lower value. The shadow's color should not change with the theme, because colored shadows look unnatural. Used for: Panels, Dialogs\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "elevation64: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "elevation64",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#elevation8:member",
              "docComment": "/**\n * Used to provide a visual affordance that this element is elevated above the surface it rests on. This is lower than elevations with a higher value, and higher than elevations with a lower value. The shadow's color should not change with the theme, because colored shadows look unnatural. Used for: menus, command surfaces\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "elevation8: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "elevation8",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#roundedCorner2:member",
              "docComment": "/**\n * Rounded corner value, for use with border-radius. Smaller values indicate less rounding. Smaller elements should get less rounding than larger elements. Used for: buttons\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "roundedCorner2: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "roundedCorner2",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#roundedCorner4:member",
              "docComment": "/**\n * Rounded corner value, for use with border-radius. Smaller values indicate less rounding. Smaller elements should get less rounding than larger elements. Used for: cards\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "roundedCorner4: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "roundedCorner4",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IEffects#roundedCorner6:member",
              "docComment": "/**\n * Rounded corner value, for use with border-radius. Smaller values indicate less rounding. Smaller elements should get less rounding than larger elements. Used for: surfaces\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "roundedCorner6: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "roundedCorner6",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IFontStyles:interface",
          "docComment": "/**\n * Fluent UI font set. {@docCategory IFontStyles}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IFontStyles "
            }
          ],
          "releaseTag": "Public",
          "name": "IFontStyles",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#large:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "large: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "large",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#medium:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "medium: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "medium",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#mediumPlus:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "mediumPlus: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "mediumPlus",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#mega:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "mega: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "mega",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#small:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "small: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "small",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#smallPlus:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "smallPlus: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "smallPlus",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#superLarge:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "superLarge: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "superLarge",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#tiny:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "tiny: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "tiny",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#xLarge:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xLarge: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "xLarge",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#xLargePlus:member",
              "docComment": "/**\n * @deprecated\n *\n * Exists for forward compatibility with Fabric 7's Fluent theme. Not recommended for use with Fabric 6.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xLargePlus: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "xLargePlus",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#xSmall:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xSmall: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "xSmall",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#xxLarge:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xxLarge: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "xxLarge",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IFontStyles#xxLargePlus:member",
              "docComment": "/**\n * @deprecated\n *\n * Exists for forward compatibility with Fabric 7's Fluent theme Not recommended for use with Fabric 6.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "xxLargePlus: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "xxLargePlus",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions:interface",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IGetFocusStylesOptions "
            }
          ],
          "releaseTag": "Public",
          "name": "IGetFocusStylesOptions",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#borderColor:member",
              "docComment": "/**\n * Color of the border.\n *\n * @defaultvalue\n *\n * theme.palette.white\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "borderColor?: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "borderColor",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#highContrastStyle:member",
              "docComment": "/**\n * Style for high contrast mode.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "highContrastStyle?: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "highContrastStyle",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#inset:member",
              "docComment": "/**\n * The number of pixels to inset the border.\n *\n * @defaultvalue\n *\n * 0\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inset?: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inset",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#isFocusedOnly:member",
              "docComment": "/**\n * If the styles should apply on `:focus` pseudo element.\n *\n * @defaultvalue\n *\n * true\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "isFocusedOnly?: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "isFocusedOnly",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#outlineColor:member",
              "docComment": "/**\n * Color of the outline.\n *\n * @defaultvalue\n *\n * theme.palette.neutralSecondary\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "outlineColor?: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "outlineColor",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#position:member",
              "docComment": "/**\n * The positioning applied to the container. Must be 'relative' or 'absolute' so that the focus border can live around it.\n *\n * @defaultvalue\n *\n * 'relative'\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "position?: "
                },
                {
                  "kind": "Content",
                  "text": "'relative' | 'absolute'"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "position",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IGetFocusStylesOptions#width:member",
              "docComment": "/**\n * The width of the border in pixels.\n *\n * @defaultvalue\n *\n * 1\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "width?: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "width",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IIconOptions:interface",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IIconOptions "
            }
          ],
          "releaseTag": "Public",
          "name": "IIconOptions",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconOptions#disableWarnings:member",
              "docComment": "/**\n * By default, registering the same set of icons will generate a console warning per duplicate icon registered, because this scenario can create unexpected consequences.\n *\n * Some scenarios include:\n *\n * Icon set was previously registered using a different base url. Icon set was previously registered but a different version was provided. Icons in a previous registered set overlap with a new set.\n *\n * To simply ignore previously registered icons, you can specify to disable warnings. This means that if an icon which was previous registered is registered again, it will be silently ignored. However, consider whether the problems listed above will cause issues.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disableWarnings: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disableWarnings",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconOptions#warnOnMissingIcons:member",
              "docComment": "/**\n * @deprecated\n *\n * Use 'disableWarnings' instead.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "warnOnMissingIcons?: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "warnOnMissingIcons",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IIconRecord:interface",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IIconRecord "
            }
          ],
          "releaseTag": "Public",
          "name": "IIconRecord",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconRecord#code:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "code: "
                },
                {
                  "kind": "Content",
                  "text": "string | undefined"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "code",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconRecord#subset:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "subset: "
                },
                {
                  "kind": "Reference",
                  "text": "IIconSubsetRecord",
                  "canonicalReference": "@uifabric/styling!IIconSubsetRecord:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "subset",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IIconSubset:interface",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IIconSubset "
            }
          ],
          "releaseTag": "Public",
          "name": "IIconSubset",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconSubset#fontFace:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fontFace?: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontFace",
                  "canonicalReference": "@uifabric/merge-styles!IFontFace:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fontFace",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconSubset#icons:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "icons: "
                },
                {
                  "kind": "Content",
                  "text": "{\n        [key: string]: string | "
                },
                {
                  "kind": "Reference",
                  "text": "JSX.Element",
                  "canonicalReference": "@types/react!~__global.JSX.Element:interface"
                },
                {
                  "kind": "Content",
                  "text": ";\n    }"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "icons",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 4
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconSubset#style:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "style?: "
                },
                {
                  "kind": "Reference",
                  "text": "IRawStyle",
                  "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "style",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IIconSubsetRecord:interface",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IIconSubsetRecord extends "
            },
            {
              "kind": "Reference",
              "text": "IIconSubset",
              "canonicalReference": "@uifabric/styling!IIconSubset:interface"
            },
            {
              "kind": "Content",
              "text": " "
            }
          ],
          "releaseTag": "Public",
          "name": "IIconSubsetRecord",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconSubsetRecord#className:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "className?: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "className",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IIconSubsetRecord#isRegistered:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "isRegistered?: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "isRegistered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": [
            {
              "startIndex": 1,
              "endIndex": 3
            }
          ]
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IPalette:interface",
          "docComment": "/**\n * Fluent UI color palette. {@docCategory IPalette}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IPalette "
            }
          ],
          "releaseTag": "Public",
          "name": "IPalette",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#accent:member",
              "docComment": "/**\n * Color code for the accent.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "accent: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "accent",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#black:member",
              "docComment": "/**\n * Color code for the strongest color, which is black in the default theme. This is a very light color in inverted themes.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "black: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "black",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#blackTranslucent40:member",
              "docComment": "/**\n * Color code for blackTranslucent40.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blackTranslucent40: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blackTranslucent40",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#blue:member",
              "docComment": "/**\n * Color code for blue.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blue: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blue",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#blueDark:member",
              "docComment": "/**\n * Color code for blueDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blueDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blueDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#blueLight:member",
              "docComment": "/**\n * Color code for blueLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blueLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blueLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#blueMid:member",
              "docComment": "/**\n * Color code for blueMid.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blueMid: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blueMid",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#green:member",
              "docComment": "/**\n * Color code for green.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "green: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "green",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#greenDark:member",
              "docComment": "/**\n * Color code for greenDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "greenDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "greenDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#greenLight:member",
              "docComment": "/**\n * Color code for greenLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "greenLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "greenLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#magenta:member",
              "docComment": "/**\n * Color code for magenta.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "magenta: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "magenta",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#magentaDark:member",
              "docComment": "/**\n * Color code for magentaDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "magentaDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "magentaDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#magentaLight:member",
              "docComment": "/**\n * Color code for magentaLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "magentaLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "magentaLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralDark:member",
              "docComment": "/**\n * Color code for neutralDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralLight:member",
              "docComment": "/**\n * Color code for neutralLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralLighter:member",
              "docComment": "/**\n * Color code for neutralLighter.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralLighter: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralLighter",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralLighterAlt:member",
              "docComment": "/**\n * Color code for neutralLighterAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralLighterAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralLighterAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralPrimary:member",
              "docComment": "/**\n * Color code for neutralPrimary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralPrimary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralPrimary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralPrimaryAlt:member",
              "docComment": "/**\n * Color code for neutralPrimaryAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralPrimaryAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralPrimaryAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralQuaternary:member",
              "docComment": "/**\n * Color code for neutralQuaternary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralQuaternary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralQuaternary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralQuaternaryAlt:member",
              "docComment": "/**\n * Color code for neutralQuaternaryAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralQuaternaryAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralQuaternaryAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralSecondary:member",
              "docComment": "/**\n * Color code for neutralSecondary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralSecondary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralSecondary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralSecondaryAlt:member",
              "docComment": "/**\n * Color code for neutralSecondaryAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralSecondaryAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralSecondaryAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralTertiary:member",
              "docComment": "/**\n * Color code for neutralTertiary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralTertiary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralTertiary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#neutralTertiaryAlt:member",
              "docComment": "/**\n * Color code for neutralTertiaryAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "neutralTertiaryAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "neutralTertiaryAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#orange:member",
              "docComment": "/**\n * Color code for orange.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "orange: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "orange",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#orangeLight:member",
              "docComment": "/**\n * Color code for orangeLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "orangeLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "orangeLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#orangeLighter:member",
              "docComment": "/**\n * Color code for orangeLighter.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "orangeLighter: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "orangeLighter",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#purple:member",
              "docComment": "/**\n * Color code for purple.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "purple: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "purple",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#purpleDark:member",
              "docComment": "/**\n * Color code for purpleDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "purpleDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "purpleDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#purpleLight:member",
              "docComment": "/**\n * Color code for purpleLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "purpleLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "purpleLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#red:member",
              "docComment": "/**\n * Color code for red.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "red: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "red",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#redDark:member",
              "docComment": "/**\n * Color code for redDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "redDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "redDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#teal:member",
              "docComment": "/**\n * Color code for teal.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "teal: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "teal",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#tealDark:member",
              "docComment": "/**\n * Color code for tealDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "tealDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "tealDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#tealLight:member",
              "docComment": "/**\n * Color code for tealLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "tealLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "tealLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeDark:member",
              "docComment": "/**\n * Color code for themeDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeDarkAlt:member",
              "docComment": "/**\n * Color code for themeDarkAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeDarkAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeDarkAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeDarker:member",
              "docComment": "/**\n * Color code for themeDarker.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeDarker: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeDarker",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeLight:member",
              "docComment": "/**\n * Color code for themeLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeLighter:member",
              "docComment": "/**\n * Color code for themeLighter.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeLighter: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeLighter",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeLighterAlt:member",
              "docComment": "/**\n * Color code for themeLighterAlt.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeLighterAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeLighterAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themePrimary:member",
              "docComment": "/**\n * Color code for themePrimary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themePrimary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themePrimary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeSecondary:member",
              "docComment": "/**\n * Color code for themeSecondary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeSecondary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeSecondary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#themeTertiary:member",
              "docComment": "/**\n * Color code for themeTertiary.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "themeTertiary: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "themeTertiary",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#white:member",
              "docComment": "/**\n * Color code for the softest color, which is white in the default theme. This is a very dark color in dark themes. This is the page background.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "white: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "white",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#whiteTranslucent40:member",
              "docComment": "/**\n * Color code for whiteTranslucent40\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "whiteTranslucent40: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "whiteTranslucent40",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#yellow:member",
              "docComment": "/**\n * Color code for yellow.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "yellow: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "yellow",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#yellowDark:member",
              "docComment": "/**\n * Color code for yellowDark.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "yellowDark: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "yellowDark",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IPalette#yellowLight:member",
              "docComment": "/**\n * Color code for yellowLight.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "yellowLight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "yellowLight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "TypeAlias",
          "canonicalReference": "@uifabric/styling!IPartialTheme:type",
          "docComment": "/**\n * {@docCategory ITheme}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare type IPartialTheme = "
            },
            {
              "kind": "Content",
              "text": "{\n    palette?: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "IPalette",
              "canonicalReference": "@uifabric/styling!IPalette:interface"
            },
            {
              "kind": "Content",
              "text": ">;\n    fonts?: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "IFontStyles",
              "canonicalReference": "@uifabric/styling!IFontStyles:interface"
            },
            {
              "kind": "Content",
              "text": ">;\n    defaultFontStyle?: "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            },
            {
              "kind": "Content",
              "text": ";\n    semanticColors?: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "ISemanticColors",
              "canonicalReference": "@uifabric/styling!ISemanticColors:interface"
            },
            {
              "kind": "Content",
              "text": ">;\n    isInverted?: boolean;\n    disableGlobalClassNames?: boolean;\n    rtl?: boolean;\n    spacing?: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "ISpacing",
              "canonicalReference": "@uifabric/styling!ISpacing:interface"
            },
            {
              "kind": "Content",
              "text": ">;\n    effects?: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "IEffects",
              "canonicalReference": "@uifabric/styling!IEffects:interface"
            },
            {
              "kind": "Content",
              "text": ">;\n    schemes?: {\n        [P in "
            },
            {
              "kind": "Reference",
              "text": "ISchemeNames",
              "canonicalReference": "@uifabric/styling!ISchemeNames:type"
            },
            {
              "kind": "Content",
              "text": "]?: "
            },
            {
              "kind": "Reference",
              "text": "IScheme",
              "canonicalReference": "@uifabric/styling!IScheme:interface"
            },
            {
              "kind": "Content",
              "text": ";\n    };\n}"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "releaseTag": "Public",
          "name": "IPartialTheme",
          "typeTokenRange": {
            "startIndex": 1,
            "endIndex": 28
          }
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!IScheme:interface",
          "docComment": "/**\n * {@docCategory IScheme}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface IScheme "
            }
          ],
          "releaseTag": "Public",
          "name": "IScheme",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#disableGlobalClassNames:member",
              "docComment": "/**\n * This setting is for a very narrow use case and you probably don't need to worry about, unless you share a environment with others that also use fabric. It is used for disabling global styles on fabric components. This will prevent global overrides that might have been set by other fabric users from applying to your components. When you set this setting to `true` on your theme the components in the subtree of your Customizer will not get the global styles applied to them.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disableGlobalClassNames: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disableGlobalClassNames",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#effects:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "effects: "
                },
                {
                  "kind": "Reference",
                  "text": "IEffects",
                  "canonicalReference": "@uifabric/styling!IEffects:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "effects",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#fonts:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "fonts: "
                },
                {
                  "kind": "Reference",
                  "text": "IFontStyles",
                  "canonicalReference": "@uifabric/styling!IFontStyles:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "fonts",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#isInverted:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "isInverted: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "isInverted",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#palette:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "palette: "
                },
                {
                  "kind": "Reference",
                  "text": "IPalette",
                  "canonicalReference": "@uifabric/styling!IPalette:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "palette",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#rtl:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "rtl?: "
                },
                {
                  "kind": "Content",
                  "text": "boolean"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "rtl",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!IScheme#semanticColors:member",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "semanticColors: "
                },
                {
                  "kind": "Reference",
                  "text": "ISemanticColors",
                  "canonicalReference": "@uifabric/styling!ISemanticColors:interface"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "semanticColors",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!ISemanticColors:interface",
          "docComment": "/**\n * The collection of all semantic slots for colors used in themes.\n *\n * Note: text colors are defined in ISemanticTextColors.ts. We plan to move completely to semantic slots and replace all usage of Fabric palette slots. We've been actively making some of these changes but still have a ways to go. At present, we're only adding slots if absolutely necessary because we are trying to avoid bloating the already sizeable offering. We're also working on a better solution for design tokens overall in our next iteration. We'll provide an update on this site when that's ready. Thank you for your patience.\n *\n * #### Naming Convention\n *\n * The name of a semantic slot can quickly tell you how it’s meant to be used. It generally follows this format:\n *\n * `[category name][element name][Checked][Hovered/Pressed/Disabled state]`\n *\n * * `[category name]` – The “family” that this slot belongs to. * `[element name]` – The name of the thing being targeted, such as the background or border. * `[Checked]` – Whether the thing is checked. We assume things are unchecked by default, so no need to specify the unchecked state. (“Checked” refers to anything that is on, selected, toggled, highlighted, emphasized, etc.) * `[Hovered/Pressed/Disabled state]` – One of these states, if applicable. Each of these states are mutually exclusive. Pressed styles overwrite hovered styles, and disabled elements cannot be hovered or pressed.\n *\n * #### Base Slots\n *\n * A basic set of slots that provide many default body styles, such as text, subtext, disabled colors, and so on. If a category doesn't provide the slot you're looking for, use one from this category. For example, the placeholder text on a text input field has no corresponding slot in its category, so you'd use the bodySubtextColor from this category.\n *\n * #### Invariants\n *\n * When color has meaning, we do not want to change the color much theme to theme. For example, we will always want errors to be some shade of red, but we will need to tweak the exact shade so it's legible depending on whether it's an inverted theme or not. Invariant colors should almost never be changed by the theme, the defaults should suffice.\n *\n * #### Input Controls\n *\n * This category contains input components commonly used to denote state, including radio buttons, check boxes, toggle switches, sliders, progress bars, and more.\n *\n * #### Buttons\n *\n * Buttons! And all the flavors thereof.\n *\n * #### Menus\n *\n * Any kind of popup menus uses this category.\n *\n * #### Lists\n *\n * Lists differ from menus in that they are designed to show infinite amounts of items, often scroll, and have a large and complex interaction surface. This category covers all kinds of lists, whether they're typical one-item-per-row lists (like DetailsList) or ones with a tiled layout.\n *\n * {@docCategory ISemanticColors}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface ISemanticColors extends "
            },
            {
              "kind": "Reference",
              "text": "ISemanticTextColors",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors:interface"
            },
            {
              "kind": "Content",
              "text": " "
            }
          ],
          "releaseTag": "Public",
          "name": "ISemanticColors",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#accentButtonBackground:member",
              "docComment": "/**\n * Background of an accent button (kicker)\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "accentButtonBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "accentButtonBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#blockingBackground:member",
              "docComment": "/**\n * Background for blocking issues, which is more severe than a warning, but not as bad as an error.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blockingBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blockingBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#blockingIcon:member",
              "docComment": "/**\n * Color for icons on blockingBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "blockingIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "blockingIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyBackground:member",
              "docComment": "/**\n * The default color for backgrounds.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyBackgroundChecked:member",
              "docComment": "/**\n * The default background color of selected interactable elements that don't have their own backgrounds. e.g. indicates in the nav which page you're currently on\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyBackgroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyBackgroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyBackgroundHovered:member",
              "docComment": "/**\n * The default hover color for the backgrounds of interactable elements that don't have their own backgrounds. e.g. if links had hover backgrounds, they'd use this\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyBackgroundHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyBackgroundHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyDivider:member",
              "docComment": "/**\n * Divider lines; e.g. lines that separate sections in a menu, an <HR> element.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyDivider: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyDivider",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyFrameBackground:member",
              "docComment": "/**\n * The color for chrome adjacent to an area with bodyBackground. This can be used to provide visual separation of zones when using stronger colors, when using a divider line is not desired. In most themes, this should match the color of bodyBackground. See also: bodyFrameDivider\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyFrameBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyFrameBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyFrameDivider:member",
              "docComment": "/**\n * Used as the border between a zone with bodyFrameBackground and a zone with bodyBackground. If bodyBackground and bodyFrameBackground are different, this should be the same color as bodyFrameBackground in order to visually disappear. See also: bodyFrameBackground\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyFrameDivider: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyFrameDivider",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#bodyStandoutBackground:member",
              "docComment": "/**\n * The standout color for highlighted content backgrounds. For highlighted content when there is no emphasis, use the neutral variant instead. This should be a shade darker than bodyBackground in light themes, and a shade lighter in inverted themes.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyStandoutBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyStandoutBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBackground:member",
              "docComment": "/**\n * Background of a standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBackgroundChecked:member",
              "docComment": "/**\n * Background of a checked standard button; e.g. bold/italicize/underline text button in toolbar\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBackgroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBackgroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBackgroundCheckedHovered:member",
              "docComment": "/**\n * Background of a checked and hovered standard button; e.g. bold/italicize/underline text button in toolbar\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBackgroundCheckedHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBackgroundCheckedHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBackgroundDisabled:member",
              "docComment": "/**\n * Background of a disabled standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBackgroundDisabled: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBackgroundDisabled",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBackgroundHovered:member",
              "docComment": "/**\n * Background of a hovered standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBackgroundHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBackgroundHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBackgroundPressed:member",
              "docComment": "/**\n * Background of a pressed standard button; i.e. currently being clicked by mouse\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBackgroundPressed: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBackgroundPressed",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBorder:member",
              "docComment": "/**\n * Border of a standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#buttonBorderDisabled:member",
              "docComment": "/**\n * Border of a disabled standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonBorderDisabled: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonBorderDisabled",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#cardShadow:member",
              "docComment": "/**\n * The default box-shadow for a card. In inverted themes, by default, this is set to `none` since shadows do not work well on dark backgrounds. If the card could be the same color as the background, it is recommended that `variantBorder` is used instead, so the card doesn't disappear in inverted themes. For use with `box-shadow`.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "cardShadow: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "cardShadow",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#cardShadowHovered:member",
              "docComment": "/**\n * The default box-shadow when hovering on a card. Generally, this is a deeper shadow than `cardShadow`, to give the effect that the card is lifting off the page. In inverted themes, this should be set to a box-shadow that looks like a solid border, because shadows are not visible on dark themes. For use with `box-shadow`.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "cardShadowHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "cardShadowHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#cardStandoutBackground:member",
              "docComment": "/**\n * The background color of a card (or other surface) on a standout background. Cards usually have shadows, but the variantBorder slots can be used for a solid border. e.g. cards on a carousel of highlighted articles\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "cardStandoutBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "cardStandoutBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#defaultStateBackground:member",
              "docComment": "/**\n * Background color for default/empty state graphical elements; eg default icons, empty section that needs user to fill in content, placeholder graphics, empty seats, etc.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "defaultStateBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "defaultStateBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#disabledBackground:member",
              "docComment": "/**\n * The default color for backgrounds of disabled controls; e.g. disabled text field.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disabledBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disabledBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#disabledBorder:member",
              "docComment": "/**\n * The default color for border of disabled controls; e.g. disabled slider, disabled toggle border.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disabledBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disabledBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#errorBackground:member",
              "docComment": "/**\n * The background for errors, if necessary, or highlighting the section of the page where the error is present.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "errorBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "errorBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#errorIcon:member",
              "docComment": "/**\n * Color for icons on errorBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "errorIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "errorIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#focusBorder:member",
              "docComment": "/**\n * The color of the outline around focused controls that don't already have a border; e.g. menu items\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "focusBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "focusBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#infoBackground:member",
              "docComment": "/**\n * Background for informational messages.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "infoBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "infoBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#infoIcon:member",
              "docComment": "/**\n * Color for icons on infoBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "infoIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "infoIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputBackground:member",
              "docComment": "/**\n * The background color of an input, e.g. textbox background.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputBackgroundChecked:member",
              "docComment": "/**\n * The background of a checked control; e.g. checked radio button's dot, checked toggle's background.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputBackgroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputBackgroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputBackgroundCheckedHovered:member",
              "docComment": "/**\n * The background of a checked and hovered control; e.g. checked checkbox's background color on hover.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputBackgroundCheckedHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputBackgroundCheckedHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputBorder:member",
              "docComment": "/**\n * The border of a large input control in its resting, state; e.g. the box of dropdown.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputBorderHovered:member",
              "docComment": "/**\n * The border color of a large hovered input control, such as textbox.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputBorderHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputBorderHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputFocusBorderAlt:member",
              "docComment": "/**\n * The alternate focus border color for elements that already have a border; e.g. text field borders on focus.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputFocusBorderAlt: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputFocusBorderAlt",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputForegroundChecked:member",
              "docComment": "/**\n * The foreground of a checked control; e.g. checked checkbox's checkmark color, checked toggle's thumb color, radio button's background color around the dot.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputForegroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputForegroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputIcon:member",
              "docComment": "/**\n * The color for icon ; e.g. SearchBox magnifying glass in rest state.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputIconDisabled:member",
              "docComment": "/**\n * The color for disabled icon ; e.g. SearchBox magnifying glass in disabled state.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputIconDisabled: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputIconDisabled",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputIconHovered:member",
              "docComment": "/**\n * The color for hovered icon ; e.g. SearchBox magnifying glass in hovered state.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputIconHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputIconHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#inputPlaceholderBackgroundChecked:member",
              "docComment": "/**\n * The placeholder background color of a checked control, e.g. slider background, spinner background.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputPlaceholderBackgroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputPlaceholderBackgroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listBackground:member",
              "docComment": "/**\n * The background color for the entire list.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listHeaderBackgroundHovered:member",
              "docComment": "/**\n * The background color for a hovered list header.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listHeaderBackgroundHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listHeaderBackgroundHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listHeaderBackgroundPressed:member",
              "docComment": "/**\n * The background color for a pressed list header.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listHeaderBackgroundPressed: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listHeaderBackgroundPressed",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listItemBackgroundChecked:member",
              "docComment": "/**\n * The background color of a checked list item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listItemBackgroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listItemBackgroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listItemBackgroundCheckedHovered:member",
              "docComment": "/**\n * The background color of a checked and hovered list item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listItemBackgroundCheckedHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listItemBackgroundCheckedHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listItemBackgroundHovered:member",
              "docComment": "/**\n * The background color of a hovered list item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listItemBackgroundHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listItemBackgroundHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#listText:member",
              "docComment": "/**\n * The default text color for list item titles and text in column fields.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuBackground:member",
              "docComment": "/**\n * The background of a menu.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuDivider:member",
              "docComment": "/**\n * The divider between menu items.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuDivider: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuDivider",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuHeader:member",
              "docComment": "/**\n * The headers in menus that denote title of a section.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuHeader: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuHeader",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuIcon:member",
              "docComment": "/**\n * The default colors of icons in menus.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuItemBackgroundChecked:member",
              "docComment": "/**\n * @deprecated\n *\n * (Checked menu items no longer get a background color.) The background of checked menu item; e.g. a menu item whose submenu is open, a selected dropdown item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuItemBackgroundChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuItemBackgroundChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuItemBackgroundHovered:member",
              "docComment": "/**\n * The background of a hovered menu item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuItemBackgroundHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuItemBackgroundHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuItemBackgroundPressed:member",
              "docComment": "/**\n * The background of a pressed menu item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuItemBackgroundPressed: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuItemBackgroundPressed",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuItemText:member",
              "docComment": "/**\n * The text color of a menu item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuItemText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuItemText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#menuItemTextHovered:member",
              "docComment": "/**\n * The text color of a hovered menu item.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "menuItemTextHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "menuItemTextHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#messageLink:member",
              "docComment": "/**\n * Color of links within a message.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "messageLink: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "messageLink",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#messageLinkHovered:member",
              "docComment": "/**\n * Color of links within a message when hovered.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "messageLinkHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "messageLinkHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#primaryButtonBackground:member",
              "docComment": "/**\n * Background of a primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#primaryButtonBackgroundDisabled:member",
              "docComment": "/**\n * Background of a disabled primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonBackgroundDisabled: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonBackgroundDisabled",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#primaryButtonBackgroundHovered:member",
              "docComment": "/**\n * Background of a hovered primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonBackgroundHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonBackgroundHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#primaryButtonBackgroundPressed:member",
              "docComment": "/**\n * Background of a pressed primary button; i.e. currently being clicked by mouse\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonBackgroundPressed: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonBackgroundPressed",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#primaryButtonBorder:member",
              "docComment": "/**\n * Border of a primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#severeWarningBackground:member",
              "docComment": "/**\n * Background for severe warning messages.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "severeWarningBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "severeWarningBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#severeWarningIcon:member",
              "docComment": "/**\n * Color for icons on severeWarningBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "severeWarningIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "severeWarningIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#smallInputBorder:member",
              "docComment": "/**\n * The border of a small input control in its resting unchecked state; e.g. the box of an unchecked checkbox.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "smallInputBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "smallInputBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#successBackground:member",
              "docComment": "/**\n * Background for success\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "successBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "successBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#successIcon:member",
              "docComment": "/**\n * Color for icons on successBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "successIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "successIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#variantBorder:member",
              "docComment": "/**\n * The color of the border that provides contrast between an element, such as a card, and a standout background.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "variantBorder: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "variantBorder",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#variantBorderHovered:member",
              "docComment": "/**\n * Hover color of border that provides contrast between an element, such as a card, and a standout background.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "variantBorderHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "variantBorderHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#warningBackground:member",
              "docComment": "/**\n * Background for warning messages.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "warningBackground: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "warningBackground",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#warningHighlight:member",
              "docComment": "/**\n * @deprecated\n *\n * (no longer used) Foreground color for warning highlights\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "warningHighlight: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "warningHighlight",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticColors#warningIcon:member",
              "docComment": "/**\n * Color for icons on warningBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "warningIcon: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "warningIcon",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": [
            {
              "startIndex": 1,
              "endIndex": 3
            }
          ]
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!ISemanticTextColors:interface",
          "docComment": "/**\n * {@docCategory ISemanticTextColors}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface ISemanticTextColors "
            }
          ],
          "releaseTag": "Public",
          "name": "ISemanticTextColors",
          "members": [
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#accentButtonText:member",
              "docComment": "/**\n * Color of text for accent button (kicker)\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "accentButtonText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "accentButtonText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#actionLink:member",
              "docComment": "/**\n * Neutral colored links and links for action buttons.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "actionLink: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "actionLink",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#actionLinkHovered:member",
              "docComment": "/**\n * Hover state for neutral colored links and links for action buttons.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "actionLinkHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "actionLinkHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#bodySubtext:member",
              "docComment": "/**\n * De-emphasized text; e.g. metadata, captions, placeholder text.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodySubtext: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodySubtext",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#bodyText:member",
              "docComment": "/**\n * The default color for text.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#bodyTextChecked:member",
              "docComment": "/**\n * Checked text color, e.g. selected menu item text.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "bodyTextChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "bodyTextChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#buttonText:member",
              "docComment": "/**\n * Color of text in a standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#buttonTextChecked:member",
              "docComment": "/**\n * Color of text in a checked standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonTextChecked: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonTextChecked",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#buttonTextCheckedHovered:member",
              "docComment": "/**\n * Color of text in a checked and hovered standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonTextCheckedHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonTextCheckedHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#buttonTextDisabled:member",
              "docComment": "/**\n * Color of text in a disabled standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonTextDisabled: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonTextDisabled",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#buttonTextHovered:member",
              "docComment": "/**\n * Color of text in a hovered standard button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonTextHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonTextHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#buttonTextPressed:member",
              "docComment": "/**\n * Color of text in a pressed standard button; i.e. currently being clicked by mouse\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "buttonTextPressed: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "buttonTextPressed",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#disabledBodySubtext:member",
              "docComment": "/**\n * Disabled de-emphasized text, for use on the default background (bodyBackground).\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disabledBodySubtext: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disabledBodySubtext",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#disabledBodyText:member",
              "docComment": "/**\n * The default color for disabled text on the default background (bodyBackground).\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disabledBodyText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disabledBodyText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#disabledSubtext:member",
              "docComment": "/**\n * Disabled de-emphasized text, for use on disabledBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disabledSubtext: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disabledSubtext",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#disabledText:member",
              "docComment": "/**\n * The default color for disabled text on top of disabledBackground; e.g. text in a disabled text field or disabled button text.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "disabledText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "disabledText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#errorText:member",
              "docComment": "/**\n * The default color of error text on bodyBackground.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "errorText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "errorText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#inputPlaceholderText:member",
              "docComment": "/**\n * The color of placeholder text.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputPlaceholderText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputPlaceholderText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#inputText:member",
              "docComment": "/**\n * The color of input text.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#inputTextHovered:member",
              "docComment": "/**\n * The color of input text on hover.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "inputTextHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "inputTextHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#link:member",
              "docComment": "/**\n * The color of a link.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "link: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "link",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#linkHovered:member",
              "docComment": "/**\n * The color of a hovered link. Also used when the link is active.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "linkHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "linkHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#listText:member",
              "docComment": "/**\n * The default text color for list item titles and text in column fields.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#listTextColor:member",
              "docComment": "/**\n * @deprecated\n *\n * This slot was incorrectly named. Use listText instead.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "listTextColor: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "listTextColor",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#messageText:member",
              "docComment": "/**\n * The default color of text in a message bar.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "messageText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "messageText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#primaryButtonText:member",
              "docComment": "/**\n * Color of text in a primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#primaryButtonTextDisabled:member",
              "docComment": "/**\n * Color of text in a disabled primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonTextDisabled: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonTextDisabled",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#primaryButtonTextHovered:member",
              "docComment": "/**\n * Color of text in a hovered primary button\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonTextHovered: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonTextHovered",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#primaryButtonTextPressed:member",
              "docComment": "/**\n * Color of text in a pressed primary button; i.e. currently being clicked by mouse\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "primaryButtonTextPressed: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "primaryButtonTextPressed",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#successText:member",
              "docComment": "/**\n * @deprecated\n *\n * No longer used. Consider using messageText and/or successIcon instead.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "successText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "successText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "PropertySignature",
              "canonicalReference": "@uifabric/styling!ISemanticTextColors#warningText:member",
              "docComment": "/**\n * @deprecated\n *\n * No longer used. Consider using messageText and/or warningIcon instead.\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "warningText: "
                },
                {
                  "kind": "Content",
                  "text": "string"
                },
                {
                  "kind": "Content",
                  "text": ";"
                }
              ],
              "releaseTag": "Public",
              "name": "warningText",
              "propertyTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "extendsTokenRanges": []
        },
        {
          "kind": "Interface",
          "canonicalReference": "@uifabric/styling!ITheme:interface",
          "docComment": "/**\n * {@docCategory ITheme}\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export interface ITheme extends "
            },
            {
              "kind": "Reference",
              "text": "IScheme",
              "canonicalReference": "@uifabric/styling!IScheme:interface"
            },
            {
              "kind": "Content",
              "text": " "
            }
          ],
          "releaseTag": "Public",
          "name": "ITheme",
          "members": [],
          "extendsTokenRanges": [
            {
              "startIndex": 1,
              "endIndex": 3
            }
          ]
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!loadTheme:function(1)",
          "docComment": "/**\n * Applies the theme, while filling in missing slots.\n *\n * @param theme - Partial theme object.\n *\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function loadTheme(theme: "
            },
            {
              "kind": "Reference",
              "text": "IPartialTheme",
              "canonicalReference": "@uifabric/styling!IPartialTheme:type"
            },
            {
              "kind": "Content",
              "text": ", depComments?: "
            },
            {
              "kind": "Content",
              "text": "boolean"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "theme",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "depComments",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            }
          ],
          "name": "loadTheme"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!normalize:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "normalize: "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "normalize",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!noWrap:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "noWrap: "
            },
            {
              "kind": "Reference",
              "text": "IRawStyle",
              "canonicalReference": "@uifabric/merge-styles!IRawStyle:interface"
            }
          ],
          "releaseTag": "Public",
          "name": "noWrap",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!PulsingBeaconAnimationStyles:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "PulsingBeaconAnimationStyles: "
            },
            {
              "kind": "Content",
              "text": "{\n    continuousPulseAnimationDouble: typeof "
            },
            {
              "kind": "Reference",
              "text": "_continuousPulseAnimationDouble",
              "canonicalReference": "@uifabric/styling!~_continuousPulseAnimationDouble:function"
            },
            {
              "kind": "Content",
              "text": ";\n    continuousPulseAnimationSingle: typeof "
            },
            {
              "kind": "Reference",
              "text": "_continuousPulseAnimationSingle",
              "canonicalReference": "@uifabric/styling!~_continuousPulseAnimationSingle:function"
            },
            {
              "kind": "Content",
              "text": ";\n    createDefaultAnimation: typeof "
            },
            {
              "kind": "Reference",
              "text": "_createDefaultAnimation",
              "canonicalReference": "@uifabric/styling!~_createDefaultAnimation:function"
            },
            {
              "kind": "Content",
              "text": ";\n}"
            }
          ],
          "releaseTag": "Public",
          "name": "PulsingBeaconAnimationStyles",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 8
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!registerDefaultFontFaces:function(1)",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function registerDefaultFontFaces(baseUrl: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 4
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "baseUrl",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "registerDefaultFontFaces"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!registerIconAlias:function(1)",
          "docComment": "/**\n * Remaps one icon name to another.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function registerIconAlias(iconName: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": ", mappedToName: "
            },
            {
              "kind": "Content",
              "text": "string"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "iconName",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "mappedToName",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 4
              }
            }
          ],
          "name": "registerIconAlias"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!registerIcons:function(1)",
          "docComment": "/**\n * Registers a given subset of icons.\n *\n * @param iconSubset - the icon subset definition.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function registerIcons(iconSubset: "
            },
            {
              "kind": "Reference",
              "text": "IIconSubset",
              "canonicalReference": "@uifabric/styling!IIconSubset:interface"
            },
            {
              "kind": "Content",
              "text": ", options?: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "IIconOptions",
              "canonicalReference": "@uifabric/styling!IIconOptions:interface"
            },
            {
              "kind": "Content",
              "text": ">"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 8,
            "endIndex": 9
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "iconSubset",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "parameterName": "options",
              "parameterTypeTokenRange": {
                "startIndex": 3,
                "endIndex": 7
              }
            }
          ],
          "name": "registerIcons"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!registerOnThemeChangeCallback:function(1)",
          "docComment": "/**\n * Registers a callback that gets called whenever the theme changes. This should only be used when the component cannot automatically get theme changes through its state. This will not register duplicate callbacks.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function registerOnThemeChangeCallback(callback: "
            },
            {
              "kind": "Content",
              "text": "(theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ") => void"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "callback",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 4
              }
            }
          ],
          "name": "registerOnThemeChangeCallback"
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!removeOnThemeChangeCallback:function(1)",
          "docComment": "/**\n * See registerOnThemeChangeCallback(). Removes previously registered callbacks.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function removeOnThemeChangeCallback(callback: "
            },
            {
              "kind": "Content",
              "text": "(theme: "
            },
            {
              "kind": "Reference",
              "text": "ITheme",
              "canonicalReference": "@uifabric/styling!ITheme:interface"
            },
            {
              "kind": "Content",
              "text": ") => void"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 5,
            "endIndex": 6
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "callback",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 4
              }
            }
          ],
          "name": "removeOnThemeChangeCallback"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMaxLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMaxLarge: "
            },
            {
              "kind": "Content",
              "text": "number"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMaxLarge",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMaxMedium:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMaxMedium: "
            },
            {
              "kind": "Content",
              "text": "number"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMaxMedium",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMaxSmall:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMaxSmall: "
            },
            {
              "kind": "Content",
              "text": "number"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMaxSmall",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMaxXLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMaxXLarge: "
            },
            {
              "kind": "Content",
              "text": "number"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMaxXLarge",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMaxXXLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMaxXXLarge: "
            },
            {
              "kind": "Content",
              "text": "number"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMaxXXLarge",
          "variableTypeTokenRange": {
            "startIndex": 1,
            "endIndex": 2
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinLarge = 640"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinLarge",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinMedium:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinMedium = 480"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinMedium",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinSmall:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinSmall = 320"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinSmall",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinUhfMobile:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinUhfMobile = 768"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinUhfMobile",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinXLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinXLarge = 1024"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinXLarge",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinXXLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinXXLarge = 1366"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinXXLarge",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ScreenWidthMinXXXLarge:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ScreenWidthMinXXXLarge = 1920"
            }
          ],
          "releaseTag": "Public",
          "name": "ScreenWidthMinXXXLarge",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!setIconOptions:function(1)",
          "docComment": "/**\n * Sets the icon options.\n *\n * @public\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function setIconOptions(options: "
            },
            {
              "kind": "Reference",
              "text": "Partial",
              "canonicalReference": "!Partial:type"
            },
            {
              "kind": "Content",
              "text": "<"
            },
            {
              "kind": "Reference",
              "text": "IIconOptions",
              "canonicalReference": "@uifabric/styling!IIconOptions:interface"
            },
            {
              "kind": "Content",
              "text": ">"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 6,
            "endIndex": 7
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "options",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 5
              }
            }
          ],
          "name": "setIconOptions"
        },
        {
          "kind": "Variable",
          "canonicalReference": "@uifabric/styling!ThemeSettingName:var",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "ThemeSettingName = \"theme\""
            }
          ],
          "releaseTag": "Public",
          "name": "ThemeSettingName",
          "variableTypeTokenRange": {
            "startIndex": 0,
            "endIndex": 0
          }
        },
        {
          "kind": "Function",
          "canonicalReference": "@uifabric/styling!unregisterIcons:function(1)",
          "docComment": "/**\n * Unregisters icons by name.\n *\n * @param iconNames - List of icons to unregister.\n */\n",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare function unregisterIcons(iconNames: "
            },
            {
              "kind": "Content",
              "text": "string[]"
            },
            {
              "kind": "Content",
              "text": "): "
            },
            {
              "kind": "Content",
              "text": "void"
            },
            {
              "kind": "Content",
              "text": ";"
            }
          ],
          "returnTypeTokenRange": {
            "startIndex": 3,
            "endIndex": 4
          },
          "releaseTag": "Public",
          "overloadIndex": 1,
          "parameters": [
            {
              "parameterName": "iconNames",
              "parameterTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ],
          "name": "unregisterIcons"
        },
        {
          "kind": "Namespace",
          "canonicalReference": "@uifabric/styling!ZIndexes:namespace",
          "docComment": "",
          "excerptTokens": [
            {
              "kind": "Content",
              "text": "export declare namespace ZIndexes "
            }
          ],
          "releaseTag": "Public",
          "name": "ZIndexes",
          "members": [
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!ZIndexes.Coachmark:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "Coachmark: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                }
              ],
              "releaseTag": "Public",
              "name": "Coachmark",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!ZIndexes.FocusStyle:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "FocusStyle: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                }
              ],
              "releaseTag": "Public",
              "name": "FocusStyle",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!ZIndexes.KeytipLayer:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "KeytipLayer: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                }
              ],
              "releaseTag": "Public",
              "name": "KeytipLayer",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!ZIndexes.Layer:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "Layer: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                }
              ],
              "releaseTag": "Public",
              "name": "Layer",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!ZIndexes.Nav:var",
              "docComment": "",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "Nav: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                }
              ],
              "releaseTag": "Public",
              "name": "Nav",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            },
            {
              "kind": "Variable",
              "canonicalReference": "@uifabric/styling!ZIndexes.ScrollablePane:var",
              "docComment": "/**\n * @deprecated\n *\n * ScrollablePane\n */\n",
              "excerptTokens": [
                {
                  "kind": "Content",
                  "text": "ScrollablePane: "
                },
                {
                  "kind": "Content",
                  "text": "number"
                }
              ],
              "releaseTag": "Public",
              "name": "ScrollablePane",
              "variableTypeTokenRange": {
                "startIndex": 1,
                "endIndex": 2
              }
            }
          ]
        }
      ]
    }
  ]
}
