import { type InitOptions, type TFunction, type i18n } from '@nerimity/i18lite'; import { type ParentComponent } from 'solid-js'; export type TransProviderActions = { addResources(lng: string, ns: string, resources: any): i18n; changeLanguage(lng: string): Promise; getI18next(): i18n; }; export declare const useTransContext: () => [TFunction, TransProviderActions]; export declare const TransProvider: ParentComponent<{ instance?: i18n; lng?: string; options?: InitOptions; }>; //# sourceMappingURL=TransProvider.d.ts.map