/* tslint:disable */
/* eslint-disable */
export function parse_to_json(contents: string): any;
export function version(): string;
export function parse_to_uint32array(contents: Uint8Array): Uint32Array;
export enum TokenTypes {
  Key = 0,
  Value = 1,
  Section = 2,
  CommentIndicator = 3,
  CommentValue = 4,
}
