/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { SandDance } from '@msrvida/sanddance-react'; export interface Props { collapseLabel: boolean; scheme: string; colorColumn: SandDance.types.Column; changeColorScheme: (scheme: string) => void; disabled: boolean; } export declare function Palette(props: Props): JSX.Element;