import { OnInit } from "@angular/core";
import { CoreFormInput } from "../core-form-input/core-form-input.component";
import { AbstractControl } from "@angular/forms";
import { CoreFormDropDown } from "../core-form-dropdown/core-form-dropdown";
export declare class CoreFormValidationOnlyNumber implements OnInit {
    private inputHost;
    private dropDownHost;
    private validationOnlyNumberMessage;
    private host;
    ngOnInit(): any;
    constructor(inputHost: CoreFormInput, dropDownHost: CoreFormDropDown, validationOnlyNumberMessage: string);
    static OnlyNumberValidator(c: AbstractControl): {
        [s: string]: boolean;
    };
}
