import type { ScopedNameGenerator } from "./scopedNameGenerator";
export type ScopedExports = {
css: string;
keyframes: Record<string, string>;
classes: Record<string, string>;
};
export declare function addScopes(css: string, generateScopedName: ScopedNameGenerator): ScopedExports;