import type { ReactNode } from 'react'; declare function Card(props: CardProps): JSX.Element; declare namespace Card { var Item: typeof import("./Item").Item; } interface CardProps { style?: any; titleStyle?: any; title?: string; children: ReactNode[]; } export { Card, };