import * as React from 'react'; export declare const SideNav: React.SFC<{ navInfos: (FolderInfo | INavLink)[]; currentRoute: string; onLinkClick?: () => void; defaultExpanded?: boolean; styleApi?: { wrapperStyle?: React.CSSProperties; navLinkStyle?: React.CSSProperties; folderStyle?: React.CSSProperties; navStyle?: React.CSSProperties; }; }>; export interface FolderInfo { label: string; navLinks: INavLink[]; } export interface INavLink { label: string; route: string; }