import { Nullable } from "instill-sdk"; export * from "./checkIsDefinition"; export * from "./createInstillAxiosClient"; export * from "./getInstillApiErrorMessage"; export * from "./getInstillAPIClient"; export * from "./getInstillModelAPIClient"; export * from "./getInstillArtifactAPIClient"; export type ChangePasswordPayload = { oldPassword: string; newPassword: string; }; export declare function changePasswordMutation({ payload, accessToken, }: { payload: ChangePasswordPayload; accessToken: Nullable; }): Promise; export declare function authLogoutAction({ accessToken, }: { accessToken: Nullable; }): Promise; export declare function authValidateTokenAction({ accessToken, }: { accessToken: Nullable; }): Promise; export type AuthLoginActionPayload = { username: string; password: string; }; export type AuthLoginActionResponse = { accessToken: string; }; export declare function authLoginAction({ payload, }: { payload: AuthLoginActionPayload; }): Promise; //# sourceMappingURL=index.d.ts.map