import { BaseBtnType, BtnsMap } from '../../BaseBtn/_types';
import { CommonObj, StrNum } from '../../../_types';
import { TableColAttrs } from '../../table/_types';
import { FormFieldAttrs } from '../../form/_types';

export declare function getExportRows(cols?: TableColAttrs[], rows?: CommonObj[]): string[][];
/**
 * 获取查询条件的文本值
 */
export declare function getQueryFieldValue(field: FormFieldAttrs, val: StrNum | StrNum[], joinChar?: string): any;
/**
 * 获取每一行的分组按钮
 * @param row 行数据
 * @param rowInd 行下标
 * @param operateBtns 操作栏按钮
 * @param baseBtnAttrs
 * @returns []
 */
export declare function getStandardGroupBtns(row: CommonObj, rowInd: number, operateBtns?: BaseBtnType, baseBtnAttrs?: BtnsMap, isStand?: boolean): any;
