import { z } from 'zod'; declare const GridPaginationSchema: z.ZodObject<{ page: z.ZodOptional; pageSize: z.ZodOptional; }, z.core.$strip>; type GridPagination = z.infer; declare const GridPaginationDefaults: Required; type GridRows = { rows: T[]; rowCount?: number; }; type GridRowsAsync = { rows: T[]; rowCount: Promise; }; export { type GridPagination as G, type GridRows as a, GridPaginationDefaults as b, GridPaginationSchema as c, type GridRowsAsync as d };