import type { TaglibLookup } from "@marko/compiler/babel-utils"; import { type Parsed } from "../../parser"; import { type Extracted } from "../../util/extractor"; export interface ExtractStyleOptions { parsed: Parsed; lookup: TaglibLookup; } /** * Iterate over the Marko CST and extract all the stylesheets. */ export declare function extractStyle(opts: ExtractStyleOptions): Map;