UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

5 lines (4 loc) 288 B
import type { ReactNode } from 'react'; import type { SharedStateId } from '../../../../shared/helpers/useSharedState'; export type InfoOverlayContent = 'success' | 'error' | ReactNode | undefined; export default function setContent(id: SharedStateId, content: InfoOverlayContent): void;