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