import React from "react"; interface TitleProps { id: string; title: string; plugin: string; refresh: () => void; } declare const Title: (props: TitleProps) => React.JSX.Element; export default Title;