import type { GriffelResetStyle, GriffelStyle } from '@griffel/core'; import type { FileContext } from '../types'; /** * Linaria v4 emits absolute paths for assets, we normalize these paths to be relative from the project root to be the * same if an assets was used in different files. */ export declare function normalizeAssetPath(path: typeof import('path'), fileContext: FileContext, absoluteAssetPath: string): string; export declare function normalizeStyleRule(path: typeof import('path'), fileContext: FileContext, ruleValue: string | number): string | number; export declare function normalizeStyleRules(path: typeof import('path'), fileContext: FileContext, stylesBySlots: Record | GriffelStyle | GriffelResetStyle): Record;