import * as React from 'react'; declare interface FeatureBoxProps { iconSvg?: React.ReactNode; heading?: string; text?: string; url?: string; hasBorder?: boolean; size?: string; backgroundColor?: string; } export default class FeatureBox extends React.Component { render(): JSX.Element; }