import * as React from 'react'; import { UseFieldStateReturnValue } from "./useFieldState.js"; import { UseFieldInternalProps } from "./useField.types.js"; /** * Generate the props to pass to the container element of each section of the field. * @param {UseFieldSectionContainerPropsParameters} parameters The parameters of the hook. * @returns {UseFieldSectionContainerPropsReturnValue} The props to forward to the container element of each section of the field. */ export declare function useFieldSectionContainerProps(parameters: UseFieldSectionContainerPropsParameters): UseFieldSectionContainerPropsReturnValue; interface UseFieldSectionContainerPropsParameters { stateResponse: UseFieldStateReturnValue; internalPropsWithDefaults: UseFieldInternalProps; } type UseFieldSectionContainerPropsReturnValue = (sectionIndex: number) => React.HTMLAttributes; export {};