/** * Composable for inline double-click label editing. * Shared by card / collapse / condition / condition-node / descriptions / * fieldset / splitter / tab / step containers. * * @param isDesign - function returning whether design mode is active * @param inputSelectorPrefix - CSS class prefix for the edit input (e.g. "card-edit-input") */ export declare function useInlineEdit(isDesign: () => boolean, inputSelectorPrefix: string): { editingId: import('vue').Ref; editingText: import('vue').Ref; startEditName: (element: any) => void; finishEditName: (element: any) => void; };