import type { Result } from "@adviser/cement"; export interface MimeBlock { readonly preBegin: string | undefined; readonly begin: string | undefined; readonly content: string; readonly end: string | undefined; readonly postEnd: string | undefined; } export declare function mimeBlockParser(mime: string): MimeBlock[]; export declare function filterOk(results: Result[]): T[];