import c from 'centra'; export declare type UserLogger = { info: (msg: string) => void; warn: (msg: string) => void; error: (msg: string) => void; }; /** Custom post function based on centra */ export declare function post(apiPath: string, apiKey: string, sendObj: object, logStuff: boolean, logger: UserLogger): Promise; /** Custom get function based on centra */ export declare function get(url: string, logger: UserLogger): Promise;