import { KiotVietClient } from '../client'; import { ReturnListParams, ReturnListResponse, Return } from '../types/return'; export declare class ReturnsHandler { private client; constructor(client: KiotVietClient); /** * Get list of returns with optional filtering and pagination * @param params Query parameters */ list(params?: ReturnListParams): Promise; /** * Get return by ID * @param id Return ID */ getById(id: number): Promise; /** * Get return by code * @param code Return code */ getByCode(code: string): Promise; }