import type { SaleDetailMachineCodePrintAction } from './components/DetailActions/types'; interface RemotePrintActionsResponse { machine_code_print_info_v2?: SaleDetailMachineCodePrintAction[]; } export interface SaleDetailInternalNote { id: string | number; content: string; [key: string]: any; } export interface SaleDetailInternalNotesResponse { list?: SaleDetailInternalNote[]; [key: string]: any; } declare const getInternalNotesByScheduleEvent: (params: { schedule_event_id: string | number; skip?: number; num?: number; }) => Promise; declare const addInternalNote: (params: { schedule_event_id: string | number; content: string; }) => Promise; declare const editInternalNote: (params: { id: string | number; content: string; }) => Promise; declare const removeInternalNote: (params: { id: string | number; }) => Promise; declare const getWristbandList: (params: { order_id: string; }, options: { headers: { 'Shop-Id': number | string; }; }) => Promise; declare const getMachineCode: (params: { order_id: string; tag: string; }, options: { headers: { 'Shop-Id': number | string; }; }) => Promise; declare const getRemotePrintActions: (params: { order_id: string; }, options: { headers: { 'Shop-Id': number | string; }; }) => Promise; declare const updateMachineCodeHolder: (id: number | string, params: Record) => Promise; declare const getDiscountCardHolderList: (params: { skip: number; num: number; customer_id: number | string; form_id: number | string; }) => Promise; declare const getDiscountCardHolderFormDetail: (formId: number | string) => Promise; export { getWristbandList, getMachineCode, getRemotePrintActions, getDiscountCardHolderList, getDiscountCardHolderFormDetail, updateMachineCodeHolder, getInternalNotesByScheduleEvent, addInternalNote, editInternalNote, removeInternalNote, };