declare const API: { get: (url: string) => Promise; post: (url: string, body: object) => Promise; delete: (url: string) => Promise; }; export { API };