import type { ComponentTokens } from './schema'; export declare class ParseError extends Error { readonly filePath: string; constructor(message: string, filePath: string); } export interface ParsedFigmaFile { filePath: string; importStyle: 'named' | 'namespace'; componentName: string; importSource: string; connectSubComponent?: string; figmaUrl: string; figmaFileKey: string; figmaNodeId: string; example: string; propsMapping: Record; tokens?: ComponentTokens; } export declare function parseFigmaFile(content: string, filePath: string): ParsedFigmaFile; //# sourceMappingURL=parser.d.ts.map