/// declare type CountCard = Readonly<{ title: string; description: string; }>; export declare type CountsCardProps = Readonly<{ cards: ReadonlyArray; }>; export declare const CountsCard: ({ cards }: CountsCardProps) => JSX.Element; export {};