type __VLS_Props = { /** * 是否使用原生滚动 * * @default false */ native?: boolean; /** * 包裹容器的样式 */ wrapStyle?: Record; /** * 包裹容器的类名 */ wrapClass?: string; /** * 视图容器的类名 */ viewClass?: string; /** * 视图容器的样式 */ viewStyle?: Record; /** * 如果 container 尺寸不会发生变化,最好设置它可以优化性能 * * @default false */ noresize?: boolean; /** * 包裹容器的标签 * * @default "div" */ tag?: string; }; declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly>>, {}>; export default _default; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType[K]>; } : { type: import('vue').PropType; required: true; }; };