import { LitElement } from 'lit'; import { IconColor, IconSize } from '@viasat/beam-shared/components/icon'; /** * `bm-icon` * @slot default - Specify which Icon to display */ export declare class BmIcon extends LitElement { static styles: import('lit').CSSResult; /** * Specify the color of Icon */ color?: IconColor; /** * Specify the size of Icon * @default md */ size: IconSize; /** * Specify a custom size for the Icon * */ customIconSize?: string; /** * Specify a custom color for the Icon * */ customIconColor?: string; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-icon': BmIcon; } } //# sourceMappingURL=Icon.d.ts.map