import { SvelteComponent } from "svelte"; import type { Size } from './params'; import type { Color, FillMode } from '../../types'; declare const __propDef: { props: { class?: string | undefined; label?: string | undefined; icon?: string | undefined; rounded?: boolean | undefined; mode?: FillMode | undefined; color?: Color | undefined; customColor?: string | undefined; size?: Size | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type StickerProps = typeof __propDef.props; export type StickerEvents = typeof __propDef.events; export type StickerSlots = typeof __propDef.slots; export default class Sticker extends SvelteComponent { } export {};