import { IconProps } from "./_types"; interface ScrollMoreIconProps extends IconProps { bgColor?: string; arrowColor?: string; bgOpacity?: number; arrowOpacity?: number; } declare const ScrollMoreIcon: ({ size, bgColor, arrowColor, bgOpacity, arrowOpacity, ...other }: ScrollMoreIconProps) => import("react/jsx-runtime").JSX.Element; export default ScrollMoreIcon;