import type { PropType } from 'vue'; export declare const props: { /** * @description height: 100%; */ full: { type: BooleanConstructor; default: boolean; }; /** * @description 预设的 `overflow` 规则 */ overflow: { type: StringConstructor; default: string; }; /** * @description Item 之间的距离 */ gap: { type: StringConstructor; default: string; }; /** * @description 添加自适应到指定DOM */ withResize: { type: PropType<"one" | "two">; default: string; }; /** * @description 将`withResize`指定盒子`clientHeight`作为该自定义属性挂载 */ heightProperty: { type: StringConstructor; default: string; }; /** * @description 将`withResize`指定盒子最大高度作为该自定义属性挂载 */ maxHeightProperty: { type: StringConstructor; default: string; }; /** * @description 默认使用 parentElementClientHeight 作为计算resizeElementClientMaxHeight 的依据 */ containerHeight: { type: NumberConstructor; default: any; }; }; export declare const emits: {};