import { Element } from "parse5"; import { MicroformatRoot, PropertyType, ParsingOptions } from "../types"; interface ParseMicroformatOptions extends ParsingOptions { valueType?: PropertyType; valueKey?: string; } export declare const parseMicroformat: (node: Element, options: ParseMicroformatOptions) => MicroformatRoot; export {};