import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { avatar?: any; name: string; image: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type UserStatProps = typeof __propDef.props; export declare type UserStatEvents = typeof __propDef.events; export declare type UserStatSlots = typeof __propDef.slots; export default class UserStat extends SvelteComponentTyped { } export {};