import { RecordAddressElementProps } from './types'; /** * 詳細画面のフォームArea内にて住所入力フィールドを表示するコンポーネントです。 * * このコンポーネントは以下の機能を提供します: * * - `FormSegment` が編集モードか判定し、詳細表示と編集フォームを動的に切り替えます。 * - コンポーネント内の各フィールドをカスタマイズ可能 * - ラベルの表示 * - 各要素の補足情報の表示 * - フィールド、ラベル、値の補足情報を表示 */ export declare const RecordAddressElement: ({ value: valueProps, onChange: onChangeProps, error, onBlur, onFocus, slotProps, }: RecordAddressElementProps) => JSX.Element;