import { FC, PropsWithChildren } from "react"; export type NoteProps = PropsWithChildren<{ title?: string; color?: string; marginY?: number; marginBottom?: number; raw?: boolean; }>; export declare const noteColor = "#407FF8"; export declare const Note: FC;