import { AxiosResponse } from 'axios'; import { FetchDetailResponse, FetchListResponse, FetchOptionResponse, FetchResponse } from '../types/fetchResponse.type'; import * as E from '../types/checkoutService.type'; import * as D from '../dto/checkoutService.dto'; declare const CheckoutService: { getCheckoutPreList: (params: D.CheckoutPreListParams) => Promise>>; getCheckoutPreListOptions: (params: D.CheckoutPreListOptionsParams) => Promise>>; getCheckoutItemPreList: (requesterId: string, params: D.CheckoutItemPreListParams) => Promise>>; getCheckoutItemPreListOptions: (requesterId: string, params: D.CheckoutItemPreListOptionsParams) => Promise>>; putRemoveRequestPreList: (body: D.CheckoutRemoveRequestPreListBody) => Promise>; putRemoveItemPreList: (body: D.CheckoutRemoveItemPreListBody) => Promise>; getCheckoutTransactionList: (params: D.CheckoutTransactionListParams) => Promise>>; getCheckoutTransactionOptions: (params: D.CheckoutTransactionOptionsParams) => Promise>>; getTransactionDetailItemList: (transactionId: string, params: D.CheckoutTransactionDetailItemListParams) => Promise>>; getTransactionDetailItemOptions: (transactionId: string, params: D.CheckoutTransactionDetailItemOptionsParams) => Promise>>; getTransactionDetailItemDetail: (transactionId: string) => Promise>>; getRequesterDetail: (userId: string) => Promise>>; postCreateCheckoutRequest: (body: D.CheckoutRequestBody) => Promise>; putEditCheckoutRequest: (body: D.CheckoutRequestBody) => Promise>; putCancelCheckoutRequest: (requestId: string) => Promise>; putCancelCheckoutStock: (transactionId: string, skuId: string) => Promise>; postResendEmail: (userId: string) => Promise>; putEditEmail: (userId: string, transactionId: string, body: D.CheckoutEditEmailBody) => Promise>; putConfirmCheckoutRequest: (body: D.CheckoutConfirmBody, requestId: string) => Promise>; putVerificationRequest: (body: D.CheckoutConfirmVerificationBody, requestId: string) => Promise>; putHandoverRequest: (body: D.CheckoutHandoverBody, requestId: string) => Promise>; getCheckoutDetailStockList: (requestId: string, skuId: string, params: D.CheckoutDetailStockListParams) => Promise>>; getCheckoutDetailStockOptions: (requestId: string, skuId: string, params: D.CheckoutDetailStockOptionsParams) => Promise>>; getCheckoutApprovalList: (params: D.CheckoutApprovalListParams) => Promise>>; getCheckoutApprovalOptions: (params: D.CheckoutApprovalOptionsParams) => Promise>>; getCheckoutApprovalDetailStockList: (approvalId: string, params: D.CheckoutApprovalDetailStockListParams) => Promise>>; getCheckoutApprovalDetailStockOptions: (approvalId: string, params: D.CheckoutApprovalDetailStockOptionsParams) => Promise>>; putApprovalRequest: (body: D.CheckoutApprovalBody, approvalId: string) => Promise>; getCheckoutHistoryTransactionList: (params: D.CheckoutHistoryTransactionListParams) => Promise>>; getCheckoutHistoryTransactionOptions: (params: D.CheckoutHistoryTransactionOptionsParams) => Promise>>; getCheckoutHistoryItemList: (params: D.CheckoutHistoryItemListParams) => Promise>>; getCheckoutHistoryItemOptions: (params: D.CheckoutHistoryItemOptionsParams) => Promise>>; getCheckoutHistoryDetailItemList: (transactionId: string, params: D.CheckoutHistoryItemListParams) => Promise>>; getCheckoutHistoryDetailItemOptions: (transactionId: string, params: D.CheckoutHistoryItemOptionsParams) => Promise>>; getCheckoutCheckedOutItemList: (params: D.CheckoutCheckedOutItemListParams) => Promise>>; getCheckoutCheckedOutItemOptions: (params: D.CheckoutCheckedOutItemOptionsParams) => Promise>>; getCheckoutCheckedOutRequesterList: (params: D.CheckoutCheckedOutRequesterListParams) => Promise>>; getCheckoutCheckedOutItemDetailStockList: (requestId: string, skuId: string, params: D.CheckoutCheckedOutItemDetailStockListParams) => Promise>>; getCheckoutCheckedOutItemDetailStockOptions: (requestId: string, skuId: string, params: D.CheckoutCheckedOutItemDetailStockOptionsParams) => Promise>>; getCheckoutVerificationItemList: (transactionId: string, params: D.CheckoutItemVerificationListParams) => Promise>>; getCheckoutVerificationItemOptions: (transactionId: string, params: D.CheckoutItemVerificationOptionsParams) => Promise>>; getCheckoutVerificationDetailStockList: (transactionId: string, skuId: string, params: D.CheckoutItemVerificationDetailStockListParams) => Promise>>; getCheckoutVerificationDetailStockOptions: (transactionId: string, skuId: string, params: D.CheckoutItemVerificationDetailStockOptionsParams) => Promise>>; getCheckoutHandoverItemList: (requestId: string, params: D.CheckoutItemHandoverListParams) => Promise>>; getCheckoutHandoverItemOptions: (requestId: string, params: D.CheckoutItemHandoverOptionsParams) => Promise>>; getCheckoutConfirmationItemList: (transactionId: string, params: D.CheckoutItemConfirmationListParams) => Promise>>; getCheckoutConfirmationItemOptions: (transactionId: string, params: D.CheckoutItemConfirmationOptionsParams) => Promise>>; }; export default CheckoutService;