import * as React from 'react'; import { CSSProperties } from 'react'; import { AdaptableApi } from '../../Api/AdaptableApi'; import { AdaptableStyle } from '../../AdaptableState/Common/AdaptableStyle'; export interface StyleComponentProps { className?: string; style?: CSSProperties; api: AdaptableApi; headless?: boolean; hidePreview?: boolean; headerText?: string; Style: AdaptableStyle; /** @deprecated No longer used - font size is always displayed as dropdown */ showFontSizeAs?: 'radio' | 'dropdown'; UpdateStyle: (style: AdaptableStyle) => void; } export declare const StyleComponent: React.FC;