import { emptyFunction } from '../utils/functions';
import { DOMStringListMock } from './dom-string-list-mock';
export declare class LocationMock implements Location {
    readonly ancestorOrigins: DOMStringListMock;
    hash: string;
    host: string;
    hostname: string;
    href: string;
    readonly origin = "";
    pathname: string;
    port: string;
    protocol: string;
    search: string;
    assign: typeof emptyFunction;
    reload: typeof emptyFunction;
    replace: typeof emptyFunction;
}
