/**
 * @module Theme/Icons
 * @author Alan Rodas Bonjour <alanrodas@gmail.com>
 */
import { JSX, ReflectionKind } from 'typedoc';
export type IconType = ReflectionKind | 'chevronDown' | 'checkbox' | 'menu' | 'search' | 'chevronSmall' | 'anchor' | 'folder' | 'alertNote' | 'alertTip' | 'alertImportant' | 'alertWarning' | 'alertCaution';
export type IconRecord = Record<IconType, () => JSX.Element>;
//# sourceMappingURL=IconType.d.ts.map