import { ServiceLocation, ServiceLocationAddress, ServiceLocationLink, ServiceLocationLocation, ServiceLocationPhone } from '../models'; export declare const isServiceLocationLocation: (loc: ServiceLocation) => loc is ServiceLocationLocation; export declare const isServiceLocationPhone: (loc: ServiceLocation) => loc is ServiceLocationPhone; export declare const isServiceLocationAddress: (loc: ServiceLocation) => loc is ServiceLocationAddress; export declare const isServiceLocationLink: (loc: ServiceLocation) => loc is ServiceLocationLink;