import type { ValidationRule } from 'ant-design-vue/lib/form/Form'; import type { ComponentType } from './types/index'; /** * @description: 生成placeholder */ export declare function createPlaceholderMessage(component: ComponentType): "" | "请选择" | "请输入"; export declare function setComponentRuleType(rule: ValidationRule, component: ComponentType, valueFormat: string): void; export declare function processDateValue(attr: Recordable, component: string): void; export declare function handleInputNumberValue(component?: ComponentType, val?: any): any; /** * 时间字段 */ export declare const dateItemType: string[]; export declare const defaultValueComponents: string[];