import { SystemIconName } from '../../DataDisplays/SystemIcon'; export interface TextWithIconsProps { text: string; leadingIcon?: SystemIconName; trailingIcon?: SystemIconName; isTextSmall?: boolean; isGray?: boolean; isUnderline?: boolean; } export declare const TextWithIcons: ({ text, leadingIcon, trailingIcon, isTextSmall, isGray, isUnderline, }: TextWithIconsProps) => import("react/jsx-runtime").JSX.Element;