import { EventEmitter } from '../../stencil-public-runtime'; export interface SignetChipCloseEvent { image: string; label: string; closeable: boolean; id: string; } export declare class SignetChip { el: HTMLElement; /** * The unique identifier for the chip. */ chipId: string; /** * The style variant of the chip ('filled' or 'outlined'). */ variant: 'filled' | 'outlined'; /** * The URL of the image displayed in the chip. */ image: string; /** * The text label displayed in the chip. */ label: string; /** * Indicates whether the chip is closeable. */ closeable: boolean; close: EventEmitter; onClose(): void; render(): any; }