export declare const mockTranslations: { en: { 'common.hello': string; 'common.bye': string; 'home.title': string; }; es: { 'common.hello': string; 'common.bye': string; 'home.title': string; }; }; export declare const mockSingleLocaleTranslations: { 'common.hello': string; 'common.bye': string; }; export declare const mockMultipleLocales: { code: string; }[]; export declare const mockSingleLocale: { code: string; }[]; export declare const createMockResponse: (data: unknown, ok?: boolean, status?: number, statusText?: string) => { ok: boolean; status: number; statusText: string; json: () => Promise; }; export declare const createMockErrorResponse: (status: number, statusText: string) => { ok: boolean; status: number; statusText: string; json: () => Promise; };