import { Slots } from 'vue'; /** * @description: 获取插槽以防止空错误 */ export declare function getSlot(slots: Slots, slot?: string, data?: any): import("vue").VNode[] | null; /** * 扩展 插槽 * @param slots * @param excludeKeys */ export declare function extendSlots(slots: Slots, excludeKeys?: string[]): any;