/** * POSTs to Magic's API. */ export declare function post, TResponse>(url: string, secretApiKey: string, body: TBody): Promise>; /** * GETs from Magic's API. */ export declare function get(url: string, secretApiKey: string, params?: any): Promise>;