import { StatItemProps } from './StatItem/StatItem'; export interface RequestToBuildProps { /** Name of project/idea */ heading: string; /** Description of the idea that is up for builds */ description: string; /** List of statistics that should be displayed, like Want?, Build, Builing */ stats: StatItemProps[]; /** "Build this project" button click handler */ onBuildClick: () => void; /** "Learn More" button click handler */ onLearnMoreClick: () => void; } declare const RequestToBuild: ({ heading, description, stats, onBuildClick, onLearnMoreClick, }: RequestToBuildProps) => JSX.Element; export default RequestToBuild;