import { CSSProperties, FC, ReactNode } from 'react'; interface IProps extends Pick { childrenLeft?: ReactNode; childrenRight?: ReactNode; className?: string; cy?: { wrapper?: string; left?: string; right?: string; }; } declare const TopBar: FC; export default TopBar;