interface ILocationSearchParam {
    [key: string]: string | number | boolean | undefined;
}
export interface GetLocationSearchProps {
    params: ILocationSearchParam;
}
export declare const getLocationSearch: ({ params }?: GetLocationSearchProps) => string;
export declare const getLocationHref: ({ origin, pathname, params, }: {
    origin: string;
    pathname: string;
} & GetLocationSearchProps) => string;
export {};
