/** * Returns all items in the input array except those specified in the second parameter. */ declare const without: (arr: any[], ...values: any[]) => any[]; export default without;