import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; declare const __propDef: { props: { [x: string]: any; title: string; icon?: MaterialIcons | undefined; value: number; type?: "percent" | "decimal" | "currency" | undefined; goal?: number | undefined; background?: string | undefined; emphasis?: string | undefined; light?: boolean | undefined; dark?: boolean | undefined; lastYear?: number | undefined; showTrend?: boolean | undefined; trendBackground?: string | undefined; trendColor?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type StatisticProps = typeof __propDef.props; export declare type StatisticEvents = typeof __propDef.events; export declare type StatisticSlots = typeof __propDef.slots; export default class Statistic extends SvelteComponentTyped { } export {};