import { default as React } from 'react'; import { PanelSimpleSectionProps } from './PanelSimpleSection'; import { PanelEditableSectionProps } from './PanelEditableSection'; export type PanelSectionProps = ({ /** * Whether the PanelSection is editable */ isEditable?: false; } & PanelSimpleSectionProps) | ({ isEditable: true; } & PanelEditableSectionProps); export declare const PanelSection: ({ isEditable, ...props }: PanelSectionProps) => React.JSX.Element; //# sourceMappingURL=PanelSection.d.ts.map