import '../../stencil.core'; import { Color, Mode } from '../../interface'; export declare class ChipButton { el: HTMLElement; /** * The color to use from your application's color palette. * Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`. * For more information on colors, see [theming](/docs/theming/basics). */ color?: Color; /** * The mode determines which platform styles to use. * Possible values are: `"ios"` or `"md"`. */ mode: Mode; /** * If true, the user cannot interact with the chip button. Defaults to `false`. */ disabled: boolean; /** * Set to `"clear"` for a transparent button or to `"solid"` for a filled background. * Defaults to `"clear"`. */ fill: 'clear' | 'solid'; /** * Contains a URL or a URL fragment that the hyperlink points to. * If this property is set, an anchor tag will be rendered. */ href?: string; hostData(): { class: {}; }; render(): JSX.Element; }