import { Ref } from 'vue'; type TableInput = { activeInputId: Ref; setActiveInput: (id: string) => void; clearActiveInput: () => void; getInputState: (isEdit: boolean) => 'edit' | 'view'; }; export declare function provideTableInput(): { activeInputId: Ref; setActiveInput: (id: string) => string; clearActiveInput: () => void; getInputState: (isEdit: boolean) => "edit" | "view"; }; export declare function useTableInput(): TableInput; export {};