import { type AvatarProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [AvatarProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L202)
 * ## Props
 * @prop children
 * @prop indicator
 * @prop src
 * @prop href
 * @prop target
 * @prop cornerStyle = "circular"
 * @prop border = false
 * @prop stacked = false
 * @prop dot
 * @prop class: className
 * @prop alt
 * @prop size = "md"
 * @prop onclick
 * @prop ...restProps
 */
declare const Avatar: import("svelte").Component<AvatarProps, {}, "">;
type Avatar = ReturnType<typeof Avatar>;
export default Avatar;
