import { SvelteComponent } from "svelte"; import type { Size } from './params'; declare const __propDef: { props: { class?: string | undefined; label?: string | undefined; icon?: string | undefined; size?: Size | undefined; active?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type ChipProps = typeof __propDef.props; export type ChipEvents = typeof __propDef.events; export type ChipSlots = typeof __propDef.slots; export default class Chip extends SvelteComponent { } export {};