import type { FC } from "react"; import type { IBtn } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент кнопки * @returns {ReactElement} */ declare const Btn: FC; export type { IBtn, }; export { Btn, };