import type { Envelope } from '../../core/envelope/parser'; import type { TokenAttribute } from '../../core/protocol/tokenizer'; export type BodyStructure = { childNodes?: BodyStructure[]; description?: string; disposition?: string; dispositionParameters?: Record; encoding?: string; envelope?: Envelope; id?: string; language?: string[]; lineCount?: number; location?: string; md5?: string; parameters?: Record; part?: string; size?: number; type: string; }; type BodyNode = TokenAttribute | BodyNode[] | null; export declare const parseBodystructure: (entry: BodyNode) => BodyStructure; export {}; //# sourceMappingURL=parser.d.ts.map