/**
 * Utility function for Node that allows you to read in a dbc file and output a raw string that can be loaded into
 * the Dbc classes .load function.
 * @param file File to unload
 */
declare const dbcReader: (file: string) => string;
export default dbcReader;
