import { NumberType, Type } from "../typings/NumberType"; export declare const isValidCSSUnit: (color: string) => boolean; export declare const isType: (n?: NumberType | undefined, type?: Type | undefined) => boolean; /** * Check to see if input passed in is a percentage type */ export declare const isPercentage: (n: NumberType) => boolean; /** * Check to see if input passed in is a number type */ export declare const isNumber: (n: NumberType) => boolean; /** * Check to see if input passed in is a decimal type */ export declare const isDecimal: (n: NumberType) => boolean; //# sourceMappingURL=checker.d.ts.map