import type { JBNationalInputWebComponent } from 'jb-national-input'; interface JBNationalInputType extends React.DetailedHTMLProps, JBNationalInputWebComponent> { "class"?: string; "type"?: string; "label"?: string; "message"?: string; "placeholder"?: string; "value"?: string; "initialValue"?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { 'jb-national-input': JBNationalInputType; } } } export {};