/** * Finds the closest non-disabled node to the start index, searching forward and backward * @param valueNodes - The nodes to search through * @param startIndex - The index to start searching from * @returns The index of the closest non-disabled node or null if there are no non-disabled nodes */ export declare const findClosestNonDisabledNodeIndex: ( valueNodes: HTMLElement[], startIndex: number, ) => number | null; //# sourceMappingURL=findClosestNonDisabledNodeIndex.d.ts.map