import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: string; value: string; icon: string; theme?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type SurfaceStatProps = typeof __propDef.props; export declare type SurfaceStatEvents = typeof __propDef.events; export declare type SurfaceStatSlots = typeof __propDef.slots; export default class SurfaceStat extends SvelteComponentTyped { } export {};