import React from 'react';
import { IDesignerPart } from '@devexpress/analytics-core/core/utils/_utils.designerPart';
type ViewModel = {
    parts?: IDesignerPart[];
    surfaceClass: (element: HTMLElement) => string;
    rootStyle: string;
    rtl?: boolean;
    addOns?: IDesignerPart[];
    accessibilityCompliant?: any;
    designMode?: any;
};
declare const Designer: React.FC<{
    data: ViewModel;
}>;
export default Designer;
