export interface VirListProps {
    /**
     * 数据源
     */
    options: Array<any>;
    /**
     * 渲染的子项
     */
    children: any;
    /**
     * 子项的高度
     */
    size?: number;
    /**
     * 最大高度
     */
    maxHeight?: number;
    /**
     * 虚拟容器Ref
     */
    parentRef?: any | null;
    /**
     * 类名
     */
    className?: string;
}
