/// declare type Props = { title: string; description: string; pricing: string; link?: string; state?: object; }; declare const ServicePreviewCard: ({ title, description, pricing, link, state, }: Props) => JSX.Element; export default ServicePreviewCard;