import { AssetItem } from '../../type/assetListItem'; export interface OfficialAssetCategory { id: string; name: string; parentId: string | null; children: OfficialAssetCategory[]; } export declare const getOfficialAssetsOld: (query: { type: number; pageNum?: number; pageSize?: number; name?: string; officialCategoryId?: number; }) => Promise[]>; export declare const getOfficialAssetsCategoryOld: () => Promise; export declare const getOfficialAssets: (query: { categoryIds: number[]; }) => Promise[]>; export declare const getOfficialAssetsCategory: () => Promise; export declare const OfficialAssetListApi: { getOfficialAssetsOld: (query: { type: number; pageNum?: number; pageSize?: number; name?: string; officialCategoryId?: number; }) => Promise[]>; getOfficialAssetsCategoryOld: () => Promise; getOfficialAssets: (query: { categoryIds: number[]; }) => Promise[]>; getOfficialAssetsCategory: () => Promise; };