import { ILocation } from '../../base/interfaces/official'; import { ILocationProperties } from '../../base/official-klasses/Location'; export declare const getState: (instance: ILocation) => ILocationProperties, setState: (instance: ILocation, properties: Partial) => void; declare const LocationBaseClass: { new (): { hash: any; host: any; hostname: any; href: any; readonly origin: Promise; pathname: any; port: any; protocol: any; search: any; assign(url: string): Promise; reload(): Promise; replace(url: string): Promise; toString(): Promise; }; }; export default class Location extends LocationBaseClass implements ILocation { } export {};