import { RecordCustomNodeElementProps } from './types'; /** * 詳細画面のフォームArea内にてカスタム要素を配置するコンポーネントです。 * * このコンポーネントは以下の機能を提供します: * * - `FormSegment` が編集モードか判定し、詳細表示と編集フォームを動的に切り替えます。 * - ラベルの表示 * - ラベルの補足情報の表示 * - ステータスチップの表示 * - ステータスアイコンの表示 * - カスタムノードの表示 */ export declare const RecordCustomNodeElement: ({ title, note, status, traits, children, }: RecordCustomNodeElementProps) => JSX.Element;