import type { BoxProps } from "@twilio-paste/core/box"; import type { IconSize } from "@twilio-paste/core/style-props"; import * as React from "react"; import type { HTMLPasteProps } from "../../types"; export interface IconWrapperProps extends HTMLPasteProps<"span"> { as?: BoxProps["as"]; color?: BoxProps["color"]; display?: BoxProps["display"]; element?: BoxProps["element"]; size?: IconSize; } declare const IconWrapper: React.ForwardRefExoticComponent>; export { IconWrapper };