import { HelpAction } from "../HelpButton/HelpButton"; import type { HeaderBrand, HeaderSocialMedia } from "../types/Brand"; import "./style.scss"; type Props = { navigateLogout?: () => void; navigateNotLogged: () => void; hideKeyboard?: boolean; notifications?: { mode: "corpus" | "parser" | "lexicon"; ref: string; }; keyboardLayout?: string; helpActions?: HelpAction[]; brand?: HeaderBrand; socialMedia?: HeaderSocialMedia; }; export default function HeaderApps({ navigateLogout, navigateNotLogged, hideKeyboard, notifications, keyboardLayout, helpActions, brand, socialMedia, }: Props): import("react").JSX.Element; export {};