import { Debug } from 'interfaces'; export declare const getBody: ({ req }: { req: any; }) => any; export declare const provider: { parse: ({ url, params }: { url: string; params: any; }) => string; }; export declare class Logger { _debug: Debug[]; constructor(debug: Debug[]); error(...args: any[]): void; warning(...args: any[]): void; info(...args: any[]): void; private print; } export declare const decode64: (encodeString: string) => string; export declare function parseJwt(token: string): any; export declare function UUID(input: string): string;