import type { FC } from "react"; import type { TypographyProps } from "../Typography"; /** * Properties for the `TitleBar` component. */ export interface TitleBarProps extends Omit { } declare const TitleBar: FC; export default TitleBar;