import * as React from 'react';
import { AdaptableStyle } from '../types';
import { BoxProps } from './Flex';
interface StylePreviewProps extends BoxProps {
    styleObject: AdaptableStyle;
    className?: string;
    style?: React.CSSProperties;
}
export declare const StylePreview: React.FunctionComponent<React.PropsWithChildren<StylePreviewProps>>;
export {};
