import { ProIcon } from './types'; export type IconNode = [string, Record, IconNode[]]; export interface IconData { name: string; tags: string[]; category: string; deprecated?: boolean; alternativeIcon?: string; } export declare function createIcon({ name, tags, category, deprecated, alternativeIcon }: IconData, nodes: IconNode[]): ProIcon;