import { IEntityCreateDto, Nullable } from "../../entities"; import { IAppFileConfig, IFilePayload, MulterFileWithUrl } from "../../misc"; import { IVendorAdvanceEntity } from "../../entities/interface/vendor_advance.entity.interface"; export type IVendorAdvanceCreateExclude = "amountPaid" | "status" | "appliedAmount" | "advanceDocument"; export interface IVendorAdvanceCreateDto extends Omit, IVendorAdvanceCreateExclude> { advanceDocument?: Nullable; files: IFilePayload[]; } export type VendorAdvanceDocumentFieldNames = ["advanceDocument"]; export declare const vendorAdvanceFileConfig: IAppFileConfig[];