import { MarkdownDomSelector } from './markdown-dom-selector';
export interface CheerioOptionsInterface {
    xmlMode?: boolean;
    decodeEntities?: boolean;
    lowerCaseTags?: boolean;
    lowerCaseAttributeNames?: boolean;
    recognizeCDATA?: boolean;
    recognizeSelfClosing?: boolean;
    normalizeWhitespace?: boolean;
    withStartIndices?: boolean;
    withEndIndices?: boolean;
    ignoreWhitespace?: boolean;
    _useHtmlParser2?: boolean;
}
export interface MarkdownExtractorOptions {
    selectors: MarkdownDomSelector[];
    metadataDelimiter?: string;
    cheerioOptions?: CheerioOptionsInterface;
}
