import { SvelteComponentTyped } from "svelte"; import type { ButtonSize } from '../common/types/ButtonSize'; import { type SemanticColor } from '../common/types/SemanticColor'; declare const __propDef: { props: { class?: string; label?: string; icon?: string; outlined?: boolean; rounded?: boolean; closable?: boolean; clickable?: boolean; size?: Exclude; color?: SemanticColor; }; events: { click: MouseEvent; close: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type ChipProps = typeof __propDef.props; export declare type ChipEvents = typeof __propDef.events; export declare type ChipSlots = typeof __propDef.slots; export default class Chip extends SvelteComponentTyped { } export {};