import React from 'react'; export type ServiceCardRowAction = { copy?: boolean; open?: boolean; reveal?: boolean; }; export type ServiceCardRow = { label?: string; value: string; href?: string; copyValue?: string; isSecret?: boolean; monospace?: boolean; actions?: ServiceCardRowAction; }; export type ServiceCardTag = { label: string; }; export interface ServiceCardProps { title: string; subtitle?: string; icon?: React.ReactNode; tag?: ServiceCardTag; rows: ServiceCardRow[]; className?: string; } export declare function ServiceCard({ title, subtitle, icon, tag, rows, className }: ServiceCardProps): React.JSX.Element; //# sourceMappingURL=service-card.d.ts.map