import type { ReactNode } from 'react'; import React from 'react'; import type { To } from 'react-router'; import type { CardExProps } from '../CardEx.js'; /** Props for {@link SimpleCard}. */ export interface SimpleCardProps extends CardExProps { desc?: ReactNode; headline?: ReactNode; href?: string; iconImage?: string; interactionVariant?: 'button' | 'card'; media?: string; small?: boolean; subtitle?: string; to?: To; } /** Compact card with headline, description, optional media, and button or card interaction. */ export declare const SimpleCard: React.FC; //# sourceMappingURL=SimpleCard.d.ts.map