import type { TableData } from '../types'; export type LimitPipe = (params: { limit?: number; }) => ((tableData: TableData) => TableData); export declare const limit: LimitPipe;