import React, { FC, ReactNode } from 'react'; import type { TextstringValue } from '../../types/textstring'; export declare const TextstringContext: React.Context; export type TextstringProviderProps = { /** * The element that should use the library. */ children?: ReactNode; /** * The language that should be used. */ language?: string; /** * The name of the library. */ libraryName: string; }; declare const TextstringProvider: FC; export default TextstringProvider;