export declare class Validations {
    /**
     * Property to control if input is required or not.
     */
    required: number;
    /**
     * Property for minLength value
     */
    minLength: string;
    /**
     * Property for maxLength value
     */
    maxLength: string;
}
