import { OvokClient } from "../../client/ovok-client"; import { AuthResponse } from "../../types"; type ExchangeCodeProps = { client: OvokClient; sessionCode: string; codeVerifier: string; } & ({ type: "Patient"; } | { type: "Practitioner"; tenantCode: string; }); export declare const exchangeCode: ({ ...props }: ExchangeCodeProps) => Promise; export {};