import { database_id, page_id } from "../types";
declare const notionApi: (method: "get" | "post" | "patch", type: "databases" | "pages", id: database_id | page_id, query?: string | undefined, body?: object | string) => Promise<any>;
export default notionApi;
