import { type IconProps as BaseIconProps } from "../_shared"; export interface IconProps extends BaseIconProps { name: string; } export declare function CustomIcon({ name, ...props }: IconProps): import("react/jsx-runtime").JSX.Element; export default CustomIcon;