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;
    previewText?: React.ReactNode;
    headerText?: string;
    Style: AdaptableStyle;
    UpdateStyle: (style: AdaptableStyle) => void;
}
export declare const StyleComponent: React.FC<StyleComponentProps>;
