import { Brand } from '../service'; /** * @deprecated 请使用 t 函数 * @returns */ export declare function useT(): { (zh: string, en: string): string; (zh: string): string; }; export declare function t(zh: string, en: string): string; export declare function t(zh: string): string; export declare function brandText(brand: keyof Brand): string; export declare function currencyText(): "¥" | "HK $" | "US $";