import type { PostcssPluginError, SourceMap } from "./types";
export declare function attachScopeForStyleSelectors(code: string, hash: string, sourceFile: string, map: SourceMap | undefined): Promise<{
    error: PostcssPluginError | undefined;
    code: string;
    mappings: string;
}>;
