import { HTMLElementTree } from '../application/use-case/html-parse.use-case';
export interface HtmlParsedResult {
    values: Record<string, string | string[]>;
    parsed: HTMLElementTree;
}
/**
 * This function is used to extract the values from the parsed HTML object.
 * @param htmlParsed - The parsed HTML object
 * @returns An object containing the values and the parsed HTML object
 */
export declare const getValueHtmlParse: (htmlParsed: any) => HtmlParsedResult;
