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