import { Entity } from '../@shared/entity'; import { ICreateBody, ICreateResponse } from './interfaces/create.interface'; import { IDeleteParams } from './interfaces/delete.interface'; import { IFindParams, IFindResponse } from './interfaces/find.interface'; import { IGetByLogisticParams, IGetByLogisticResponse } from './interfaces/get-by-logistic.interface'; import { IUpdateBody, IUpdateParams, IUpdateResponse } from './interfaces/update.interface'; export declare class LogisticasRemessas extends Entity { delete(params: IDeleteParams): Promise; find(params: IFindParams): Promise; getByLogistic(params: IGetByLogisticParams): Promise; create(body: ICreateBody): Promise; update(params: IUpdateParams & IUpdateBody): Promise; }