import { TNode } from '../common';
export interface TdListProps {
    asyncLoading?: string | TNode;
    footer?: string | TNode;
    header?: string | TNode;
    onLoadMore?: () => void;
    onScroll?: (bottomDistance: number, scrollTop: number) => void;
}
