import { DocumentType } from '../models'; import { BaseResponse } from './base-response'; export declare class FreightShipmentDocumentsResponse extends BaseResponse { documents: { type: DocumentType; /** * Base64-encoded image of the document */ image: string; format: 'pdf'; }[]; }