export declare function arrayMoveMutable<ValueType>(array: ValueType[], fromIndex: number, toIndex: number): void;
export declare function arrayMoveImmutable<T>(array: T[], fromIndex: number, toIndex: number): T[];
