/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { CountryRestriction } from './countryRestriction';
import { NetworkRestriction } from './networkRestriction';
import { PartnerSiteRestriction } from './partnerSiteRestriction';
import { ShellSiteRestriction } from './shellSiteRestriction';
export interface LocationRestriction {
    countryRestrictions?: CountryRestriction;
    networkRestrictions?: NetworkRestriction[];
    shellSiteRestrictions?: ShellSiteRestriction[];
    partnerSiteRestrictions?: PartnerSiteRestriction[];
}
export declare const locationRestrictionSchema: Schema<LocationRestriction>;
