import { type Readable } from 'svelte/store'; /** * Svelte composable that returns a readable store containing the current * pathname with the locale segment removed. * * Reacts to browser back/forward navigation via the `popstate` event. * Falls back to an empty string during server-side rendering. * * @returns A readable store containing the current pathname without the locale prefix. * * @example * ```svelte * * * * Dashboard * * ``` */ export declare const usePathname: () => Readable;