export interface RawTransform { type: string; blockName: string; selector?: string; schema?: Record | ((args: Record) => Record); isMatch: (node: Element) => boolean; transform?: (node: Node, handler: Function) => unknown; } export type NodeFilterFunction = (node: Node, doc: Document, schema?: Record) => void; //# sourceMappingURL=types.d.ts.map