import React from "react"; import type { AlertColor as Color } from "@mui/material/Alert"; export interface NoteProps { severity?: Color; link?: string; } export interface NoteConfig extends NoteProps { text: string; location?: string; } export interface NotePanelProps { direction?: "row" | "column"; notes?: NoteConfig[]; } declare const Note: React.FC; declare const NotePanel: React.FC; export { Note, NotePanel }; //# sourceMappingURL=note.d.ts.map