import { CreateOrderNoteRequestType, DeleteOrderNoteRequestType, ListOrderNotesRequestType, OrderNote, OrderNoteByIdRequestType } from './types'; import { AxiosInstance } from 'axios'; export default class OrderNotes { private readonly client; constructor(client: AxiosInstance); create({ order_id, data }: CreateOrderNoteRequestType): Promise; getById({ order_id, note_id }: OrderNoteByIdRequestType): Promise; list({ order_id, params, }: ListOrderNotesRequestType): Promise<{ data: OrderNote[]; count: number; totalPages: number; }>; deleteById({ order_id, note_id, data: { force }, }: DeleteOrderNoteRequestType): Promise; }