import 'dotenv/config'; import { DeepPartial } from 'typeorm'; export declare type ConfigOpts = { exchange: TExchange; auth: { token: string; required: boolean; }; api: { port: number | string; host: string; }; logs: { directory: string; }; }; export declare const useConfig: (config?: DeepPartial> | null) => ConfigOpts;