/**
 * Split array into a fixed number of segments.
 */
declare function split(array: any, segments?: number): any[];
export default split;
