import * as React from "react"; import { LinkifyOptions } from "./index"; export interface LinkifyProps { options?: LinkifyOptions; tagName?: string; } declare class Linkify extends React.Component {} export default Linkify;