export declare class Header {
    /**
     * The library github repo
     */
    github?: string;
    /**
     * The current version of the library
     */
    version?: string;
    /**
     * Whether the header nav is open of closed at smaller resolutions
     */
    active: boolean;
    element: HTMLElement;
    render(): any[];
    private toggleNav;
}
