import { default as React } from 'react';
export interface BulkEditorProps {
    /** The callback that is triggered, when a style property changed. */
    onStylePropChange?: (prop: string, val: any) => void;
}
export declare const BulkEditor: React.FC<BulkEditorProps>;
