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