import type { FC } from "react"; import type { ILogo } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Логотип * @returns {ReactElement} */ declare const Logo: FC; export type { ILogo, }; export { Logo, };