import React from 'react';
import { ScrollViewAllProps } from '../../fragments/scroll-view/ScrollView';
import type { SkeletonShow } from '../Skeleton';
import type { SpacingProps } from '../../shared/types';
export type ListScrollViewProps = {
    children: React.ReactNode;
    maxVisibleListItems?: number;
    skeleton?: SkeletonShow;
    disabled?: boolean;
} & Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> & SpacingProps & ScrollViewAllProps;
declare function ListScrollView(props: ListScrollViewProps): import("react/jsx-runtime").JSX.Element;
declare namespace ListScrollView {
    var _supportsSpacingProps: boolean;
}
export default ListScrollView;
