import { Model } from '../Model';
export default interface IPhone {
    landline?: string;
    mobile?: string;
    fax?: string;
}
export declare class Phone extends Model implements IPhone {
    set landline(landline: string);
    set mobile(mobile: string);
    set fax(fax: string);
}
