type Input = Record; interface Rule { rule: string; fn: (data: any) => any; } export declare const transformations: Rule[]; export declare function extractTokensFromFigma(figmaJson: Input): string; export declare function slashToCamelCase(str: string): string; export {};