import type { NumberArrayConstructor, NumberArrayType } from '../utils/index.ts'; export interface XSequentialFillFromToOptions { /** * Allows to specify the type of array to use. * @default Float64Array */ ArrayConstructor?: ArrayConstructorType; } export interface XSequentialFillFromToParameters { from: number; to: number; size: number; } export declare function xSequentialFillFromTo(parameters: XSequentialFillFromToParameters, options?: XSequentialFillFromToOptions): NumberArrayType; //# sourceMappingURL=xSequentialFillFromTo.d.ts.map