export declare const DEFAULT_COLORS: Record; /** * Convert KERN style properties to a Tailwind CSS class string. * * Handles shorthands (e.g., `p` → `padding`), value aliases (e.g., `md` → `16px`), * color mapping, and responsive/pseudo variants. * * @param styles - Key-value pairs of KERN style properties * @param colors - Optional color map override (defaults to {@link DEFAULT_COLORS}) * @returns Space-separated Tailwind class string */ export declare function stylesToTailwind(styles: Record, colors?: Record): string; export declare function pxToTw(prefix: string, v: string): string; export declare function colorToTw(prefix: string, v: string, colors?: Record): string; export declare function fsTw(v: string): string; export declare function fwTw(v: string): string; export declare function addPx(v: string): string; export declare function cssKebab(s: string): string;