import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { icon?: string; title: string; value: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type MiniStatProps = typeof __propDef.props; export declare type MiniStatEvents = typeof __propDef.events; export declare type MiniStatSlots = typeof __propDef.slots; export default class MiniStat extends SvelteComponentTyped { } export {};