import * as React from 'react';
import './index.less';
interface DetailRenderProps {
    dataList: any[];
    column?: number;
    showBorder?: boolean;
    getAnchorInfo?: (anchorInfo: AnchorInfoType[]) => void;
}
type AnchorInfoType = {
    title: string;
    anchor: string;
};
declare const DetailRender: React.FC<DetailRenderProps>;
export default DetailRender;
