import { IconComponentType, WithChildrenProp } from '../utils'; export interface AppendedIconProps extends WithChildrenProp, Partial { /** * This provides the space between the icon and the children */ iconAndTextGap?: number; /** * This value adds a padding to the icon's parent container and bumps up the icon's height by the offset */ iconOffset?: number; /** * Can set the positioning of the icon relative to children, default is `left` */ iconPosition?: 'left' | 'right'; /** * This value determines the size of the icon */ iconSize?: number; /** * This boolean value determines if the icon should be displayed inline with the children */ isInlineIcon?: boolean; } export declare const appendIconToContent: ({ children, icon: Icon, iconAndTextGap, iconOffset, iconPosition, iconSize, isInlineIcon, }: AppendedIconProps) => import("react/jsx-runtime").JSX.Element;