import type { LoginCredentials, UpdateProfileInputType, UserType } from "@/types"; export declare const getIsFirstUser: (apiBaseUrl: string) => Promise<{ signUp: boolean; }>; export declare const signUpFirstUser: (credential: LoginCredentials, apiBaseUrl: string) => Promise; export declare const enableUser: (id: string, apiBaseUrl: string) => Promise>; export declare const disableUser: (id: string, apiBaseUrl: string) => Promise>; export declare const updateUserProfile: (data: UpdateProfileInputType, apiBaseUrl: string) => Promise<{ data: UserType; }>; export declare const getMe: (apiBaseUrl: string) => Promise<{ data: UserType; }>; //# sourceMappingURL=index.d.ts.map