export declare const STATUSES: { readonly 400: { readonly type: "Bad request"; readonly title: "Не удалось загрузить страницу"; readonly description: "Возможно, в ссылке опечатка. Проверьте и попробуйте снова"; readonly button: { readonly label: "На главную"; }; }; readonly 401: { readonly type: "Unauthorized"; readonly title: "Не удаётся войти"; readonly description: "Проверьте логин и пароль или попробуйте снова"; readonly button: { readonly label: "Оставить заявку"; }; }; readonly 403: { readonly type: "Forbidden"; readonly title: "Доступ к FinAI ограничен"; readonly description: "Вы можете запросить право доступа в Друге"; }; readonly 404: { readonly type: "Not found"; readonly title: "Такой страницы нет"; readonly description: import("react/jsx-runtime").JSX.Element; readonly button: { readonly label: "На главную"; }; }; readonly 409: { readonly type: "Conflict"; readonly title: "Конфликт запросов"; readonly description: import("react/jsx-runtime").JSX.Element; }; readonly 500: { readonly type: "Internal server error"; readonly title: "Страница недоступна"; readonly description: import("react/jsx-runtime").JSX.Element; readonly button: { readonly label: "На главную"; }; }; readonly 502: { readonly type: "Bad gateway"; readonly title: "Не удалось загрузить страницу"; readonly description: "Обновите страницу или попробуйте зайти позже"; readonly button: { readonly label: "На главную"; }; }; readonly 503: { readonly type: "Service unavailable"; readonly title: "На FinAI проводятся технические работы"; readonly description: "Обновите страницу или зайдите позже"; }; }; export type STATUS_CODES = keyof typeof STATUSES; export declare const UNKNOWN_STATUS_OBJ: { readonly type: "Unknown"; readonly title: "Похоже страница недоступна"; readonly description: "Попробуйте обновить страницу."; };