import { NotionResponse } from "./types"; declare function request({ endpoint, creds: { token }, body }: { endpoint: string; creds: { token: string; }; body?: { limit?: number; pageId: string; }; }): Promise; export default request;