import { MultiRowEditorColumn, MultiRowEditorRow } from '@dao-style/extend'; type I18nT = (key: string, options?: Record) => string; /** * 校验非空 * @param val * @param row * @param column */ export declare const checkNotEmpty: (t: I18nT, val?: unknown, _?: MultiRowEditorRow, column?: MultiRowEditorColumn) => { valid: boolean; message: string; }; export {};