import { Icon, IconsData } from './types';
export { DevIcon } from './components/DevIcon';
export type { DevIconProps } from './components/DevIcon';
declare class DevIcons {
    private icons;
    getAllIcons(): IconsData;
    getIcon(name: string): Icon | undefined;
    hasIcon(name: string): boolean;
    getIconKeys(): string[];
    addIcon(name: string, icon: Icon): void;
    private validateSvg;
}
declare const devIcons: DevIcons;
export default devIcons;
