declare class API { private username; private password; constructor(auth: { key_id: string; key_secret: string; }); protected get: (route: string, options?: object | undefined) => Promise; protected post: (route: string, data: object) => Promise; protected update: (route: string, data: object) => Promise; protected delete: (route: string, id: string) => Promise; } export default API;