/// declare type Props = { id: string; image: string; name: string; serviceTitle: string; pricing: string; lastActive: string; sharedService: number; acceptRate: string; link: string; state?: object; previews: string[]; onRequest: (id: string) => void; }; declare const CommunityServiceCard: ({ id, image, name, serviceTitle, pricing, lastActive, sharedService, acceptRate, link, state, previews, onRequest, }: Props) => JSX.Element; export default CommunityServiceCard;