/**
 * Shell SmartPay APILib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** Object containing address details/elements */
export interface Loc {
    /** The station’s full street address, including building number */
    street?: string;
    /** The station’s postcode */
    pc?: string;
    /** The city the station is located within */
    city?: string;
    /** The region the station is located within */
    region?: string;
    /** The name of the country (in English) the station is located within */
    country: string;
    /** The two-letter ISO 3166 country code of the country the station is located within */
    ccode: string;
}
export declare const locSchema: Schema<Loc>;
