import type { FunctionComponent } from 'react'; import { CardProps } from '@patternfly/react-core'; /** extends CardProps */ export interface ServiceCardProps extends CardProps { /** Service card title */ title: string; /** Service card subtitle */ subtitle?: React.ReactNode; /** Service card description */ description: React.ReactNode; /** Service card icon */ icon: React.ReactNode; /** Optional Service card helper text*/ helperText?: React.ReactNode; /** Optional footer */ footer?: React.ReactElement | null; /** Optional custom OUIA ID */ ouiaId?: string | number; /** Optional flag modifying the card header layout */ isStacked?: boolean; /** Optional flag indicating if the card height fills the available space */ isFullHeight?: boolean; } declare const ServiceCard: FunctionComponent; export default ServiceCard;