import type { FC } from "react"; import type { ILoop } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент цикла. Используется для вывода нескольких одинаковых элементов * @returns {ReactElement} */ declare const Loop: FC; export type { ILoop }; export { Loop };