import React from 'react'; import { type IconProps } from './core'; interface IconCurvedUpArrowProps extends IconProps { base?: '12' | '16' | '24'; } export declare function IconCurvedUpArrow({ base, ...props }: IconCurvedUpArrowProps): React.JSX.Element; export {};