import { SvelteComponentTyped } from "svelte"; import type { Color, Size } from '../../unocss'; declare const __propDef: { props: { count?: number | undefined; color?: Color | undefined; size?: Size | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type NotificationsCountProps = typeof __propDef.props; export type NotificationsCountEvents = typeof __propDef.events; export type NotificationsCountSlots = typeof __propDef.slots; export default class NotificationsCount extends SvelteComponentTyped { } export {};