import { OAuthResponse } from "../../types/Authentication"; type AuthenticationArguments = { enterpriseId: string; enterpriseSecret: string; authenticationUrl?: string; }; export declare const authenticate: ({ enterpriseId, enterpriseSecret, authenticationUrl, }: AuthenticationArguments) => () => Promise; export {};