import { ComponentChildren } from "preact";
type TitleBarProps = {
    title?: string;
    children?: ComponentChildren;
    gap?: number;
};
declare const TitleBar: ({ title, children, gap }: TitleBarProps) => import("preact").JSX.Element;
export default TitleBar;
