import type { LoginDto } from '../models/LoginDto'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class AuthService { /** * @param requestBody * @returns any * @throws ApiError */ static authControllerLogin(requestBody: LoginDto): CancelablePromise; /** * @returns any * @throws ApiError */ static authControllerValidate(): CancelablePromise; /** * @returns any * @throws ApiError */ static authControllerChanllenge(): CancelablePromise; }