import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; background?: string | undefined; width?: string | undefined; border?: string | undefined; rounded?: string | undefined; shadow?: string | undefined; cursor?: string | undefined; initials?: string | undefined; fill?: string | undefined; action?: any; actionParams?: any; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type AvatarProps = typeof __propDef.props; export declare type AvatarEvents = typeof __propDef.events; export declare type AvatarSlots = typeof __propDef.slots; export default class Avatar extends SvelteComponentTyped { } export {};