interface NumbersIconProps { value: number | string; size?: number; color?: string; textColor?: string; pathColor?: string; customBackgroundPath?: string; type?: 'default' | 'spark'; } declare const NumbersIcon: ({ value, size, type, color, textColor, pathColor, customBackgroundPath, }: NumbersIconProps) => import("react/jsx-runtime").JSX.Element; export default NumbersIcon;