/**
 * Valid types of inputs
 */
type AllowedValueTypes = string | number | Array<string | number>;
/**
 * Check if a given value is allowed
 * @param value The value to check for
 * @returns True if the type is allowed, false otherwise
 */
export declare const isAllowedValue: (value: AllowedValueTypes) => boolean;
/**
 * Compare two values if they are equal
 * @param a The first value to compare
 * @param b The second value to compare
 * @returns True if the values are equal, false otherwise
 */
export declare const compareValues: (a: AllowedValueTypes, b: AllowedValueTypes) => boolean;
export {};
