/**
 * Shell EVLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** Address of the Shell Recharge Location */
export interface Address {
    /** Street Name and Number of the Shell Recharge Location */
    streetAndNumber?: string;
    /** Postal Code of the Shell Recharge Location */
    postalCode?: string;
    /** City name of the Shell Recharge Location */
    city?: string;
    /** ISO 3166 Alpha-2 Country Code of the Shell Recharge Location */
    country?: string;
}
export declare const addressSchema: Schema<Address>;
