import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; src?: string | undefined; alt?: string | undefined; shape?: "circle" | "square" | "rounded" | undefined; size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined; indicator?: boolean | undefined; indicatorLocation?: "top-right" | "bottom-right" | undefined; initials?: string | undefined; withPlaceholder?: boolean | undefined; }; events: { [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 {};