/// <reference types="react" />
/**
 * Header, body for data looking content. Header looks like
 * the header on a Dynamics table but the content can
 * be anything.
 */
import * as React from "react";
export interface Classes {
    root?: string;
    header?: string;
    content?: string;
}
export interface Props {
    label: string;
    classes?: Classes;
}
/** Show header and content (children). */
export declare const CrmDataPanel: React.SFC<Props>;
export default CrmDataPanel;
