export type TagExtractAllWithAttrsResult = { content: string; attrs: Record; }; /** * Extracts all non-overlapping `...` blocks and parsed opening-tag attributes. * Expects: attributes are quoted (`key="value"` or `key='value'`). */ export declare function tagExtractAllWithAttrs(text: string, tag: string): TagExtractAllWithAttrsResult[]; //# sourceMappingURL=tagExtractAllWithAttrs.d.ts.map