import React from 'react'; import { CardProps } from '../Card'; export interface SpotlightCardProps { /** The contents of the card. */ children?: CardProps['children']; /** Gives the Spotlight card a title with preset styles. */ title?: React.ReactNode; /** The background image of the card. */ backgroundImage?: CardProps['backgroundImage']; /** * The card's heading. * @defaultValue `Builder Spotlight` */ heading?: CardProps['heading']; } declare const SpotlightCard: ({ children, heading, title, backgroundImage }: SpotlightCardProps) => JSX.Element; export default SpotlightCard;