import { DeleteResponse } from "../../../../types/common"; declare const _default: (app: any) => any; export default _default; /** * @schema AdminUploadsRes * type: object * required: * - uploads * properties: * uploads: * type: array * description: "Uploaded files details." * items: * type: object * required: * - url * properties: * url: * description: The URL of the uploaded file. * type: string * format: uri */ export type AdminUploadsRes = { uploads: { url: string; }[]; }; /** * @schema AdminDeleteUploadsRes * type: object * required: * - id * - object * - deleted * properties: * id: * type: string * description: The file key of the upload deleted * object: * type: string * description: The type of the object that was deleted. * default: file * deleted: * type: boolean * description: Whether or not the items were deleted. * default: true */ export type AdminDeleteUploadsRes = DeleteResponse; /** * @schema AdminUploadsDownloadUrlRes * type: object * required: * - download_url * properties: * download_url: * description: The Download URL of the file * type: string */ export type AdminUploadsDownloadUrlRes = { download_url: string; }; export * from "./create-upload"; export * from "./delete-upload"; export * from "./get-download-url";