import { AuthResponse, RefreshParam, SignInParam } from './types/Auth'; /** * API Key 방식으로 로그인 */ export declare const signIn: ({ api_key }: SignInParam) => Promise; /** * 토큰 재발급 */ export declare const refreshToken: ({ refresh_token }: RefreshParam) => Promise; declare const _default: { signIn: ({ api_key }: SignInParam) => Promise; refreshToken: ({ refresh_token }: RefreshParam) => Promise; }; export default _default;