import React from "react";
import type { IconKey } from "../types";
export interface DevIconProps extends Omit<React.SVGAttributes<SVGElement>, "name"> {
    /** The name of the icon to display */
    name: IconKey;
    /** Optional size in pixels (both width and height) */
    size?: number;
    /** Optional className for additional styling */
    className?: string;
}
export declare const DevIcon: React.FC<DevIconProps>;
export default DevIcon;
