import type { FC } from "react"; import type { IGrid } from "./config/types/index.d.mts"; import { GridItem } from "./ui/GridItem.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент сетки * @returns {ReactElement} */ declare const Grid: FC; export type { IGrid }; export { Grid, GridItem };