/** @typedef {typeof __propDef.props} StatisticProps */ /** @typedef {typeof __propDef.events} StatisticEvents */ /** @typedef {typeof __propDef.slots} StatisticSlots */ export default class Statistic extends SvelteComponentTyped<{ style: any; color: any; size: any; floated: any; stackable: any; inverted: any; horizontal: any; class: any; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type StatisticProps = typeof __propDef.props; export type StatisticEvents = typeof __propDef.events; export type StatisticSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; color: any; size: any; floated: any; stackable: any; inverted: any; horizontal: any; class: any; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};