import * as React from 'react'; import { AdaptableTheme } from '../../types'; export interface VariantSelectorProps { theme: AdaptableTheme; onChange: (variant: AdaptableTheme['Variant'] | null) => void; disabled?: boolean; } export declare const VariantSelector: React.FunctionComponent;