import { ComputedRef, Ref } from 'vue'; import { ComponentNode } from '../types/canvas'; import { CanvasRetrieve } from '../../../../types/openapi'; export default function ({ id, usedInSectionId, when_used_in_section, }: { id: Ref; usedInSectionId: Ref; when_used_in_section: Ref; }): ComputedRef<{ hasSomethingEditable: boolean; canEdit: boolean; canRemove: boolean; canDuplicate: boolean; }>;