import type { FC } from 'react'; import type { Action, Actions } from '../../framework'; export declare const useActions: () => Actions; export declare const useAction: (action: string) => Action | undefined; export interface ActionProviderProps { value?: Actions; importantValue?: Actions; } export declare const ActionProvider: FC;