import * as IShared from '../../../shared/interface'; export declare const Route = "npf"; export interface IProviderPaymentDocument { document_header_id: string; value: number; discount_value?: number | null; } export interface IProviderPaymentRequest { provider_id: string; client_id: string | null; documents: IProviderPaymentDocument[]; total: number; } export interface IRepository { create(params: IProviderPaymentRequest[]): Promise; } export type IController = IShared.IEntityWithUserToken;