import { type QRL } from '@builder.io/qwik'; import { type Locale } from '../paraglide/runtime.js'; export declare function localeToName(locale: string, displayLocale?: Locale): string; export interface LocaleSelectorProps { locales?: string[]; onValueChange$?: QRL<(locale: string) => void>; } export declare const LocaleSelector: import("@builder.io/qwik").Component;