import GirafeHTMLElement from '../../base/GirafeHTMLElement';
declare class HelpComponent extends GirafeHTMLElement {
    template: () => import("uhtml").Hole;
    content: HTMLElement;
    themes: HTMLElement;
    search: HTMLElement;
    menu: HTMLElement;
    basemap: HTMLElement;
    userPreferences: HTMLElement;
    darkFrontendMode: boolean;
    arrowBlack: string;
    arrowWhite: string;
    currentArrow?: string;
    constructor();
    render(): void;
    registerEvents(): void;
    changeArrowColor(): void;
    toggleHelp(visible: boolean): void;
    connectedCallback(): void;
}
export default HelpComponent;
