import * as axios from 'axios'; import BaseRoute from '../Abstract/BaseRoute.js'; declare class DamRoute extends BaseRoute { getSubscription: () => Promise>; updateDamSubscription: (data: any) => Promise>; getAsset: (id: any) => Promise>; getAssets: (collectionId?: number, dataFilter?: {}) => Promise>; searchAssets: (dataFilter?: {}) => Promise>; createAssets: (data: any) => Promise>; updateAssets: (data: any) => Promise>; deleteAssets: (ids: any) => Promise>; getCollection: (id: any) => Promise>; getCollections: (collectionId?: number, dataFilter?: {}) => Promise>; searchCollections: (dataFilter?: {}) => Promise>; createCollections: (data: any) => Promise>; updateCollections: (data: any) => Promise>; deleteCollections: (ids: any) => Promise>; moveToFolder: (data: any) => Promise>; downloadCollections: (ids: any) => Promise>; } export { DamRoute as default };