import React from "react"; type NewFeatureProps = { readonly message?: string; readonly description?: string; }; declare const NewFeature: (props: NewFeatureProps) => React.JSX.Element; export default NewFeature;