import { TypeScriptExportType } from '../types/ProjectConfig'; /** * Generates TypeScript enum or union type file based on icon names. * @param svgDirectory - Path to the directory containing SVG files * @param outputFile - Path where the TypeScript file should be generated * @param exportName - Name of the exported enum/type * @param exportType - Type of export: 'enum' or 'union' * @param prefix - Optional prefix to add to CSS class names * @param verbose - If true, logs output information */ export declare function generateTypeScriptEnums(svgDirectory: string, outputFile: string, exportName: string, exportType: TypeScriptExportType, prefix?: string, verbose?: boolean): Promise;