declare module "@postlight/parser" { interface IParser { parse(url: string, options: { contentType: "markdown" | "html" | "text"; }): Promise<{ author: string | undefined; content: string | undefined; }>; } const parse: IParser["parse"]; } //# sourceMappingURL=postlight-parser.d.ts.map