/** * Input Component * * Shadcn/UI Input component for form text inputs. * Bundled within hazo_llm_api for PromptEditor. */ import * as React from 'react'; export interface InputProps extends React.InputHTMLAttributes { } declare const Input: React.ForwardRefExoticComponent>; export { Input }; //# sourceMappingURL=input.d.ts.map