interface PartialPath {
    pathname: string;
    query?: Record<string, string>;
    hash?: string;
}
export declare function resolveQuery(query?: Record<string, any>): string | undefined;
export declare function resolvedPath(to: string | PartialPath): import("react-router-dom").Path;
export {};
