import { StatusColor, StatusType } from '@c-fo/vibes'; import type { MessageContentType } from '../../../types'; export declare const CustomNodeForm: ({ title, note, status, traits, children, }: { title?: string | undefined; note?: { contents: MessageContentType[]; } | undefined; status?: { statusColor: StatusColor; label: string; elipsis?: boolean | undefined; overflowWrap?: "normal" | "anywhere" | "break-word" | undefined; } | undefined; traits?: { type: StatusType; label: string; }[] | undefined; children: React.ReactNode; }) => JSX.Element;