import type { PropsWithChildren, ReactElement } from 'react'; import type { onChangeHandler } from '@ui-schema/react/UIStore'; import type { UIStoreActions } from '@ui-schema/react/UIStoreActions'; export interface UIStoreActionsContext { onChange: onChangeHandler; } export declare function UIStoreActionsProvider({ children, onChange, }: PropsWithChildren>): ReactElement; export declare function useUIStoreActions(): UIStoreActionsContext;