import * as React from 'react'; declare const HrefTypes: ["success", "warning", "error"]; export type HrefType = typeof HrefTypes[number]; export interface HrefProps { type?: HrefType; message?: string; description?: string; width?: string; className?: string; closable?: boolean; hidden?: boolean; children?: React.ReactNode; onClick?: React.MouseEventHandler; dangerouslySetInnerHTML?: any; href?: any; style?: any; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { } declare const NeoHref: CompoundedComponent; export default NeoHref;