/**
 * @description 渲染单元格
 * */
declare function rendercell(params: any): {
    children: any;
    props: {
        [x: number]: string;
    };
};
export default rendercell;
