import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes, CSSProperties } from 'vue'; import type { ScrollCallback } from './interface'; export declare const Props: { /** 触发距离 */ distance: BasicType; /** 样式列表 */ styles: BasicType, null>; /** 是否 loading */ loading: BasicType; /** 滚动触底时触发的回调 */ onScrollEnd: BasicType, null>; /** 滚动时触发的回调 */ onScrollWhen: BasicType, null>; }; /** infinite-scrolling 组件 props 类型 */ export type InfiniteScrollingProps = ExtractPropTypes;