import React, { SVGAttributes } from 'react'; export interface RecentProps extends SVGAttributes { /** * Additional className for svg root */ className?: string; /** * Icon size * * @default 24 */ size?: 12 | 16 | 24 | 32; } export declare const Recent: React.ForwardRefExoticComponent>;