import { JSX } from 'react'; /** * Props customizing the component. * * @public */ export type QuickStartCardProps = { /** The modal link title */ modalTitle?: string | JSX.Element; /** The link to docs title */ docsLinkTitle?: string | JSX.Element; /** The link to docs */ docsLink?: string; /** The video to play on the card * @deprecated This will be removed in the future, please use `additionalContent` instead */ video?: JSX.Element; /** Additional card content */ additionalContent?: JSX.Element; /** A quickstart image to display on the card */ image: JSX.Element; /** The card description*/ cardDescription?: string; /** A component used to download a quickStart image*/ downloadImage?: JSX.Element; }; /** * A component to display Quick Start info on the homepage. * * @public */ export declare const Content: (props: QuickStartCardProps) => JSX.Element;