@claromentis/design-system
Version:
Claromentis Design System Component Library
18 lines (17 loc) • 341 B
TypeScript
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;
}