import { FunctionImportRequestBuilder, DeSerializers, DefaultDeSerializers } from '@sap-cloud-sdk/odata-v2'; import { Result } from './Result'; /** * Type of the parameters to be passed to [[accept]]. */ export interface AcceptParameters { /** * Business Solution Quotation. */ businessSolutionQuotation?: string | null; } /** * Accept. * @param parameters - Object containing all parameters for the function import. * @returns A request builder that allows to overwrite some of the values and execute the resulting request. */ export declare function accept(parameters: AcceptParameters, deSerializers?: DeSerializersT): FunctionImportRequestBuilder, Result>; /** * Type of the parameters to be passed to [[deleteNotProcessedChangeItems]]. */ export interface DeleteNotProcessedChangeItemsParameters { /** * Bus Soln Quotation Is Completed. */ busSolnQuotationIsCompleted?: string | null; /** * Business Solution Quotation. */ businessSolutionQuotation?: string | null; } /** * Delete Not Processed Change Items. * @param parameters - Object containing all parameters for the function import. * @returns A request builder that allows to overwrite some of the values and execute the resulting request. */ export declare function deleteNotProcessedChangeItems(parameters: DeleteNotProcessedChangeItemsParameters, deSerializers?: DeSerializersT): FunctionImportRequestBuilder, Result>; export declare const functionImports: { accept: typeof accept; deleteNotProcessedChangeItems: typeof deleteNotProcessedChangeItems; }; //# sourceMappingURL=function-imports.d.ts.map