import { MistralCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { MistralError } from "../models/errors/mistralerror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Retrieve the signed URL of a specific document. * * @remarks * Given a library and a document in that library, retrieve the signed URL of a specific document.The url will expire after 30 minutes and can be accessed by anyone with the link. */ export declare function betaLibrariesDocumentsGetSignedUrl(client: MistralCore, request: operations.LibrariesDocumentsGetSignedUrlV1Request, options?: RequestOptions): APIPromise>; //# sourceMappingURL=betaLibrariesDocumentsGetSignedUrl.d.ts.map