import * as StringCheck from "../../../../sync/check/string"; import * as check from "../../../../sync/check/number"; export declare type PotentiallyUnsafeNumberStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode; export declare function checkPotentiallyUnsafeNumberString(mixed: any): undefined | PotentiallyUnsafeNumberStringResult; export declare type FiniteNumberStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode; export declare function checkFiniteNumberString(mixed: any): undefined | FiniteNumberStringResult; export declare type IntegerStringResult = StringCheck.StringErrorCode | check.IntegerErrorCodeType; export declare function checkIntegerString(mixed: any): undefined | IntegerStringResult; export declare type GreaterThanStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode | check.GreaterThanErrorCode; export declare function checkGreaterThanString(mixed: any, x: number): undefined | GreaterThanStringResult; export declare type GreaterThanOrEqualStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode | check.GreaterThanOrEqualErrorCode; export declare function checkGreaterThanOrEqualString(mixed: any, x: number): undefined | GreaterThanOrEqualStringResult; export declare type LessThanStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode | check.LessThanErrorCode; export declare function checkLessThanString(mixed: any, x: number): undefined | LessThanStringResult; export declare type LessThanOrEqualStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode | check.LessThanOrEqualErrorCode; export declare function checkLessThanOrEqualString(mixed: any, x: number): undefined | LessThanOrEqualStringResult; export declare type RangeStringResult = StringCheck.StringErrorCode | check.RangeErrorCodeType; export declare function checkRangeString(mixed: any, args: { min?: number; max?: number; }): undefined | RangeStringResult; export declare type PositiveStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode | check.PositiveErrorCode; export declare function checkPositiveString(mixed: any): undefined | PositiveStringResult; export declare type NegativeStringResult = StringCheck.StringErrorCode | check.PotentiallyUnsafeNumberErrorCode | check.FiniteNumberErrorCode | check.NegativeErrorCode; export declare function checkNegativeString(mixed: any): undefined | NegativeStringResult; export declare type NonNegativeStringResult = StringCheck.StringErrorCode | check.NonNegativeErrorCodeType; export declare function checkNonNegativeString(mixed: any): undefined | NonNegativeStringResult; export declare type NaturalNumberStringResult = StringCheck.StringErrorCode | check.NaturalNumberErrorCodeType; export declare function checkNaturalNumberString(mixed: any): undefined | NaturalNumberStringResult; export declare type OddStringResult = StringCheck.StringErrorCode | check.IntegerErrorCodeType | check.OddErrorCode; export declare function checkOddString(mixed: any): undefined | OddStringResult; export declare type EvenStringResult = StringCheck.StringErrorCode | check.IntegerErrorCodeType | check.EvenErrorCode; export declare function checkEvenString(mixed: any): undefined | EvenStringResult; export declare type NotOneOfStringResult = StringCheck.StringErrorCode | check.NotOneOfErrorCodeType; export declare function checkNotOneOfString(mixed: any, arr: T[]): undefined | NotOneOfStringResult; export declare type LatitudeStringResult = StringCheck.StringErrorCode | check.LatitudeCodeErrorType; export declare function checkLatitudeString(mixed: any): undefined | LatitudeStringResult; export declare type LongitudeStringResult = StringCheck.StringErrorCode | check.LongitudeCodeErrorType; export declare function checkLongitudeString(mixed: any): undefined | LongitudeStringResult;