import { type DynamicIconProps } from '../Images'; export interface ServiceProps { icon: React.ReactNode | DynamicIconProps; title: string; description: string; slug?: string; } export declare function ServiceCard({ icon, title, description, slug }: ServiceProps): import("react/jsx-runtime").JSX.Element;