/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { FluentUITypes } from '@msrvida/fluentui-react-cdn-typings'; export interface ISchemeOption extends FluentUITypes.IDropdownOption { scheme: string; children: React.ReactNode; } export declare function schemeOption(selected: string, scheme: string): ISchemeOption; export declare function schemeHeader(key: string, text: string): FluentUITypes.IDropdownOption; export declare const schemesJSX: { [scheme: string]: JSX.Element; };