import { Credentials, MeResponse, Oauth2Options, PropertyKey } from './kakao.interface'; export declare namespace KakaoSDK { const getOauthUri: (options: Oauth2Options) => string; const getCredentials: ({ client_id, client_secret, redirect_uri }: Oauth2Options, code: string) => Promise; const getMe: (secure_resource: boolean, property_keys: PropertyKey[], access_token: string) => Promise; }