export declare function camelCaseToDash(string: string): string;
export declare function createFolder(path: string): Promise<void>;
export declare function fetchSVGURL(id: string): Promise<any>;
export declare function writeToFile(filename: string, data: string): Promise<void>;
interface FigmaNode {
    id: string;
    name: string;
}
export declare function findAllByValue(obj: any, valueToFind: string): FigmaNode[];
export declare function toPascalCase(str: string): string;
export declare const normalizeName: (name: string) => string;
export declare function toCamelCase(str: string): string;
export declare function fetchFigmaData(): Promise<any>;
export {};
