interface IOptions { info?: { table?: { [name: string]: string; }; }; logger?: { prefix?: string; }; } export declare function initSociosGlobals(pOptions?: IOptions): void; export {};