import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface INavProps extends IReactComponentProps { title?: string | undefined; } export declare const VerticalNav: (props: INavProps) => React.JSX.Element; interface IProps extends IReactComponentProps { className?: string; fadeIn?: boolean; navLinkActive?: boolean; navLinkActiveClassName?: string; navLinkClass?: string; routeTo?: string; tooltip?: string | null; type?: 'addsite' | 'button' | 'filler' | 'navlink' | 'switcher'; } export declare const VerticalNavItem: { (props: IProps): React.JSX.Element | null; defaultProps: { fadeIn: boolean; type: string; }; }; export {}; //# sourceMappingURL=VerticalNav.d.ts.map