import { type AssetItemProps } from '@galacean/editor-ui'; export interface BasicAssetType { id: string; name: string; isSubAsset?: boolean; path?: string; vitualPath?: string; [key: string]: any; getMetaConfig: () => any; } export interface PickableAssetItemProps extends AssetItemProps { } export declare const PickableAssetItem: import("react").ForwardRefExoticComponent>;