import * as React from "react"; type Props = { message: string; enabled: boolean; onClick: () => void; fixedPosition?: boolean; }; /** * A "heads-up display" (HUD) indicator that includes a short message (usually * used for linting errors). The indicator can be disabled. */ declare const HUD: ({ message, enabled, onClick, fixedPosition }: Props) => React.JSX.Element; export default HUD;