import { restFetch } from '@skzz/platform/shared/fetch/platform'; import { FirstParameter } from '@vunk/core'; export declare const rCaptcha: () => Promise<{ captchaId: string; captcha: string; }>; export declare const rUserInfo: () => Promise; export declare const logout: () => Promise>; export declare const loginByPassword: (data: FirstParameter) => Promise; export declare const rMenus: (client?: string) => Promise<{ title: string; name: string; hideClose: number; modelId: string; display: 0 | 1; icon: string; tree: string; dir: string; path: string; component: string; parentMenuId: string; menuId: string; id: string; seq: number; }[]>; export declare const rTAInfo: () => Promise<{ showTenant: boolean; showApplication: boolean; defaultTenantId: string; defaultApplicationId: string; tenants: (import("@vunk/skzz").TenantInfo & { applications: import("@vunk/skzz").ApplicationInfo[]; })[]; selfTenant: import("@vunk/skzz").TenantInfo; user: import("@vunk/skzz").UserInfo; }>;