import { AttributeOptions, PropertyOptions } from '../types/index'; /** * 解析默认值 * @param thisArg 函数默认值的 this 上下文 * @param defaultVal 默认值 * @returns 解析后的默认值 */ declare function parseDefaultValue(thisArg: any, defaultVal: any): any; /** * 解析属性值为指定类型 * @param thisArg 函数默认值的 this 上下文 * @param value 属性值 * @param type 目标类型 * @param defaultVal 默认值 * @returns 转换后的值 */ export declare function parseAttributeValue(thisArg: any, value: string | null, type: AttributeOptions["type"] | PropertyOptions["type"], defaultVal?: any): any; export { parseDefaultValue }; export default parseAttributeValue; //# sourceMappingURL=parseAttributeValue.d.ts.map