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;
