import { FigmaColor, FigmaFontName, FigmaLineHeight, Shadow } from '../types'; export declare function degreesToRadians(degrees: number): number; export type ParsedValue = { value: number | string | FigmaColor | FigmaFontName | FigmaLineHeight | Shadow[]; variant: 'preset' | 'arbitrary' | 'figma-variable'; variableId?: string; }; export declare function parseValue(value: string): ParsedValue | null; export declare function parseArbitraryValue(value: string, options?: { allowNegative?: boolean; allowUnits?: boolean; allowColors?: boolean; allowUrls?: boolean; requireValidColor?: boolean; allowFigmaVariables?: boolean; allowNumbers?: boolean; }): ParsedValue | null; export declare function parseRatioValue(value: string): number | null; export declare function percentToDecimal(value: string): number | null;