import type * as React from 'react'; export interface InputProps extends React.InputHTMLAttributes { ref?: React.Ref; } declare function TextInput({ className, type, ref, ...props }: InputProps): import("react/jsx-runtime").JSX.Element; declare namespace TextInput { var displayName: string; } export { TextInput }; //# sourceMappingURL=text-input.d.ts.map