import { type PropType, type StyleValue } from 'vue'; export interface _TemplateProps { rootStyle?: StyleValue; rootClass?: string; } export declare const _templateProps: { rootStyle: PropType; rootClass: StringConstructor; }; export interface _TemplateSlots { default(props: Record): any; } export interface _TemplateEmits { (e: 'click', event: any): void; }