import { StatusIconProps } from '../statusIcon'; export type Props = { status?: StatusIconProps['sentiment']; flagCode?: string; imgSrc?: string; icon?: React.ReactNode; type?: 'action' | 'reference' | 'notification' | 'online'; size?: 16 | 24; }; /** * Common pre-built badge variants. */ export default function BadgeAssets({ status, flagCode, imgSrc, icon, type, size, }: Props): import("react").JSX.Element | null; //# sourceMappingURL=BadgeAssets.d.ts.map