import type { AppConfig } from '@nuxt/schema'; import theme from '#build/ui/avatar'; import type { ComponentConfig } from '../types/utils'; type Avatar = ComponentConfig; export interface AvatarProps { /** * The element or component this component should render as. * @defaultValue 'span' */ as?: any; src?: string; alt?: string; /** * @IconifyIcon */ icon?: string; text?: string; /** * @defaultValue 'md' */ size?: Avatar['variants']['size']; class?: any; style?: any; ui?: Avatar['slots']; } export interface AvatarSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, { default?: (props: {}) => any; }>; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };