import { FormText } from '../../Components';
import { ValidationRule } from '../../IValueInputElement';
export declare function restrictMinimumLength(minLength: number, errorMessage?: FormText): ValidationRule<string>;
export declare function restrictMaximumLength(maxLength: number, errorMessage?: FormText): ValidationRule<string>;
