import { FC } from 'react'; import { IconDefinition } from '../../atoms/Icon'; export declare type ServiceCardProps = { icon?: IconDefinition; heading: string; description?: string; price: string; strikethrough?: string; onAdd: (args?: any) => void; checked: boolean; }; export declare const ServiceCard: FC;