import { type Response } from '../../sbvr-api/sbvr-utils.js'; import type { UploadPart } from '../index.js'; import type { ODataActionArgs } from '../../sbvr-api/actions.js'; export type BeginMultipartUploadResponse = { [key: string]: { uuid: string; uploadParts: UploadPart[]; }; }; declare const beginUploadAction: ({ request, tx, id, req, }: ODataActionArgs) => Promise; export default beginUploadAction;