import { TabbarLevelConfig, ExpandConfig, LevelType } from './types'; /** * 默认层级配置 */ export declare const DEFAULT_LEVEL_CONFIG: Record; /** * 获取展开配置 */ export declare const getExpandConfig: () => ExpandConfig; /** * 默认数据项配置 */ export declare const DEFAULT_ITEMS: { all: { id: string; shop_id: number; parent_id: number; name: any; slug: string; icon: string; }; search: { id: string; shop_id: number; parent_id: number; name: any; text: any; slug: string; key: string; icon: string; customClick: boolean; }; expand: { id: string; shop_id: number; parent_id: number; key: string; icon: string; name: string; slug: string; customClick: boolean; }; }; /** * 获取层级对应的添加项配置 */ export declare const LEVEL_ADD_ITEMS: Record;