import { GraphJson, GraphMeta } from '../gml/types'; import { DlDocument } from './types'; /** * Parse a UCINet DL format string into a structured document. * * @param content - The .dl file content * @returns Parsed DL document */ export declare const parseDl: (content: string) => DlDocument; /** * Options for converting DL to JSON. */ export interface DlToJsonOptions { /** Metadata to include in output */ meta: Omit; /** Override directed detection (default: true for DL format) */ directed?: boolean; } /** * Convert a parsed DL document to normalized JSON format. * * @param doc - Parsed DL document * @param document * @param options - Conversion options * @returns Graph in normalized JSON format */ export declare const dlToJson: (document: DlDocument, options: DlToJsonOptions) => GraphJson; //# sourceMappingURL=parse.d.ts.map