import type { ComputedRef, Slots } from 'vue'; import type { BasicTableProps, FetchParams } from '../types/table'; import type { FormProps } from '../../../..components/BzForm'; export declare function useTableForm(propsRef: ComputedRef, slots: Slots, fetch: (opt?: FetchParams | undefined) => Promise, getLoading: ComputedRef): { getFormProps: ComputedRef>; replaceFormSlotKey: (key: string) => string; getFormSlotKeys: ComputedRef; handleSearchInfoChange: (info: Recordable) => void; };