/** * Copyright Aquera Inc 2025 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../../internal/nile-element'; /** * Nile grid-cell component. * * @tag nile-grid-cell-item * */ export declare class NileGridCellItem extends NileElement { /** * The styles for nile-grid-cell-item * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; colspan: number; rowspan: number; resizable: boolean; connectedCallback(): void; private onHandlePointerDown; render(): TemplateResult; } export default NileGridCellItem; declare global { interface HTMLElementTagNameMap { 'nile-grid-cell-item': NileGridCellItem; } }