export declare function parseGFA(file: string): { nodes: { id: string; length: number; sequence: string; tags: Record; }[]; links: { source: string; target: string; strand1?: string; strand2?: string; cigar: string; tags: Record; }[]; paths: { name: string; path: string; rest: string[]; }[]; header: Record[]; id: string; };