import { ResponsiveBreakpoint } from '@mezzanine-ui/core/content-header'; import { FC, ReactNode } from 'react'; export interface ContentHeaderResponsiveProps { breakpoint: ResponsiveBreakpoint; children?: ReactNode; } /** @experimental This component is still in testing and the API may change frequently */ declare const ContentHeaderResponsive: FC; export default ContentHeaderResponsive;