import type { Payload } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { FormGroupParams } from '../FormGroup.js'; /** Props for {@link FormGroupPayloadProvider}. */ export interface FormGroupPayloadProviderProps extends PropsWithChildren { params?: FormGroupParams; } /** * Provides a FormGroup to child components. */ export declare const FormGroupPayloadProvider: ({ children, params, ...props }: FormGroupPayloadProviderProps) => React.JSX.Element; //# sourceMappingURL=Provider.d.ts.map