import { FigmaColor } from '../types'; export declare const COLORS: Record; export declare const FONT_SIZES: Record; export declare const FONT_WEIGHTS: Record; export declare const SPACING: Record; export declare const RADIUS: Record; export declare const SHADOWS: Record; export declare const GRADIENT_TRANSFORMS: { readonly 'to-t': readonly [readonly [1, 0, 0], readonly [0, -1, 1]]; readonly 'to-r': readonly [readonly [1, 0, 0], readonly [0, 1, 0]]; readonly 'to-b': readonly [readonly [1, 0, 0], readonly [0, 1, 0]]; readonly 'to-l': readonly [readonly [-1, 0, 1], readonly [0, 1, 0]]; readonly 'to-tr': readonly [readonly [0.7071, -0.7071, 0], readonly [0.7071, 0.7071, 0]]; readonly 'to-tl': readonly [readonly [-0.7071, -0.7071, 1], readonly [0.7071, -0.7071, 0]]; readonly 'to-br': readonly [readonly [0.7071, 0.7071, 0], readonly [-0.7071, 0.7071, 0]]; readonly 'to-bl': readonly [readonly [-0.7071, 0.7071, 1], readonly [-0.7071, -0.7071, 1]]; }; export declare const TEXT_ALIGNMENTS: { readonly left: "LEFT"; readonly center: "CENTER"; readonly right: "RIGHT"; readonly justify: "JUSTIFIED"; };