import { default as React } from 'react'; type IconSize = 'sm' | 'md' | 'lg' | 'xl'; type IconContext = 'button' | 'toolbar' | 'control' | 'default'; interface IconWrapperProps { children: React.ReactNode; size?: IconSize; context?: IconContext; className?: string; 'aria-hidden'?: boolean; role?: string; } declare const _default: React.NamedExoticComponent; export default _default; //# sourceMappingURL=IconWrapper.d.ts.map