/** * Returns the pathname without a potential locale prefix. * * @example * ```tsx * 'use client'; * * import {usePathname} from 'next-intl/client'; * * // When the user is on `/en`, this will be `/` * const pathname = usePathname(); * ``` */ export default function useBasePathname(): string;