/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * Represents the available types for the `GridContextMenuAnchorPart`.
 *
 * The available anchor parts are:
 * - `head`
 * - `body`
 */
export declare enum GridContextMenuAnchorPart {
    head = "head",
    body = "body"
}
/**
 * Represents the available predefined items names for the `GridContextMenu` items.
 */
export declare enum GridContextMenuItemNames {
    create = "create",
    edit = "edit",
    delete = "delete",
    select = "select",
    copySelection = "copySelection",
    copySelectionNoHeaders = "copySelectionNoHeaders",
    paste = "paste",
    reorderRow = "reorderRow",
    exportPDF = "exportPDF",
    exportExcel = "exportExcel",
    separator = "separator",
    sortAsc = "sortAsc",
    sortDesc = "sortDesc",
    pinRow = "pinRow",
    pinTop = "pinTop",
    pinBottom = "pinBottom",
    unpin = "unpin"
}
