type Primitive = string | boolean | number;
export default class Parser {
    private content;
    constructor(content: string);
    parse(): [string, Primitive | Primitive[] | Record<string, Primitive>];
}
export {};
