import { CollapsingHeaderProps } from './types'; /** * Collapsing header of an entity preview panel or full page, designed for the `Backoffice` layout. * Preview: "open full page" link + close button above the title. Full page: back link above the * title, compact actions in the sticky bar. */ declare const CollapsingHeader: ({ compactTitle, fullTitle, actions, compactActions, variant, onClose, onOpenFullPage, backLabel, onBack, labels, maxWidth, }: CollapsingHeaderProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default CollapsingHeader;