/** * @hidden */ export declare const isGreaterThan: (value: number, other: number) => boolean; /** * @hidden */ export declare const isLessThan: (value: number, other: number) => boolean; /** * @hidden */ export declare namespace ErrorMessage { const findElementNotFound = "[find()]: Element was not found."; const indexOutOfBoundsAt = "[at()]: Index out of bounds."; const indexOutOfBoundsCleave = "[cleave()]: Index out of bounds."; const indexOutOfBoundsCut = "[cut()]: Index out of bounds."; const indexOutOfBoundsInject = "[inject()]: Index out of bounds."; const indexOutOfBoundsInsert = "[insert()]: Index out of bounds."; const indexOutOfBoundsSet = "[set()]: Index out of bounds."; const indexOutOfBoundsSlice = "[slice()]: Index out of bounds."; const indexOutOfBoundsSwap = "[swap()]: Index out of bounds."; const invalidChunkSize = "[chunk()]: Chunk size must be at least one."; const invalidRandomBounds = "[random()]: Upper bound must be greater than or equal to the lower bound."; const invalidRandomBoundsZero = "[random()]: Upper bound must be greater than or equal to zero."; const invalidRangeBounds = "[range()]: The end bound must be greater than or equal to the start."; const invalidRangeStep = "[range()]: The step size cannot be zero."; const invalidSliceBounds = "[slice()]: Invalid slice bounds."; const lastElementNotFound = "[findLast()]: Element was not found."; const noFirstElement = "[first()]: No elements to take one element from."; const noLastElement = "[last()]: No elements to take last element from."; const noMaxElement = "[max()]: Cannot get maximum element from empty sequence."; const noMinElement = "[min()]: Cannot get minimum element from empty sequence."; const unpackAssertion = "[unpack()]: Unpacked value that did not exist."; const defaultPanic: string; } /** * Container for LoDash functions. * @hidden */ export declare const LoDash: { clone: any; cloneDeep: any; isEqual: any; round: any; };