import * as React from "react"; export declare const defaultBgColor: string; export declare const defaultHeaderPaddingHor = "none"; export declare const defaultHeaderPaddingVert = "none"; interface HeaderProps { children?: React.ReactNode; /** * Changes the background color for the entire sidebar */ bgColor?: string; } declare const Header: ({ bgColor, children }: HeaderProps) => React.JSX.Element; export default Header;