import React, { FC } from 'react'; interface PillContentIconProps { /** Position of the icon. If you want an icon in the center, use PillContent and Icon. */ position?: 'left' | 'right'; /** Children to render. */ children: React.ReactNode; } export declare const PillContentIcon: FC; export {};