import { ComponentInterface } from '../../stencil-public-runtime';
import { CssClassMap } from '../../interfaces';
/**
 *  @slot - Wrapper for nav items
 */
export declare class Nav implements ComponentInterface {
  /**
  * The host Element
  **/
  el: HTMLElement;
  /**
   * Whether to display nav items vertically or horizontally.
   */
  inline: boolean;
  /**
  * Get the map of CSS classes for the nav tabs.
  *
  * @return CssClassMap
  */
  getClassMap(): CssClassMap;
  render(): any;
}
