import { CreateElement, RenderContext } from "vue"; import { ColumnScope } from './index'; import { ElTableTreeColumnPropsInner } from "./props"; export declare function hasChild(context: RenderContext, scope: ColumnScope): boolean; export declare function paddingLeft(context: RenderContext, scope: ColumnScope): string; export declare function isNeedExpanedRow(context: RenderContext, scope: ColumnScope): boolean; export declare function isLoadingRow(context: RenderContext, scope: ColumnScope): boolean; export declare function isExpandedRow(context: RenderContext, scope: ColumnScope): boolean; export declare function icon(scope: ColumnScope, context: RenderContext): "el-icon-loading" | "el-icon-caret-bottom" | "el-icon-caret-right"; export declare function folderIcon(context: RenderContext, scope: ColumnScope): string; export declare function renderDetail(h: CreateElement, context: RenderContext, scope: ColumnScope): any;