import { Stat } from "../../types/customerProfileTypes"; interface CustomerProfileTraitProps { stat: Stat; } declare const CustomerProfileTrait: ({ stat }: CustomerProfileTraitProps) => JSX.Element; export default CustomerProfileTrait;