import type { Report } from './transforms/css-modules'; import type { ModuleMap } from './transforms/adopt-styles'; export interface Stylesheet { source: string; target: string; reports: Report[]; } export interface Plan { stylesheets: Stylesheet[]; modules: Record; } export declare function findStylesheets(targets: string[]): string[]; export declare const targetPath: (stylesheet: string) => string; export declare function plan(targets: string[]): Plan; export declare function write(targets: string[], skip?: Set): Plan; export declare function formatReports(sheets: Stylesheet[], cwd: string): string[];