import { CancelScheduleParam, CancelScheduleResponse, GetScheduleParam, GetScheduleResponse, GetSchedulesParam, GetSchedulesResponse } from './types/Schedule'; /** * 정기결제예약 다건 조회 */ export declare const getSchedules: (access_token: string, params: GetSchedulesParam) => Promise; /** * 빌링키 정기결제예약 취소 */ export declare const cancelSchedules: (access_token: string, params: CancelScheduleParam) => Promise; /** * 정기결제예약 단건 조회 */ export declare const getSchedule: (access_token: string, params: GetScheduleParam) => Promise;