export declare class AddressType {
    /** Οδός */
    street?: string;
    /** Αριθμός */
    number?: string;
    /**  Ταχυδρομικός Κώδικας */
    postalCode: string;
    /** Χώρα */
    city: string;
    constructor(props?: AddressType);
}
