import type { FC } from "react"; import type { IPicture } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент адаптивного изображения с разными источниками * @returns {ReactElement} */ declare const Picture: FC; export type { IPicture }; export { Picture };