import { StartLoginResponse } from "../../client/auth/types/StartLoginResponse"; import { OvokClient } from "../../client/ovok-client"; import { LoginBody } from "../../types"; type StartLoginProps = { client: OvokClient; body: LoginBody; codeChallenge: string; }; export declare const startLogin: ({ client, body, codeChallenge, }: StartLoginProps) => Promise; export {};