import React from 'react'; export interface IconSet { icons: Array; } export interface IconMoonProps { iconSet: IconSet; name: string; color?: string; size?: number; strokeWidth?: number; offset?: number; } export interface IconMap { name: string; paths: Array; } declare const IconMoon: React.FC; export declare function iconList(iconSet: IconSet): any[] | null; export default IconMoon;