type CutArrayInput = { array: T[]; maxLength: number; }; export declare function cutArray({ array, maxLength }: CutArrayInput): T[]; export {};