import type { CardProps } from '@mui/material'; import type { ReactNode } from 'react'; import React from 'react'; import type { To } from 'react-router'; /** Props for {@link FullWidthCard}. */ export interface FullWidthCardProps extends CardProps { cardIsButton?: boolean; desc?: ReactNode; href?: string; linkText?: string; media?: string; name: ReactNode; small?: boolean; to?: To; } /** Full-width promotional card with optional media, description, and navigation. */ export declare const FullWidthCard: React.FC; //# sourceMappingURL=FullWidthCard.d.ts.map