import { CardProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Card: ({ children, content }: { content: ReactNode; children: (props: CardProps) => ReactNode; }) => ReactNode; export default Card;