/// declare type MainProps = { id: string; title: string; description: string; pricing: string; link: string; gridView?: boolean; onGetInTouch?: (email?: string) => void; }; declare type Props = MainProps; declare const TestService: ({ id, title, description, pricing, link, gridView, onGetInTouch, }: Props) => JSX.Element; export default TestService;