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