import { type Page } from 'puppeteer'; export declare function fetchGet(url: string, extraHeaders: Record): Promise; export declare function fetchPost(url: string, data: Record, extraHeaders?: Record): Promise; export declare function fetchGraphql(url: string, query: string, variables?: Record, extraHeaders?: Record): Promise; export declare function fetchGetWithinPage(page: Page, url: string): Promise; export declare function fetchPostWithinPage(page: Page, url: string, data: Record, extraHeaders?: Record): Promise;