import type { CountryCode, PisellPhoneProps } from '../types'; import type { ValidationResult } from '@pisell/utils'; /** * 电话号码校验 * @param phone 电话号码(纯数字) * @param countryCode 国家码 * @param countryConfig 国家码配置 * @param props 组件 Props * @returns 校验结果 */ export declare function validatePhone(phone: string, countryCode: string, countryConfig: CountryCode | undefined, props: PisellPhoneProps): ValidationResult;