import GirafeHTMLElement from '../../base/GirafeHTMLElement.js';
declare class HelpComponent extends GirafeHTMLElement {
    protected templateUrl: string | null;
    protected styleUrls: string[] | null;
    template: () => import("uhtml").Hole;
    content: HTMLElement;
    themes: HTMLElement;
    search: HTMLElement;
    menu: HTMLElement;
    onboarding: HTMLElement;
    basemap: HTMLElement;
    userPreferences: HTMLElement;
    darkFrontendMode: boolean;
    currentArrow?: string;
    currentCircle?: string;
    constructor();
    render(): void;
    private hideHelpFor;
    registerEvents(): void;
    changeArrowColor(): void;
    toggleHelp(visible: boolean): void;
    startOnboardingTour(): void;
    protected connectedCallback(): void;
}
export default HelpComponent;
