import { type Validator, vg } from 'valgen';
import { DECODER, ENCODER } from '../../constants.js';
export declare class MobilePhoneType {
    constructor(attributes?: Partial<MobilePhoneType>);
    locale?: vg.isMobilePhone.MobilePhoneLocale;
    strictMode?: boolean;
    protected [DECODER](properties?: Partial<this>): Validator;
    protected [ENCODER](properties?: Partial<this>): Validator;
}
