import { PropTypes } from '@krowdy/kds-core' interface IApp { title: string url: string } interface Ilogo { alt: string source: string } interface Iuser { firstName: string lastName: string photo?: string } interface ITopMenu { color?: string target?: string title: string type?: string url?: string variant?: string } interface IUserMenu { target?: string title: string type: string url: string } export type TopAppBarProps = { apps?: Array, color?: PropTypes.Color; logo?: Ilogo; menuTopLeft?: Array; menuTopRight?: Array; onHandleLogout?: () => void; persistMenuIcon?: boolean; onHandleToggleDrawer?: () => void; user?: Iuser; userMenu?: Array; historyPath?: string }; declare const TopAppBar: React.ComponentType; export default TopAppBar;