import React from "react"; export interface FieldGroupContextValue { /** * ローディング状態であることを示す値 */ loading?: boolean; /** * 読み取り専用であることを示す値 */ readOnly?: boolean; onLoaded?: () => void; } export declare const useFieldGroup: (argsValue: FieldGroupContextValue) => { loading: boolean | undefined; readOnly: boolean | undefined; }; export interface FieldGroupProps extends FieldGroupContextValue { children?: React.ReactNode; } /** * FieldGroupは、フォーム用のコンポーネントに対して、特定の属性をまとめて与えるための実態のないコンポーネントです。 * * 子孫のフォーム要素に同種の属性がついている場合は、子孫側の指定が優先されます。 */ export declare const FieldGroup: ({ children, loading, readOnly, }: FieldGroupProps) => import("@emotion/react/jsx-runtime").JSX.Element;