/** * Skip the 'amount' first elements and return all the others unchanged. * * @param amount * * @category operators/general */ declare const skip: (params?: number) => import("../../types.js").TTransIteratorSyncOrAsync; export { skip };