export interface Config {
    port: number;
    host: string;
    privateKey: string | undefined;
    rpcUrl: string;
    databasePath: string;
    carStoragePath: string;
    logLevel: string;
    pandoraAddress: string | undefined;
}
export declare function createConfig(): Config;
//# sourceMappingURL=config.d.ts.map