import { MerchantLocation } from './merchantLocation';
export declare class OtherLocation {
    private name;
    private storeLocation;
    getName: () => string;
    setName: (value: string) => void;
    getStoreLocation: () => MerchantLocation;
    setStoreLocation: (value: MerchantLocation) => void;
}
