export declare function divideArray<T>(props: {
    array: T[];
    capacity: number;
}): T[][];
