import { CardProps } from '../Card'; import { ProjectPreviewProps } from './ProjectPreview'; interface ProjectsSpotlightProps { /** * The card heading. * @defaultValue `Projects Spotlight` */ heading?: CardProps['heading']; /** * A list of projects to be featured. * @defaultValue `[]` */ projects: ProjectPreviewProps[]; } declare const ProjectsSpotlight: ({ heading, projects }: ProjectsSpotlightProps) => JSX.Element; export { ProjectsSpotlight }; export type { ProjectsSpotlightProps };