import { Endpoint } from '../../types/endpoint'; export declare type postOAuthVerifyParameters = { projectCode: string; redirectUrl: string; }; export declare const postOAuthVerify: Endpoint; export declare type postOAuthVerifyResponse = { token: string; }; export declare type postOAuthParameters = { generateToken: string; serverSecretToken: string; redirectUrl: string; }; export declare const postOAuth: Endpoint; export declare type postOAuthResponse = { token: string; }; //# sourceMappingURL=oauth.d.ts.map