/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PropType } from 'vue';
/**
 * Represents the Object which is passed to the [`ref`](https://vuejs.org/docs/refs-and-the-dom.html)
 * callback of the GridLayoutItem component.
 */
/**
 * @hidden
 */
declare const GridLayoutItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    content: PropType<any>;
    id: PropType<string>;
    col: PropType<number>;
    colSpan: PropType<number>;
    row: PropType<number>;
    rowSpan: PropType<number>;
}>, {}, {}, {
    gridLayoutItemStyles(): {
        gridArea: string;
    };
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    content: PropType<any>;
    id: PropType<string>;
    col: PropType<number>;
    colSpan: PropType<number>;
    row: PropType<number>;
    rowSpan: PropType<number>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { GridLayoutItem };
