import { ReactNode } from 'react'; declare function TopBar({ height, backgroundColor, Left, Center, Right, boxShadow, children }: { height?: string; backgroundColor?: string; children?: ReactNode; Left?: ReactNode; Center?: ReactNode; Right?: ReactNode; boxShadow?: string; }): JSX.Element; export default TopBar;