import * as interfaces from './smartrequest.interfaces.js'; /** * the interfae for FormFieldData */ export interface IFormField { name: string; type: 'string' | 'filePath' | 'Buffer'; payload: string | Buffer; fileName?: string; contentType?: string; } export declare const postFormData: (urlArg: string, optionsArg: interfaces.ISmartRequestOptions, payloadArg: IFormField[]) => Promise>; export declare const postFormDataUrlEncoded: (urlArg: string, optionsArg: interfaces.ISmartRequestOptions, payloadArg: { key: string; content: string; }[]) => Promise>;