declare type Rest_ = <T>(arr: T[]) => T[];
/**
 * Creates new array without the first element.
 *
 * @param arr Initial array
 * @returns New array
 */
declare const rest_: Rest_;
export { rest_ };
export default rest_;
