import { ApiAuthKey, SMSserviceAuth } from "../types/api.type"; /** * `Authentication Builder` for NCP Services * * @name AuthBuilder */ export declare const AuthBuilder: { /** * * @param accessKey * @param secretKey * @returns * Naver Cloud Platform API account authentication */ API: (accessKey: string, secretKey: string) => ApiAuthKey; /** * * @param phone * @param serviceId * @returns * SMS Service param authentication */ SMS: (phone: string, serviceId: string) => SMSserviceAuth; };