/**
 * Provides a mockable layer between the tools below and window.location.
 */
export declare class LocationService {
    /**
     * The pathname part of the URL.
     */
    get pathname(): string;
    /**
     * The port part of the URL.
     */
    get port(): string;
    /**
     * The hostname part of the URL.
     */
    get hostname(): string;
    /**
     * The protocol part of the URL.
     */
    get protocol(): string;
}
