export declare const validNumber: (num: any, min: any, max: any) => {
    showError: boolean;
    errorMsg: string;
};
