/**
 * Utility function for writing a raw dbc string to a .dbc file
 * @param file location and name of the dbc file to write to
 * @param fileContent The DBC content that will be loaded into the file
 */
declare const dbcWriter: (file: string, fileContent: string) => void;
export default dbcWriter;
