import type { FC } from "react"; import type { IContentPlaceholder } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент заглушки * @returns {ReactElement} */ declare const ContentPlaceholder: FC; export type { IContentPlaceholder }; export { ContentPlaceholder };