import type React from "react"; import type { IconProps, IconSize } from "./types.js"; export interface BaseIconProps extends IconProps { viewBoxSize?: IconSize; paths?: string[]; } export type BaseIconRefType = SVGSVGElement; export declare const BaseIcon: React.ForwardRefExoticComponent & React.RefAttributes>;