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