import * as React from "react"; export type LayoutPanelHeadProps = { headingLevel?: 2 | 3 | 4 | 5 | 6 | undefined; headingStyle?: 2 | 3 | 4 | 5 | 6 | undefined; title?: React.ReactNode | string; description?: string; } & Omit, "title">; declare class LayoutPanel extends React.Component> { displayName: "LayoutPanel"; static Actions: React.ComponentClass> & { displayName: "LayoutPanel.Actions" }; static Body: React.ComponentClass> & { displayName: "LayoutPanel.Body" }; static Filters: React.ComponentClass> & { displayName: "LayoutPanel.Filters" }; static Footer: React.ComponentClass> & { displayName: "LayoutPanel.Footer" }; static Head: React.ComponentClass & { displayName: "LayoutPanel.Head" }; static Header: React.ComponentClass> & { displayName: "LayoutPanel.Header" }; } export default LayoutPanel;