import { ReactNode } from 'react'; export interface TopNavigationProps { title?: ReactNode; leftContent?: ReactNode; rightContent?: ReactNode; } export declare const TopNavigation: ({ title, leftContent, rightContent }: TopNavigationProps) => import("@emotion/react/jsx-runtime").JSX.Element;