/** * @author Timur Kuzhagaliyev * @copyright 2020 * @license MIT */ import React from 'react'; export interface TextPlaceholderProps { minLength: number; maxLength: number; } export declare const TextPlaceholder: React.FC;