export interface FatFormTabPaneMethods { /** * 数据验证 */ validate(): Promise; name: string | number; /** * 渲染 tab, 垃圾 element-ui 的 tab-pane 必须是 tabs 的直接子级 */ renderResult: any; } export interface FatFormTabsContextValue { /** * 注册 tab pane 实例 * @param ins */ register(ins: FatFormTabPaneMethods): () => void; } export declare function provideFatFormTabsContext(value: FatFormTabsContextValue): void; export declare function useFatFormTabsContext(): FatFormTabsContextValue | undefined; //# sourceMappingURL=fat-form-tabs-context.d.ts.map