import { default as React } from 'react'; interface IconContainerProps { children: React.ReactNode; size?: 'sm' | 'md' | 'lg' | 'xl'; variant?: 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'neutral'; shape?: 'square' | 'rounded' | 'circle'; animation?: 'none' | 'float' | 'pulse' | 'bounce'; className?: string; } export declare const IconContainer: React.FC; export {}; //# sourceMappingURL=icon-container.d.ts.map