import type { LocaleAdapter } from "rune-lab/core"; export interface ParaglideRuntime { locales?: readonly string[]; getLocale?(): string; setLocale?(locale: string): void | Promise; } export declare function createParaglideAdapter( paraglideRuntime: ParaglideRuntime, ): LocaleAdapter;