/// import type { WaysDomainConfig } from './next-domains'; type ClientRouter = { replace: (href: string, options?: { scroll?: boolean; }) => void; push: (href: string, options?: { scroll?: boolean; }) => void; }; export declare const navigateClientLocaleHref: (router: ClientRouter, href: string, options: { locale: string; domains?: WaysDomainConfig[]; replace?: boolean; historyOnly?: boolean; }) => void; export {};