import type { CustomTheme } from '../custom-theme'; import type { MergeTheme } from '../merge-theme'; import type { StyleContextValue } from '../style-context'; import type { NumberValueWithPercentage } from '../theme'; import type { ThemeContextValue } from '../theme-context'; export declare type EmValue = V | keyof MergeTheme['spacing']; export declare type EmReturnType = V extends `${number}%` ? string : number; export declare function em(value: V, context: StyleContextValue, theme: ThemeContextValue): EmReturnType; //# sourceMappingURL=em.d.ts.map