export default isPositionWithinRange; /** * * @param {*} position //assumed to be a 0 based "caretPosition" * @param {*} range //0 based inclusive range * @param {*} sequenceLength * @param {*} includeEdges - (default false) whether or not to say */ declare function isPositionWithinRange(position: any, range: any, sequenceLength: any, includeStartEdge: any, includeEndEdge: any): boolean;