import { Component } from "../../types"; export declare const Icon: (icon: string, ...classList: string[]) => Component; export declare const enum CommonIconType { ArrowDown = 0, Done = 1, Close = 2, Download = 3, Edit = 4, Delete = 5 } export declare const CommonIcon: (icon: CommonIconType) => string;