import type { FC } from "react"; import type { IContainer } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент контейнера * @returns {ReactElement} */ declare const Container: FC; export type { IContainer }; export { Container };