import React from 'react'; declare type Props = { title: string; description: string; pricing: string; link?: string; state?: object; }; declare const ServicePreviewCard: React.MemoExoticComponent<({ title, description, pricing, link, state }: Props) => JSX.Element>; export default ServicePreviewCard;