export interface FmAvatarProps { /** Maximum two characters. Has the highest precedence over 'name' props */ initials?: string; /** * To allow component to auto-generate initials. * If there is only one word, the first two letter of the word is selected. * If there are more than one word, the first letter of the first two words is selected. * * E.G. "John" -> JO * E.G. "John Wick" -> JW */ name?: string; /** * Image asset to render as avatar background. */ src?: string; /** Default: md * sm: 24x24 * sm2: 36x36 * md: 40x40 * lg: 48x48 * xl: 56x56 * */ size?: 'sm' | 'sm2' | 'md' | 'lg' | 'xl'; /** Default: xxxl * sm: 4 * md: 8 * lg: 16 * xl: 32 * xxl: 128 * xxxl: 360 * */ rounded?: 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl'; } declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { initials: () => ""; name: () => ""; src: undefined; size: () => "md"; rounded: () => "xxxl"; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { initials: () => ""; name: () => ""; src: undefined; size: () => "md"; rounded: () => "xxxl"; }>>>, { name: string; size: "sm" | "md" | "lg" | "xl" | "sm2"; rounded: "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl"; src: string; initials: string; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};