/** * @file form utils * @author chenqiang(chenqiang03) */ import { InternalNamePath } from './interface'; export declare function toArray(candidate?: T | T[] | false): T[]; export declare function getFieldId(namePath: InternalNamePath, formName?: string): string; export declare function getCSSNumbericValue(value: string | number | undefined): string;