import { TextInputProps } from 'react-admin'; type SmartTextInputProps = { maxLength?: number; } & TextInputProps; declare function SmartTextInput({ multiline, ...props }: SmartTextInputProps): JSX.Element; export { SmartTextInput }; export type { SmartTextInputProps }; //# sourceMappingURL=SmartTextInput.d.ts.map