import * as React from 'react'; export interface IEventTopBarProps { id?: string; title: string; pageIcon?: JSX.Element; goHome?: () => void; saveAction?: IEventTopBarMenuAction; exitAction?: IEventTopBarMenuAction; menuItems?: IToggleMenuItem[]; iconColor?: string; topBarActions?: React.ReactNode[]; className?: string; } export interface IEventTopBarMenuAction { handler: () => void; label: string; } interface IToggleMenuItem { label: string; icon?: JSX.Element; handler: () => void; } export declare const EventTopBar: (props: IEventTopBarProps) => React.JSX.Element; /** @deprecated since the introduction of `` */ export declare const FixedEventTopBar: import("styled-components").StyledComponent<(props: IEventTopBarProps) => React.JSX.Element, import("styled-components").DefaultTheme, {}, never>; export {}; //# sourceMappingURL=EventTopBar.d.ts.map