import { FC, PropsWithChildren } from 'react'; import { BastCardContent } from './BastCardContent'; import { BastCardImage } from './BastCardImage'; import { BastCardTitle } from './BastCardTitle'; type TBastCardProps = PropsWithChildren; type TBastCardStaticProps = { Title: typeof BastCardTitle; Image: typeof BastCardImage; Content: typeof BastCardContent; }; declare const BastCard: FC & TBastCardStaticProps; export { BastCard };