import React, { PropsWithChildren, ReactNode } from 'react'; /** * TODO: favoriteable capability */ /** @public */ export type ContentHeaderClassKey = 'container' | 'leftItemsBox' | 'rightItemsBox' | 'description' | 'title'; type ContentHeaderTitleProps = { title?: string; className?: string; }; type ContentHeaderProps = { title?: ContentHeaderTitleProps['title']; titleComponent?: ReactNode; description?: string; textAlign?: 'left' | 'right' | 'center'; }; /** * A header at the top inside a {@link Content}. * * @public * */ export declare function ContentHeader(props: PropsWithChildren): React.JSX.Element; export {};