import { StoreState } from "../store/types"; import { CellValue } from "../types"; import { UnwrapRef } from '@vue/composition-api'; export declare const useWatchRowData: (rowId: string, state: StoreState, defaultValue: T, config: [string | string[], (rowData: Record) => T] | ((rowData: Record) => T), inputHandler?: (value: UnwrapRef) => void, immediate?: boolean) => { unused: boolean; value: UnwrapRef; };