/** * Copyright (c) 2019, salesforce.com, inc. * All rights reserved. * SPDX-License-Identifier: MIT * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT */ import type { RouteInstance } from '../routerUtils/types.js'; /** * Sets a history state. * @param {string} path - query to set * @param {object} route - history state object */ export declare function set(path: string, route?: RouteInstance): void; /** * Replaces the current history state. * @param {string} path - query to use as a replacement * @param {object} route - history state object */ export declare function replace(path: string, route?: RouteInstance): void; //# sourceMappingURL=historyUtils.d.ts.map