/** * @license * Copyright (c) 2000 - 2026 Vaadin Ltd. * * This program is available under Vaadin Commercial License and Service Terms. * * * See https://vaadin.com/commercial-license-and-service-terms for the full * license. */ import { GridColumn } from '@vaadin/grid/src/vaadin-grid-column.js'; /** * `` is a helper element for the `` * that provides a clickable and themable edit icon. * * Typical usage is in a custom `` inside a ``. * * #### Example: * ```html * * * * * ... * ``` */ declare class CrudEditColumn extends GridColumn { /** * The arial-label for the edit button */ ariaLabel: string; } declare global { interface HTMLElementTagNameMap { 'vaadin-crud-edit-column': CrudEditColumn; } } export { CrudEditColumn };