import type { ProLayoutTabsInstance } from '../../../propTypes'; /** * @description 获取 ProLayout 标签页实例的 Hook(类似 Form.useForm) * @returns [ProLayoutTabsInstance] 标签页实例 * @example * ```tsx * // 在 ProLayout children 中使用 * const [layoutTabs] = useProLayoutTabs(); * * // 使用实例方法 * layoutTabs.addTab({ * code: 'PolicyInput', * name: '投保单录入', * extra: { customData: '自定义数据' } * }); * ``` */ export declare function useProLayoutTabs(): [ProLayoutTabsInstance];