import React from "react"; import type { AppBanners, AppConfiguration } from "../Types"; export declare const APP_BAR_HEIGHT = "64px"; /** * Properties used to allow Storybook examples to override featureflag settings */ interface HeaderProps extends AppConfiguration { /** * Will enable the NPS feedback component in the header */ enableNPS?: boolean; /** * Will enable the workflow search component in the header */ search?: boolean; /** * Will enable the NPS feedback component in the header */ feedback?: boolean; /** * Will enable the shortlinks component in the header */ shortLinks?: boolean; /** * Will enable the notifications component in the header */ notifications?: boolean; /** * Will enable the user information component in the header */ userInfo?: boolean; /** * The banners to render */ banners?: AppBanners; /** * The children to render */ children?: React.ReactNode; } declare const Header: ({ title, logo, banners, enableNPS, search, feedback, shortLinks, notifications, userInfo, children, }: HeaderProps) => JSX.Element; export default Header; export { Header }; //# sourceMappingURL=header.d.ts.map