import type { Ref, ShallowRef } from 'vue'; export declare const useEditProvider: () => { editCellKeys: ShallowRef; openEditor: (key: string | string[], values?: Record) => void; closeEditor: (key?: string | string[]) => void; }; export declare const useEditInject: () => { editCellKeys: Ref; openEditor: (key: string) => void; closeEditor: (key?: string | string[]) => void; oldValuesMap: ShallowRef>; };