interface ConfigInterface { recursive?: boolean; ignore?: string[]; } export declare class ObjectConverter { static underscoreToCamelCase(object: any, config?: ConfigInterface | undefined): any; static camelCaseToUnderscore(object: any, config?: ConfigInterface | undefined): any; } export {};