import type { ComputedRef, Ref } from 'vue'; import type { KottiField } from '../kotti-field/types'; import type { Nullable } from '../types/utilities'; import type { FieldInlineEditElement } from './types'; import { KottiFieldInlineEdit } from './types'; export declare const useAdjustHeight: ({ field, inputRef: _inputRef, props, }: { field: KottiField.Hook.Returns; inputRef: Ref>; props: KottiFieldInlineEdit.PropsInternal; }) => void; export declare const usePreventConfirm: ({ field, props, }: { field: KottiField.Hook.Returns; props: KottiFieldInlineEdit.PropsInternal; }) => { preventConfirm: ComputedRef; };