export type DataType = 'json' | 'yaml' | 'yml'; export declare const logger: { info(message: any): void; debug(message: any): void; error(message: any): void; }; export declare function parsePayload(content: string, type?: DataType): any; export declare function getConfigObject(file: string): any;