///
type DeepWriteable = { -readonly [P in keyof T]: DeepWriteable };
declare type Recordable = Record;
declare type I18nGlobalTranslation = {
(key: string): string;
(key: string, locale: string): string;
(key: string, locale: string, list: unknown[]): string;
(key: string, locale: string, named: Record): string;
(key: string, list: unknown[]): string;
(key: string, named: Record): string;
};
interface ImportMetaEnv {
VITE_APP_SDK: string;
}
declare const $t: I18nGlobalTranslation;