/// interface Props { /** * Title bar title */ title: string; /** * The OS to render the title bar for, use windows if on linux platform */ osMode: "win" | "mac"; } declare const TitleBar: (props: Props) => JSX.Element; export default TitleBar;