import { CssClassMap, Position } from '../../interfaces';
/**
 *  @slot - Content of the banner
 */
export declare class Banner {
  /**
  * The banner position i.e top or bottom
  */
  position?: Position;
  /**
  * Get the map of CSS classes for the banner.
  *
  * @return CssClassMap
  */
  getClassMap(): CssClassMap;
  render(): any;
}
