import { LinguiConfig } from '@lingui/conf'; /** * Generate all locale-specific paths for a given base path. * For example, for path "/products" and locales ["en", "cs"], it returns: * ["/products", "/en/products", "/cs/products"] * * @param config Lingui configuration containing locales and fallbackLocales * @param path The base path to localize (e.g., "/products") * @param withDefault Whether to include the default (non-localized) path * @returns An array of localized paths */ declare function localePaths(config: Readonly, path: string, withDefault?: boolean): string[]; export { localePaths };