import { PropertyValue } from "../PropertyValue";
export declare class PhoneNumberPropertyValue extends PropertyValue {
    number: string;
    constructor(number: string);
    isEmpty(): boolean;
}
