declare namespace HTTPResponse { type PaginatedResponse = { page_info: { has_next_page: boolean; }; edges: { cursor: string; node: Node; }[]; }; } export { HTTPResponse };