import { type HTMLAttributes, type ReactNode } from "react"; export interface TopBarProps extends HTMLAttributes { children?: ReactNode; actions?: ReactNode; } export declare const TopBar: import("react").ForwardRefExoticComponent>;