import type { Plugin } from 'postcss'; import { type ExportTokens } from './css-modules-loader-core'; type Dictionary = { [key: string]: T | undefined; }; export default class FileSystemLoader { private root; private sources; private importNr; private core; tokensByFile: Dictionary; constructor(root: string, plugins?: Plugin[]); fetch(_newPath: string, relativeTo: string, _trace?: string, initialContents?: string): Promise; } export {};