import React from 'react'; declare type TitleCountProps = { align: "center" | "left" | "right"; aria?: { [key: string]: string; }; className?: string; count?: number; dark?: boolean; data?: { [key: string]: string; }; id?: string; title?: string; size?: "lg" | "sm"; }; declare const TitleCount: (props: TitleCountProps) => React.ReactElement; export default TitleCount;