/**
 * @file wass-rct-ui
 * @description A reusable Title component that supports dynamic heading levels.
 * @author Web Apps Software Solutions
 * @copyright © 2024 Web Apps Software Solutions. All rights reserved.
 * @license MIT
 * @repository https://github.com/WebAppSoftNK/wass-rct-ui
 */
import * as React from "react";
import { ReactNode } from "react";
export interface GridBoxCellProps {
    className?: string;
    children?: ReactNode;
    colStart?: number;
    colFromEnd?: number;
    colSpan?: number;
    rowStart?: number;
    rowFromEnd?: number;
    rowSpan?: number;
}
declare const GridBoxCell: React.FC<GridBoxCellProps>;
export default GridBoxCell;
