import { type ParseNode } from '../html/index.js'; import { type IoFilter, type MdEnv } from '../io/index.js'; import type { Registry } from '../wing/index.js'; export interface FilterListOptions { readonly registry: Registry; readonly extra?: readonly IoFilter[]; readonly parse?: (html: string) => readonly ParseNode[]; readonly allowLocalUrls?: boolean; } export declare function mdEnvOf(registry: Registry, allowLocalUrls?: boolean): MdEnv; export declare function ioFiltersOf(options: FilterListOptions): readonly IoFilter[]; //# sourceMappingURL=filters.d.ts.map