import type { FunctionComponent } from 'react'; interface QuickStartTileHeaderProps { /** Name for the header */ name: string; /** Id for the QuickStart */ quickStartId?: string; /** Callback for when the name of the QuickStart is clicked */ onSelect: (e: React.FormEvent | React.MouseEvent) => void; } declare const QuickStartTileHeader: FunctionComponent; export default QuickStartTileHeader;