import { FC, HTMLAttributes, PropsWithChildren } from "react"; interface NvGridProps extends PropsWithChildren, HTMLAttributes { /** Represents string for creating a react component */ tag?: string; /** Additional class name for the component */ className?: string; } /** * Functional component for rendering a grid layout. * * @param {string} tag - Represents string for creating a react component. * @param {string} className - Additional class name for the component. * @returns {ReactElement} A grid layout element. */ declare const NvGrid: FC; export default NvGrid;