7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
|
import type { Locale } from '.';
|
||
|
export type LocaleContextProps = Locale & {
|
||
|
exist?: boolean;
|
||
|
};
|
||
|
declare const LocaleContext: import("react").Context<LocaleContextProps | undefined>;
|
||
|
export default LocaleContext;
|