import type { FC } from "react"; import type { IModal } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент модального окна * @returns {ReactElement} */ declare const Modal: FC; export type { IModal }; export { Modal, };