export declare enum AdjustmentOperationBasic { adding = "Adding", subtracting = "Subtracting", multiplyingBy = "Multiplying By", dividingBy = "Dividing By", modulo = "Computing the Modulo With" } /** * Parse a value of unknown type as a number or return undefined if the value is non-numeric. * @param value The value to parse as a number. */ export declare function parseNumber(value: unknown): number | undefined; /** * Parse a value of unknown type as a number or throw an error if the value is non-numeric. * @param value The value to parse as a number. * @param inputName The name of the variable/property from which the value was obtained. */ export declare function parseNumberOrThrow(value: unknown, inputName: string): number;