import { ReactNode } from 'react'; interface DocumentTopBarProps { logo?: ReactNode; children?: ReactNode; /** Keeps the bar visible while one of its controls is open. */ forceVisible?: boolean; } /** * Shared masthead for document branding and actions. Positioning and the * scroll hide/reveal transition live here so every child moves as one unit. */ export default function DocumentTopBar({ logo, children, forceVisible, }: DocumentTopBarProps): import("react").JSX.Element; export {};