import { ParsedStyle } from '../types'; /** * Validates a Figma variable path. * @param variablePath The variable path string to validate * @returns true if the path is valid, false otherwise */ export declare function isValidFigmaVariablePath(variablePath: string): boolean; /** * Extracts a variable ID from a Figma variable string. * @param value The Figma variable string (e.g., '$[colors/primary]') * @returns The variable ID if valid, null otherwise */ export declare function extractFigmaVariableId(value: string): string | null; /** * Creates a Figma variable style object. * @param property The style property name * @param variableId The Figma variable ID * @param options Additional options (e.g., opacity) * @returns A ParsedStyle object */ export declare function createFigmaVariableStyle(property: string, variableId: string, options?: { opacity?: number; }): ParsedStyle;