import type { Cursor } from './Cursor.js'; import type { JsonSpaceProperty } from './JsonSpaceProperty.js'; import type { PageRequest } from './PageRequest.js'; export type PageResponseJsonSpaceProperty = { pageRequest?: PageRequest; nextCursor?: Cursor; prevCursor?: Cursor; results?: Array; totalCount?: number; }; //# sourceMappingURL=PageResponseJsonSpaceProperty.d.ts.map