declare const getFirstAndLast: <T>(array: T[]) => [T, T];
declare const reverse: <T>(array: T[]) => T[];
export { getFirstAndLast, reverse };
