8 lines
327 B
TypeScript
8 lines
327 B
TypeScript
import * as React from 'react';
|
|
import { Field } from '../Field';
|
|
interface TextInputProps extends Field.InputProps {
|
|
}
|
|
declare const TextInput: React.ForwardRefExoticComponent<TextInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
export { TextInput };
|
|
export type { TextInputProps };
|
|
//# sourceMappingURL=TextInput.d.ts.map
|