import React, { DetailedHTMLProps, HTMLAttributes } from 'react'; import 'jb-mobile-input'; import { BaseProps } from 'jb-input/react'; import { type JBMobileInputWebComponent } from 'jb-mobile-input'; interface JBMobileInputType extends DetailedHTMLProps, JBMobileInputWebComponent> { class?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { 'jb-mobile-input': JBMobileInputType; } } } export declare const JBMobileInput: React.ForwardRefExoticComponent & import("jb-input/react").JBInputAttributes & { className?: string; children?: React.ReactNode | React.ReactNode[]; } & React.RefAttributes>; export type Props = BaseProps & {}; export {};