import { SmrtObject } from '@happyvertical/smrt-core'; import { AssetTypeOptions } from './types'; export declare class AssetType extends SmrtObject { name: string; description: string; constructor(options?: AssetTypeOptions); /** * Get asset type by slug * * @param slug - The slug to search for * @returns AssetType instance or null */ static getBySlug(_slug: string): Promise; } //# sourceMappingURL=asset-type.d.ts.map