type __VLS_Props = { color?: string | null; size?: 'small' | 'medium' | 'large'; bold?: boolean; uppercase?: boolean; variant?: 'flat' | 'tonal' | 'outlined' | 'text' | 'plain'; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: HTMLSpanElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { bold: boolean; size: "small" | "medium" | "large"; color: string | null; uppercase: boolean; variant: "flat" | "tonal" | "outlined" | "text" | "plain"; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };