import type { Group, Extension } from "./types"; export declare type ParsedResult = { content: string; groups: Group[]; extensions: Extension[]; }; export declare function PARSE(txt: string): ParsedResult;