import React from 'react'; export interface HeaderProps { headerActions?: React.ReactNode; appName?: string; showTitle?: boolean; showDrawer?: boolean; } export declare const Header: ({ headerActions, appName, showDrawer }: HeaderProps) => JSX.Element;