import { ComponentInterface } from '../../stencil-public-runtime'; export declare class BiChip implements ComponentInterface { private inheritedAttributes; /** * The host element */ el: HTMLBiChipElement; /** * The color of the chip * @default 'primary' */ color: 'neutral' | 'primary-light' | 'info' | 'white' | 'primary' | 'alert' | 'warning' | 'success'; /** * The size of the chip */ size: 'small' | 'medium' | 'large'; /** * Decides if the chip is clickable and rendered as a button. */ clickable?: boolean; /** * When href is set, the chip will render as a link. * This will override the clickable property if both is set. */ href?: string; componentWillLoad(): void; render(): any; }