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